Compare commits
9
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f2428dfa8a | ||
|
|
f70340a2f5 | ||
|
|
d37ed7e07c | ||
|
|
d825ac06dd | ||
|
|
1c898f36d6 | ||
|
|
364c944ca6 | ||
|
|
aa062644c8 | ||
|
|
3d7cb4499f | ||
|
|
9d808302aa |
+25
-134
@@ -1,10 +1,8 @@
|
||||
name: CI Front and E2E
|
||||
name: CI Front
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
merge_group:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
@@ -29,15 +27,6 @@ jobs:
|
||||
packages/twenty-shared/**
|
||||
packages/twenty-sdk/**
|
||||
!packages/twenty-sdk/package.json
|
||||
changed-files-check-e2e:
|
||||
uses: ./.github/workflows/changed-files.yaml
|
||||
with:
|
||||
files: |
|
||||
packages/**
|
||||
!packages/create-twenty-app/package.json
|
||||
!packages/twenty-sdk/package.json
|
||||
playwright.config.ts
|
||||
.github/workflows/ci-front.yaml
|
||||
front-sb-build:
|
||||
needs: changed-files-check
|
||||
if: needs.changed-files-check.outputs.any_changed == 'true'
|
||||
@@ -62,6 +51,12 @@ jobs:
|
||||
run: npx nx reset:env twenty-front
|
||||
- name: Front / Build storybook
|
||||
run: npx nx storybook:build twenty-front
|
||||
- name: Upload storybook build
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: storybook-static
|
||||
path: packages/twenty-front/storybook-static
|
||||
retention-days: 1
|
||||
- name: Save storybook build cache
|
||||
uses: ./.github/actions/save-cache
|
||||
with:
|
||||
@@ -78,6 +73,7 @@ jobs:
|
||||
env:
|
||||
SHARD_COUNTER: 4
|
||||
REACT_APP_SERVER_BASE_URL: http://localhost:3000
|
||||
STORYBOOK_URL: http://localhost:6006
|
||||
steps:
|
||||
- name: Fetch local actions
|
||||
uses: actions/checkout@v4
|
||||
@@ -85,19 +81,33 @@ jobs:
|
||||
fetch-depth: 10
|
||||
- name: Install dependencies
|
||||
uses: ./.github/actions/yarn-install
|
||||
- name: Restore storybook build cache
|
||||
uses: ./.github/actions/restore-cache
|
||||
with:
|
||||
key: ${{ env.STORYBOOK_BUILD_CACHE_KEY_FOR_RESTORE_ACTION }}
|
||||
- name: Clean stale storybook vitest cache
|
||||
run: rm -rf packages/twenty-front/node_modules/.cache/storybook
|
||||
- name: Build dependencies
|
||||
run: |
|
||||
npx nx build twenty-shared
|
||||
npx nx build twenty-ui
|
||||
npx nx build twenty-sdk
|
||||
- name: Download storybook build
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: storybook-static
|
||||
path: packages/twenty-front/storybook-static
|
||||
- name: Install Playwright
|
||||
run: |
|
||||
cd packages/twenty-front
|
||||
npx playwright install
|
||||
- name: Front / Write .env
|
||||
run: npx nx reset:env twenty-front
|
||||
- name: Run storybook tests
|
||||
run: npx nx storybook:test twenty-front --configuration=${{ matrix.storybook_scope }} --shard=${{ matrix.shard }}/${{ env.SHARD_COUNTER }}
|
||||
- name: Serve storybook & run tests
|
||||
run: |
|
||||
npx http-server packages/twenty-front/storybook-static --port 6006 --silent &
|
||||
timeout 30 bash -c 'until curl -sf http://localhost:6006 > /dev/null 2>&1; do sleep 1; done'
|
||||
npx nx storybook:test twenty-front --configuration=${{ matrix.storybook_scope }} --shard=${{ matrix.shard }}/${{ env.SHARD_COUNTER }}
|
||||
# - name: Rename coverage file
|
||||
# run: |
|
||||
# if [ -f "packages/twenty-front/coverage/storybook/coverage-final.json" ]; then
|
||||
@@ -214,6 +224,7 @@ jobs:
|
||||
runs-on: ubuntu-latest-8-cores
|
||||
env:
|
||||
NODE_OPTIONS: "--max-old-space-size=10240"
|
||||
ANALYZE: "true"
|
||||
steps:
|
||||
- name: Cancel Previous Runs
|
||||
uses: styfle/cancel-workflow-action@0.11.0
|
||||
@@ -235,117 +246,6 @@ jobs:
|
||||
# name: frontend-build
|
||||
# path: packages/twenty-front/build
|
||||
# retention-days: 1
|
||||
e2e-test:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [changed-files-check-e2e, front-build]
|
||||
if: |
|
||||
always() &&
|
||||
needs.changed-files-check-e2e.outputs.any_changed == 'true' &&
|
||||
(needs.front-build.result == 'success' || needs.front-build.result == 'skipped') &&
|
||||
(github.event_name == 'push' || github.event_name == 'merge_group' || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'run-e2e')))
|
||||
timeout-minutes: 30
|
||||
env:
|
||||
NODE_OPTIONS: "--max-old-space-size=10240"
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
ALLOW_NOSSL: "true"
|
||||
SPILO_PROVIDER: "local"
|
||||
ports:
|
||||
- 5432:5432
|
||||
options: >-
|
||||
--health-cmd pg_isready
|
||||
--health-interval 10s
|
||||
--health-timeout 5s
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
ports:
|
||||
- 6379:6379
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 10
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: lts/*
|
||||
|
||||
- name: Check system resources
|
||||
run: |
|
||||
echo "Available memory:"
|
||||
free -h
|
||||
echo "Available disk space:"
|
||||
df -h
|
||||
echo "CPU info:"
|
||||
lscpu
|
||||
|
||||
- name: Install dependencies
|
||||
uses: ./.github/actions/yarn-install
|
||||
|
||||
- name: Build twenty-shared
|
||||
run: npx nx build twenty-shared
|
||||
|
||||
- name: Install Playwright Browsers
|
||||
run: npx nx setup twenty-e2e-testing
|
||||
|
||||
- name: Setup environment files
|
||||
run: |
|
||||
cp packages/twenty-front/.env.example packages/twenty-front/.env
|
||||
npx nx reset:env:e2e-testing-server twenty-server
|
||||
|
||||
# - name: Download frontend build artifact
|
||||
# if: needs.front-build.result == 'success'
|
||||
# uses: actions/download-artifact@v4
|
||||
# with:
|
||||
# name: frontend-build
|
||||
# path: packages/twenty-front/build
|
||||
|
||||
# - name: Build frontend (if not available from front-build)
|
||||
# if: needs.front-build.result == 'skipped'
|
||||
# run: NODE_ENV=production NODE_OPTIONS="--max-old-space-size=10240" npx nx build twenty-front
|
||||
|
||||
- name: Build frontend
|
||||
run: NODE_ENV=production NODE_OPTIONS="--max-old-space-size=10240" npx nx build twenty-front
|
||||
|
||||
- name: Build server
|
||||
run: npx nx build twenty-server
|
||||
|
||||
- name: Create and setup database
|
||||
run: |
|
||||
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "default";'
|
||||
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
|
||||
npx nx run twenty-server:database:reset
|
||||
|
||||
- name: Start server
|
||||
run: |
|
||||
npx nx start twenty-server &
|
||||
echo "Waiting for server to be ready..."
|
||||
timeout 60 bash -c 'until curl -s http://localhost:3000/health; do sleep 2; done'
|
||||
|
||||
- name: Start frontend
|
||||
run: |
|
||||
npm_config_yes=true npx serve -s packages/twenty-front/build -l 3001 &
|
||||
echo "Waiting for frontend to be ready..."
|
||||
timeout 60 bash -c 'until curl -s http://localhost:3001; do sleep 2; done'
|
||||
|
||||
- name: Start worker
|
||||
run: |
|
||||
npx nx run twenty-server:worker &
|
||||
echo "Worker started"
|
||||
|
||||
- name: Run Playwright tests
|
||||
run: npx nx test twenty-e2e-testing
|
||||
|
||||
# - uses: actions/upload-artifact@v4
|
||||
# if: always()
|
||||
# with:
|
||||
# name: playwright-report
|
||||
# path: packages/twenty-e2e-testing/run_results/
|
||||
# retention-days: 30
|
||||
|
||||
ci-front-status-check:
|
||||
if: always() && !cancelled()
|
||||
timeout-minutes: 5
|
||||
@@ -363,12 +263,3 @@ jobs:
|
||||
- name: Fail job if any needs failed
|
||||
if: contains(needs.*.result, 'failure')
|
||||
run: exit 1
|
||||
ci-e2e-status-check:
|
||||
if: always() && !cancelled()
|
||||
timeout-minutes: 5
|
||||
runs-on: ubuntu-latest
|
||||
needs: [changed-files-check-e2e, e2e-test]
|
||||
steps:
|
||||
- name: Fail job if any needs failed
|
||||
if: contains(needs.*.result, 'failure')
|
||||
run: exit 1
|
||||
|
||||
@@ -0,0 +1,118 @@
|
||||
name: CI Merge Queue
|
||||
|
||||
on:
|
||||
merge_group:
|
||||
|
||||
pull_request:
|
||||
types: [labeled, synchronize, opened, reopened]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
e2e-test:
|
||||
if: >
|
||||
github.event_name == 'merge_group' ||
|
||||
(github.event_name == 'pull_request' &&
|
||||
contains(github.event.pull_request.labels.*.name, 'run-merge-queue'))
|
||||
runs-on: ubuntu-latest-8-cores
|
||||
timeout-minutes: 30
|
||||
env:
|
||||
NODE_OPTIONS: "--max-old-space-size=10240"
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
ALLOW_NOSSL: "true"
|
||||
SPILO_PROVIDER: "local"
|
||||
ports:
|
||||
- 5432:5432
|
||||
options: >-
|
||||
--health-cmd pg_isready
|
||||
--health-interval 10s
|
||||
--health-timeout 5s
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
ports:
|
||||
- 6379:6379
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 10
|
||||
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: lts/*
|
||||
|
||||
- name: Install dependencies
|
||||
uses: ./.github/actions/yarn-install
|
||||
|
||||
- name: Build twenty-shared
|
||||
run: npx nx build twenty-shared
|
||||
|
||||
- name: Install Playwright Browsers
|
||||
run: npx nx setup twenty-e2e-testing
|
||||
|
||||
- name: Setup environment files
|
||||
run: |
|
||||
cp packages/twenty-front/.env.example packages/twenty-front/.env
|
||||
npx nx reset:env:e2e-testing-server twenty-server
|
||||
|
||||
- name: Build frontend
|
||||
run: NODE_ENV=production npx nx build twenty-front
|
||||
|
||||
- name: Build server
|
||||
run: npx nx build twenty-server
|
||||
|
||||
- name: Create and setup database
|
||||
run: |
|
||||
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "default";'
|
||||
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
|
||||
npx nx run twenty-server:database:reset
|
||||
|
||||
- name: Start server
|
||||
run: |
|
||||
npx nx start twenty-server &
|
||||
echo "Waiting for server to be ready..."
|
||||
timeout 60 bash -c 'until curl -s http://localhost:3000/health; do sleep 2; done'
|
||||
|
||||
- name: Start frontend
|
||||
run: |
|
||||
npm_config_yes=true npx serve -s packages/twenty-front/build -l 3001 &
|
||||
echo "Waiting for frontend to be ready..."
|
||||
timeout 60 bash -c 'until curl -s http://localhost:3001; do sleep 2; done'
|
||||
|
||||
- name: Start worker
|
||||
run: |
|
||||
npx nx run twenty-server:worker &
|
||||
echo "Worker started"
|
||||
|
||||
- name: Run Playwright tests
|
||||
run: npx nx test twenty-e2e-testing
|
||||
|
||||
- name: Upload Playwright results
|
||||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: playwright-results
|
||||
path: |
|
||||
packages/twenty-e2e-testing/run_results/
|
||||
packages/twenty-e2e-testing/test-results/
|
||||
retention-days: 7
|
||||
|
||||
ci-merge-queue-status-check:
|
||||
if: always() && !cancelled()
|
||||
timeout-minutes: 5
|
||||
runs-on: ubuntu-latest
|
||||
needs: [e2e-test]
|
||||
steps:
|
||||
- name: Fail job if any needs failed
|
||||
if: contains(needs.*.result, 'failure')
|
||||
run: exit 1
|
||||
@@ -1,8 +1,6 @@
|
||||
name: CI SDK
|
||||
|
||||
on:
|
||||
merge_group:
|
||||
|
||||
pull_request:
|
||||
|
||||
permissions:
|
||||
|
||||
@@ -3,8 +3,6 @@ name: CI Server
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
merge_group:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
@@ -13,7 +11,7 @@ concurrency:
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
||||
|
||||
env:
|
||||
SERVER_SETUP_CACHE_KEY: server-setup
|
||||
SERVER_BUILD_CACHE_KEY: server-build
|
||||
|
||||
jobs:
|
||||
changed-files-check:
|
||||
@@ -27,11 +25,59 @@ jobs:
|
||||
packages/twenty-front/src/generated-metadata/**
|
||||
packages/twenty-emails/**
|
||||
packages/twenty-shared/**
|
||||
server-setup:
|
||||
|
||||
server-build:
|
||||
needs: changed-files-check
|
||||
if: needs.changed-files-check.outputs.any_changed == 'true'
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest-8-cores
|
||||
steps:
|
||||
- name: Fetch custom Github Actions and base branch history
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 10
|
||||
- name: Install dependencies
|
||||
uses: ./.github/actions/yarn-install
|
||||
- name: Restore server build cache
|
||||
id: restore-server-build-cache
|
||||
uses: ./.github/actions/restore-cache
|
||||
with:
|
||||
key: ${{ env.SERVER_BUILD_CACHE_KEY }}
|
||||
- name: Build twenty-shared
|
||||
run: npx nx build twenty-shared
|
||||
- name: Server / Write .env
|
||||
run: npx nx reset:env twenty-server
|
||||
- name: Server / Build
|
||||
run: npx nx build twenty-server
|
||||
- name: Save server build cache
|
||||
uses: ./.github/actions/save-cache
|
||||
with:
|
||||
key: ${{ steps.restore-server-build-cache.outputs.cache-primary-key }}
|
||||
|
||||
server-lint-typecheck:
|
||||
needs: changed-files-check
|
||||
if: needs.changed-files-check.outputs.any_changed == 'true'
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest-8-cores
|
||||
steps:
|
||||
- name: Fetch custom Github Actions and base branch history
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 10
|
||||
- name: Install dependencies
|
||||
uses: ./.github/actions/yarn-install
|
||||
- name: Build twenty-shared
|
||||
run: npx nx build twenty-shared
|
||||
- name: Server / Run lint & typecheck
|
||||
uses: ./.github/actions/nx-affected
|
||||
with:
|
||||
tag: scope:backend
|
||||
tasks: lint,typecheck
|
||||
|
||||
server-validation:
|
||||
needs: server-build
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest-8-cores
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
@@ -58,18 +104,12 @@ jobs:
|
||||
fetch-depth: 10
|
||||
- name: Install dependencies
|
||||
uses: ./.github/actions/yarn-install
|
||||
- name: Restore server setup
|
||||
id: restore-server-setup-cache
|
||||
- name: Restore server build cache
|
||||
uses: ./.github/actions/restore-cache
|
||||
with:
|
||||
key: ${{ env.SERVER_SETUP_CACHE_KEY }}
|
||||
key: ${{ env.SERVER_BUILD_CACHE_KEY }}
|
||||
- name: Build twenty-shared
|
||||
run: npx nx build twenty-shared
|
||||
- name: Server / Run lint & typecheck
|
||||
uses: ./.github/actions/nx-affected
|
||||
with:
|
||||
tag: scope:backend
|
||||
tasks: lint,typecheck
|
||||
- name: Server / Write .env
|
||||
run: npx nx reset:env twenty-server
|
||||
- name: Server / Build
|
||||
@@ -84,10 +124,8 @@ jobs:
|
||||
run: |
|
||||
timeout 30s npx nx run twenty-server:worker || exit_code=$?
|
||||
if [ $exit_code -eq 124 ]; then
|
||||
# If timeout was reached (exit code 124), consider it a success
|
||||
exit 0
|
||||
elif [ $exit_code -ne 0 ]; then
|
||||
# If worker failed for other reasons, fail the build
|
||||
exit $exit_code
|
||||
fi
|
||||
- name: Server / Start
|
||||
@@ -120,11 +158,9 @@ jobs:
|
||||
fi
|
||||
- name: GraphQL / Check for Pending Generation
|
||||
run: |
|
||||
# Run GraphQL generation commands
|
||||
npx nx run twenty-front:graphql:generate
|
||||
npx nx run twenty-front:graphql:generate --configuration=metadata
|
||||
|
||||
# Check if GraphQL generated files were modified
|
||||
if ! git diff --quiet -- packages/twenty-front/src/generated packages/twenty-front/src/generated-metadata; then
|
||||
echo "::error::GraphQL schema changes detected. Please run 'npx nx run twenty-front:graphql:generate' and 'npx nx run twenty-front:graphql:generate --configuration=metadata' and commit the changes."
|
||||
echo ""
|
||||
@@ -137,14 +173,11 @@ jobs:
|
||||
echo ""
|
||||
exit 1
|
||||
fi
|
||||
- name: Save server setup
|
||||
uses: ./.github/actions/save-cache
|
||||
with:
|
||||
key: ${{ steps.restore-server-setup-cache.outputs.cache-primary-key }}
|
||||
|
||||
server-test:
|
||||
needs: server-build
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest-8-cores
|
||||
needs: server-setup
|
||||
steps:
|
||||
- name: Fetch custom Github Actions and base branch history
|
||||
uses: actions/checkout@v4
|
||||
@@ -152,10 +185,12 @@ jobs:
|
||||
fetch-depth: 10
|
||||
- name: Install dependencies
|
||||
uses: ./.github/actions/yarn-install
|
||||
- name: Restore server setup
|
||||
- name: Restore server build cache
|
||||
uses: ./.github/actions/restore-cache
|
||||
with:
|
||||
key: ${{ env.SERVER_SETUP_CACHE_KEY }}
|
||||
key: ${{ env.SERVER_BUILD_CACHE_KEY }}
|
||||
- name: Build twenty-shared
|
||||
run: npx nx build twenty-shared
|
||||
- name: Server / Run Tests
|
||||
uses: ./.github/actions/nx-affected
|
||||
with:
|
||||
@@ -165,11 +200,11 @@ jobs:
|
||||
server-integration-test:
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest-8-cores
|
||||
needs: server-setup
|
||||
needs: server-build
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
shard: [1, 2, 3, 4, 5, 6, 7, 8]
|
||||
shard: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
@@ -207,7 +242,7 @@ jobs:
|
||||
ANALYTICS_ENABLED: true
|
||||
CLICKHOUSE_URL: "http://default:clickhousePassword@localhost:8123/twenty"
|
||||
CLICKHOUSE_PASSWORD: clickhousePassword
|
||||
SHARD_COUNTER: 8
|
||||
SHARD_COUNTER: 10
|
||||
steps:
|
||||
- name: Fetch custom Github Actions and base branch history
|
||||
uses: actions/checkout@v4
|
||||
@@ -223,10 +258,10 @@ jobs:
|
||||
echo "BILLING_STRIPE_BASE_PLAN_PRODUCT_ID=test-base-plan-product-id" >> .env.test
|
||||
echo "BILLING_STRIPE_WEBHOOK_SECRET=test-webhook-secret" >> .env.test
|
||||
echo "BILLING_PLAN_REQUIRED_LINK=http://localhost:3001/stripe-redirection" >> .env.test
|
||||
- name: Restore server setup
|
||||
- name: Restore server build cache
|
||||
uses: ./.github/actions/restore-cache
|
||||
with:
|
||||
key: ${{ env.SERVER_SETUP_CACHE_KEY }}
|
||||
key: ${{ env.SERVER_BUILD_CACHE_KEY }}
|
||||
- name: Server / Build
|
||||
run: npx nx build twenty-server
|
||||
- name: Build dependencies
|
||||
@@ -247,11 +282,20 @@ jobs:
|
||||
tasks: 'test:integration'
|
||||
configuration: 'with-db-reset'
|
||||
args: --shard=${{ matrix.shard }}/${{ env.SHARD_COUNTER }}
|
||||
|
||||
ci-server-status-check:
|
||||
if: always() && !cancelled()
|
||||
timeout-minutes: 5
|
||||
runs-on: ubuntu-latest
|
||||
needs: [changed-files-check, server-setup, server-test, server-integration-test]
|
||||
needs:
|
||||
[
|
||||
changed-files-check,
|
||||
server-build,
|
||||
server-lint-typecheck,
|
||||
server-validation,
|
||||
server-test,
|
||||
server-integration-test,
|
||||
]
|
||||
steps:
|
||||
- name: Fail job if any needs failed
|
||||
if: contains(needs.*.result, 'failure')
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
name: CI Shared
|
||||
|
||||
on:
|
||||
merge_group:
|
||||
|
||||
pull_request:
|
||||
|
||||
permissions:
|
||||
|
||||
@@ -4,8 +4,6 @@ permissions:
|
||||
contents: read
|
||||
|
||||
on:
|
||||
merge_group:
|
||||
|
||||
pull_request:
|
||||
|
||||
concurrency:
|
||||
|
||||
@@ -4,8 +4,6 @@ permissions:
|
||||
contents: read
|
||||
|
||||
on:
|
||||
merge_group:
|
||||
|
||||
pull_request:
|
||||
|
||||
concurrency:
|
||||
|
||||
@@ -3,8 +3,6 @@ name: CI Zapier
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
merge_group:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
|
||||
@@ -1,618 +0,0 @@
|
||||
[
|
||||
{
|
||||
"timestamp": 1772781738.142052,
|
||||
"start_timestamp": 1772781738.142,
|
||||
"exclusive_time": 0.052,
|
||||
"op": "middleware.express",
|
||||
"span_id": "fec9396f5609fd20",
|
||||
"parent_span_id": "dd1853cf21e97142",
|
||||
"trace_id": "802cc6b04825cf9c2ffed7cfb10633ad",
|
||||
"status": "ok",
|
||||
"description": "<anonymous>",
|
||||
"origin": "auto.http.otel.express",
|
||||
"data": {
|
||||
"express.name": "<anonymous>",
|
||||
"express.type": "middleware",
|
||||
"sentry.op": "middleware.express",
|
||||
"sentry.origin": "auto.http.otel.express"
|
||||
},
|
||||
"sentry_tags": {
|
||||
"release": "v1.18.1",
|
||||
"user": "ip:::ffff:10.101.174.243",
|
||||
"user.ip": "::ffff:10.101.174.243",
|
||||
"environment": "prod",
|
||||
"transaction": "POST /metadata",
|
||||
"transaction.method": "POST",
|
||||
"transaction.op": "http.server",
|
||||
"browser.name": "axios",
|
||||
"sdk.name": "sentry.javascript.node",
|
||||
"sdk.version": "10.27.0",
|
||||
"platform": "node",
|
||||
"os.name": "Alpine Linux",
|
||||
"category": "middleware",
|
||||
"op": "middleware.express",
|
||||
"status": "ok",
|
||||
"trace.status": "ok",
|
||||
"name": "middleware.express"
|
||||
},
|
||||
"hash": "1985576209a18698"
|
||||
},
|
||||
{
|
||||
"timestamp": 1772781738.142133,
|
||||
"start_timestamp": 1772781738.142,
|
||||
"exclusive_time": 0.133,
|
||||
"op": "middleware.express",
|
||||
"span_id": "eef5ff070f6d2acf",
|
||||
"parent_span_id": "dd1853cf21e97142",
|
||||
"trace_id": "802cc6b04825cf9c2ffed7cfb10633ad",
|
||||
"status": "ok",
|
||||
"description": "session",
|
||||
"origin": "auto.http.otel.express",
|
||||
"data": {
|
||||
"express.name": "session",
|
||||
"express.type": "middleware",
|
||||
"sentry.op": "middleware.express",
|
||||
"sentry.origin": "auto.http.otel.express"
|
||||
},
|
||||
"sentry_tags": {
|
||||
"release": "v1.18.1",
|
||||
"user": "ip:::ffff:10.101.174.243",
|
||||
"user.ip": "::ffff:10.101.174.243",
|
||||
"environment": "prod",
|
||||
"transaction": "POST /metadata",
|
||||
"transaction.method": "POST",
|
||||
"transaction.op": "http.server",
|
||||
"browser.name": "axios",
|
||||
"sdk.name": "sentry.javascript.node",
|
||||
"sdk.version": "10.27.0",
|
||||
"platform": "node",
|
||||
"os.name": "Alpine Linux",
|
||||
"category": "middleware",
|
||||
"op": "middleware.express",
|
||||
"status": "ok",
|
||||
"trace.status": "ok",
|
||||
"name": "middleware.express"
|
||||
},
|
||||
"hash": "21d6f40cfb511982"
|
||||
},
|
||||
{
|
||||
"timestamp": 1772781738.142262,
|
||||
"start_timestamp": 1772781738.142,
|
||||
"exclusive_time": 0.262,
|
||||
"op": "middleware.express",
|
||||
"span_id": "075f41509c84e088",
|
||||
"parent_span_id": "dd1853cf21e97142",
|
||||
"trace_id": "802cc6b04825cf9c2ffed7cfb10633ad",
|
||||
"status": "ok",
|
||||
"description": "jsonParser",
|
||||
"origin": "auto.http.otel.express",
|
||||
"data": {
|
||||
"express.name": "jsonParser",
|
||||
"express.type": "middleware",
|
||||
"sentry.op": "middleware.express",
|
||||
"sentry.origin": "auto.http.otel.express"
|
||||
},
|
||||
"sentry_tags": {
|
||||
"release": "v1.18.1",
|
||||
"user": "ip:::ffff:10.101.174.243",
|
||||
"user.ip": "::ffff:10.101.174.243",
|
||||
"environment": "prod",
|
||||
"transaction": "POST /metadata",
|
||||
"transaction.method": "POST",
|
||||
"transaction.op": "http.server",
|
||||
"browser.name": "axios",
|
||||
"sdk.name": "sentry.javascript.node",
|
||||
"sdk.version": "10.27.0",
|
||||
"platform": "node",
|
||||
"os.name": "Alpine Linux",
|
||||
"category": "middleware",
|
||||
"op": "middleware.express",
|
||||
"status": "ok",
|
||||
"trace.status": "ok",
|
||||
"name": "middleware.express"
|
||||
},
|
||||
"hash": "c81e963dad9ebc6c"
|
||||
},
|
||||
{
|
||||
"timestamp": 1772781738.143031,
|
||||
"start_timestamp": 1772781738.143,
|
||||
"exclusive_time": 0.031,
|
||||
"op": "middleware.express",
|
||||
"span_id": "fedd5f8bffce37d1",
|
||||
"parent_span_id": "dd1853cf21e97142",
|
||||
"trace_id": "802cc6b04825cf9c2ffed7cfb10633ad",
|
||||
"status": "ok",
|
||||
"description": "urlencodedParser",
|
||||
"origin": "auto.http.otel.express",
|
||||
"data": {
|
||||
"express.name": "urlencodedParser",
|
||||
"express.type": "middleware",
|
||||
"sentry.op": "middleware.express",
|
||||
"sentry.origin": "auto.http.otel.express"
|
||||
},
|
||||
"sentry_tags": {
|
||||
"release": "v1.18.1",
|
||||
"user": "ip:::ffff:10.101.174.243",
|
||||
"user.ip": "::ffff:10.101.174.243",
|
||||
"environment": "prod",
|
||||
"transaction": "POST /metadata",
|
||||
"transaction.method": "POST",
|
||||
"transaction.op": "http.server",
|
||||
"browser.name": "axios",
|
||||
"sdk.name": "sentry.javascript.node",
|
||||
"sdk.version": "10.27.0",
|
||||
"platform": "node",
|
||||
"os.name": "Alpine Linux",
|
||||
"category": "middleware",
|
||||
"op": "middleware.express",
|
||||
"status": "ok",
|
||||
"trace.status": "ok",
|
||||
"name": "middleware.express"
|
||||
},
|
||||
"hash": "05184d48507d1fda"
|
||||
},
|
||||
{
|
||||
"timestamp": 1772781738.143037,
|
||||
"start_timestamp": 1772781738.143,
|
||||
"exclusive_time": 0.037,
|
||||
"op": "middleware.express",
|
||||
"span_id": "4ce56c63d4ca8f6f",
|
||||
"parent_span_id": "dd1853cf21e97142",
|
||||
"trace_id": "802cc6b04825cf9c2ffed7cfb10633ad",
|
||||
"status": "ok",
|
||||
"description": "graphqlUploadExpressMiddleware",
|
||||
"origin": "auto.http.otel.express",
|
||||
"data": {
|
||||
"express.name": "graphqlUploadExpressMiddleware",
|
||||
"express.type": "middleware",
|
||||
"http.route": "/metadata",
|
||||
"sentry.op": "middleware.express",
|
||||
"sentry.origin": "auto.http.otel.express"
|
||||
},
|
||||
"sentry_tags": {
|
||||
"release": "v1.18.1",
|
||||
"user": "ip:::ffff:10.101.174.243",
|
||||
"user.ip": "::ffff:10.101.174.243",
|
||||
"environment": "prod",
|
||||
"transaction": "POST /metadata",
|
||||
"transaction.method": "POST",
|
||||
"transaction.op": "http.server",
|
||||
"browser.name": "axios",
|
||||
"sdk.name": "sentry.javascript.node",
|
||||
"sdk.version": "10.27.0",
|
||||
"platform": "node",
|
||||
"os.name": "Alpine Linux",
|
||||
"category": "middleware",
|
||||
"op": "middleware.express",
|
||||
"status": "ok",
|
||||
"trace.status": "ok",
|
||||
"name": "middleware.express"
|
||||
},
|
||||
"hash": "0139f47bcfef11a0"
|
||||
},
|
||||
{
|
||||
"timestamp": 1772781738.143035,
|
||||
"start_timestamp": 1772781738.143,
|
||||
"exclusive_time": 0.035,
|
||||
"op": "middleware.express",
|
||||
"span_id": "4afe30f8e48771bc",
|
||||
"parent_span_id": "dd1853cf21e97142",
|
||||
"trace_id": "802cc6b04825cf9c2ffed7cfb10633ad",
|
||||
"status": "ok",
|
||||
"description": "corsMiddleware",
|
||||
"origin": "auto.http.otel.express",
|
||||
"data": {
|
||||
"express.name": "corsMiddleware",
|
||||
"express.type": "middleware",
|
||||
"sentry.op": "middleware.express",
|
||||
"sentry.origin": "auto.http.otel.express"
|
||||
},
|
||||
"sentry_tags": {
|
||||
"release": "v1.18.1",
|
||||
"user": "ip:::ffff:10.101.174.243",
|
||||
"user.ip": "::ffff:10.101.174.243",
|
||||
"environment": "prod",
|
||||
"transaction": "POST /metadata",
|
||||
"transaction.method": "POST",
|
||||
"transaction.op": "http.server",
|
||||
"browser.name": "axios",
|
||||
"sdk.name": "sentry.javascript.node",
|
||||
"sdk.version": "10.27.0",
|
||||
"platform": "node",
|
||||
"os.name": "Alpine Linux",
|
||||
"category": "middleware",
|
||||
"op": "middleware.express",
|
||||
"status": "ok",
|
||||
"trace.status": "ok",
|
||||
"name": "middleware.express"
|
||||
},
|
||||
"hash": "e6088cf8b370ed60"
|
||||
},
|
||||
{
|
||||
"timestamp": 1772781738.143018,
|
||||
"start_timestamp": 1772781738.143,
|
||||
"exclusive_time": 0.018,
|
||||
"op": "middleware.express",
|
||||
"span_id": "b6f6f50a01f56a7a",
|
||||
"parent_span_id": "dd1853cf21e97142",
|
||||
"trace_id": "802cc6b04825cf9c2ffed7cfb10633ad",
|
||||
"status": "ok",
|
||||
"description": "jsonParser",
|
||||
"origin": "auto.http.otel.express",
|
||||
"data": {
|
||||
"express.name": "jsonParser",
|
||||
"express.type": "middleware",
|
||||
"sentry.op": "middleware.express",
|
||||
"sentry.origin": "auto.http.otel.express"
|
||||
},
|
||||
"sentry_tags": {
|
||||
"release": "v1.18.1",
|
||||
"user": "ip:::ffff:10.101.174.243",
|
||||
"user.ip": "::ffff:10.101.174.243",
|
||||
"environment": "prod",
|
||||
"transaction": "POST /metadata",
|
||||
"transaction.method": "POST",
|
||||
"transaction.op": "http.server",
|
||||
"browser.name": "axios",
|
||||
"sdk.name": "sentry.javascript.node",
|
||||
"sdk.version": "10.27.0",
|
||||
"platform": "node",
|
||||
"os.name": "Alpine Linux",
|
||||
"category": "middleware",
|
||||
"op": "middleware.express",
|
||||
"status": "ok",
|
||||
"trace.status": "ok",
|
||||
"name": "middleware.express"
|
||||
},
|
||||
"hash": "c81e963dad9ebc6c"
|
||||
},
|
||||
{
|
||||
"timestamp": 1772781738.143016,
|
||||
"start_timestamp": 1772781738.143,
|
||||
"exclusive_time": 0.016,
|
||||
"op": "middleware.express",
|
||||
"span_id": "b04d827dd8698ca1",
|
||||
"parent_span_id": "dd1853cf21e97142",
|
||||
"trace_id": "802cc6b04825cf9c2ffed7cfb10633ad",
|
||||
"status": "ok",
|
||||
"description": "urlencodedParser",
|
||||
"origin": "auto.http.otel.express",
|
||||
"data": {
|
||||
"express.name": "urlencodedParser",
|
||||
"express.type": "middleware",
|
||||
"sentry.op": "middleware.express",
|
||||
"sentry.origin": "auto.http.otel.express"
|
||||
},
|
||||
"sentry_tags": {
|
||||
"release": "v1.18.1",
|
||||
"user": "ip:::ffff:10.101.174.243",
|
||||
"user.ip": "::ffff:10.101.174.243",
|
||||
"environment": "prod",
|
||||
"transaction": "POST /metadata",
|
||||
"transaction.method": "POST",
|
||||
"transaction.op": "http.server",
|
||||
"browser.name": "axios",
|
||||
"sdk.name": "sentry.javascript.node",
|
||||
"sdk.version": "10.27.0",
|
||||
"platform": "node",
|
||||
"os.name": "Alpine Linux",
|
||||
"category": "middleware",
|
||||
"op": "middleware.express",
|
||||
"status": "ok",
|
||||
"trace.status": "ok",
|
||||
"name": "middleware.express"
|
||||
},
|
||||
"hash": "05184d48507d1fda"
|
||||
},
|
||||
{
|
||||
"timestamp": 1772781738.148397,
|
||||
"start_timestamp": 1772781738.143,
|
||||
"exclusive_time": 2.535,
|
||||
"op": "request_handler.express",
|
||||
"span_id": "fb69f0d7fdf0b807",
|
||||
"parent_span_id": "dd1853cf21e97142",
|
||||
"trace_id": "802cc6b04825cf9c2ffed7cfb10633ad",
|
||||
"status": "ok",
|
||||
"description": "/metadata",
|
||||
"origin": "auto.http.otel.express",
|
||||
"data": {
|
||||
"express.name": "/metadata",
|
||||
"express.type": "request_handler",
|
||||
"http.route": "/metadata",
|
||||
"sentry.op": "request_handler.express",
|
||||
"sentry.origin": "auto.http.otel.express"
|
||||
},
|
||||
"sentry_tags": {
|
||||
"release": "v1.18.1",
|
||||
"user": "ip:::ffff:10.101.174.243",
|
||||
"user.ip": "::ffff:10.101.174.243",
|
||||
"environment": "prod",
|
||||
"transaction": "POST /metadata",
|
||||
"transaction.method": "POST",
|
||||
"transaction.op": "http.server",
|
||||
"browser.name": "axios",
|
||||
"sdk.name": "sentry.javascript.node",
|
||||
"sdk.version": "10.27.0",
|
||||
"platform": "node",
|
||||
"os.name": "Alpine Linux",
|
||||
"op": "request_handler.express",
|
||||
"status": "ok",
|
||||
"trace.status": "ok",
|
||||
"name": "request_handler.express"
|
||||
},
|
||||
"hash": "f0fa4b47d47d39bf"
|
||||
},
|
||||
{
|
||||
"timestamp": 1772781738.144984,
|
||||
"start_timestamp": 1772781738.144,
|
||||
"exclusive_time": 0.984,
|
||||
"op": "db",
|
||||
"span_id": "b35d30ad99620864",
|
||||
"parent_span_id": "fb69f0d7fdf0b807",
|
||||
"trace_id": "802cc6b04825cf9c2ffed7cfb10633ad",
|
||||
"status": "ok",
|
||||
"description": "SELECT \"WorkspaceEntity\".\"id\" AS \"WorkspaceEntity_id\", \"WorkspaceEntity\".\"displayName\" AS \"WorkspaceEntity_displayName\", \"WorkspaceEntity\".\"logo\" AS \"WorkspaceEntity_logo\", \"WorkspaceEntity\".\"logoFileId\" AS \"WorkspaceEntity_logoFileId\", \"WorkspaceEntity\".\"inviteHash\" AS \"WorkspaceEntity_inviteHash\", \"WorkspaceEntity\".\"deletedAt\" AS \"WorkspaceEntity_deletedAt\", \"WorkspaceEntity\".\"createdAt\" AS \"WorkspaceEntity_createdAt\", \"WorkspaceEntity\".\"updatedAt\" AS \"WorkspaceEntity_updatedAt\", \"WorkspaceEntity\".\"allowImpersonation\" AS \"WorkspaceEntity_allowImpersonation\", \"WorkspaceEntity\".\"isPublicInviteLinkEnabled\" AS \"WorkspaceEntity_isPublicInviteLinkEnabled\", \"WorkspaceEntity\".\"trashRetentionDays\" AS \"WorkspaceEntity_trashRetentionDays\", \"WorkspaceEntity\".\"eventLogRetentionDays\" AS \"WorkspaceEntity_eventLogRetentionDays\", \"WorkspaceEntity\".\"activationStatus\" AS \"WorkspaceEntity_activationStatus\", \"WorkspaceEntity\".\"suspendedAt\" AS \"WorkspaceEntity_suspendedAt\", \"WorkspaceEntity\".\"metadataVersion\" AS \"WorkspaceEntity_metadataVersion\", \"WorkspaceEntity\".\"databaseUrl\" AS \"WorkspaceEntity_databaseUrl\", \"WorkspaceEntity\".\"databaseSchema\" AS \"WorkspaceEntity_databaseSchema\", \"WorkspaceEntity\".\"subdomain\" AS \"WorkspaceEntity_subdomain\", \"WorkspaceEntity\".\"customDomain\" AS \"WorkspaceEntity_customDomain\", \"WorkspaceEntity\".\"isGoogleAuthEnabled\" AS \"WorkspaceEntity_isGoogleAuthEnabled\", \"WorkspaceEntity\".\"isGoogleAuthBypassEnabled\" AS \"WorkspaceEntity_isGoogleAuthBypassEnabled\", \"WorkspaceEntity\".\"isTwoFactorAuthenticationEnforced\" AS \"WorkspaceEntity_isTwoFactorAuthenticationEnforced\", \"WorkspaceEntity\".\"isPasswordAuthEnabled\" AS \"WorkspaceEntity_isPasswordAuthEnabled\", \"WorkspaceEntity\".\"isPasswordAuthBypassEnabled\" AS \"WorkspaceEntity_isPasswordAuthBypassEnabled\", \"WorkspaceEntity\".\"isMicrosoftAuthEnabled\" AS \"WorkspaceEntity_isMicrosoftAuthEnabled\", \"WorkspaceEntity\".\"isMicrosoftAuthBypassEnabled\" AS \"WorkspaceEntity_isMicrosoftAuthBypassEnabled\", \"WorkspaceEntity\".\"isCustomDomainEnabled\" AS \"WorkspaceEntity_isCustomDomainEnabled\", \"WorkspaceEntity\".\"editableProfileFields\" AS \"WorkspaceEntity_editableProfileFields\", \"WorkspaceEntity\".\"defaultRoleId\" AS \"WorkspaceEntity_defaultRoleId\", \"WorkspaceEntity\".\"version\" AS \"WorkspaceEntity_version\", \"WorkspaceEntity\".\"fastModel\" AS \"WorkspaceEntity_fastModel\", \"WorkspaceEntity\".\"smartModel\" AS \"WorkspaceEntity_smartModel\", \"WorkspaceEntity\".\"aiAdditionalInstructions\" AS \"WorkspaceEntity_aiAdditionalInstructions\", \"WorkspaceEntity\".\"workspaceCustomApplicationId\" AS \"WorkspaceEntity_workspaceCustomApplicationId\", \"WorkspaceEntity\".\"routerModel\" AS \"WorkspaceEntity_routerModel\" FROM \"core\".\"workspace\" \"WorkspaceEntity\" WHERE ( ((\"WorkspaceEntity\".\"id\" = $1)) ) AND ( \"WorkspaceEntity\".\"deletedAt\" IS NULL ) LIMIT 1",
|
||||
"origin": "auto.db.otel.postgres",
|
||||
"data": {
|
||||
"db.system": "postgresql",
|
||||
"db.connection_string": "postgresql://rds-prod-eu.cluster-cr4iu4oi4q7b.eu-central-1.rds.amazonaws.com:5432/default",
|
||||
"db.name": "default",
|
||||
"db.statement": "[Filtered]",
|
||||
"db.user": "postgres",
|
||||
"net.peer.name": "rds-prod-eu.cluster-cr4iu4oi4q7b.eu-central-1.rds.amazonaws.com",
|
||||
"net.peer.port": 5432,
|
||||
"otel.kind": "CLIENT",
|
||||
"sentry.op": "db",
|
||||
"sentry.origin": "auto.db.otel.postgres"
|
||||
},
|
||||
"sentry_tags": {
|
||||
"release": "v1.18.1",
|
||||
"user": "ip:::ffff:10.101.174.243",
|
||||
"user.ip": "::ffff:10.101.174.243",
|
||||
"environment": "prod",
|
||||
"transaction": "POST /metadata",
|
||||
"transaction.method": "POST",
|
||||
"transaction.op": "http.server",
|
||||
"browser.name": "axios",
|
||||
"sdk.name": "sentry.javascript.node",
|
||||
"sdk.version": "10.27.0",
|
||||
"platform": "node",
|
||||
"os.name": "Alpine Linux",
|
||||
"action": "SELECT",
|
||||
"category": "db",
|
||||
"description": "SELECT .. FROM workspace WorkspaceEntity WHERE (id = %s) AND (deletedAt IS NULL) LIMIT %s",
|
||||
"domain": ",workspace,",
|
||||
"group": "7ae6cffe655e522d",
|
||||
"op": "db",
|
||||
"status": "ok",
|
||||
"system": "postgresql",
|
||||
"trace.status": "ok",
|
||||
"name": "Database operation"
|
||||
},
|
||||
"hash": "10003206e3a65547"
|
||||
},
|
||||
{
|
||||
"timestamp": 1772781738.146878,
|
||||
"start_timestamp": 1772781738.145,
|
||||
"exclusive_time": 1.878,
|
||||
"op": "db",
|
||||
"span_id": "c68a47d95e1ff803",
|
||||
"parent_span_id": "fb69f0d7fdf0b807",
|
||||
"trace_id": "802cc6b04825cf9c2ffed7cfb10633ad",
|
||||
"status": "ok",
|
||||
"description": "SELECT ApiKeyEntity.workspaceId AS ApiKeyEntity_workspaceId, ApiKeyEntity.id AS ApiKeyEntity_id,\n ApiKeyEntity.name AS ApiKeyEntity_name, ApiKeyEntity.expiresAt AS ApiKeyEntity_expiresAt,\n ApiKeyEntity.revokedAt AS ApiKeyEntity_revokedAt, ApiKeyEntity.createdAt AS ApiKeyEntity_createdAt,\n ApiKeyEntity.updatedAt AS ApiKeyEntity_updatedAt\nFROM core.apiKey ApiKeyEntity\nWHERE ((ApiKeyEntity.id = $1)\n AND (ApiKeyEntity.workspaceId = $2))\nLIMIT 1",
|
||||
"origin": "auto.db.otel.postgres",
|
||||
"data": {
|
||||
"db.system": "postgresql",
|
||||
"db.connection_string": "postgresql://rds-prod-eu.cluster-cr4iu4oi4q7b.eu-central-1.rds.amazonaws.com:5432/default",
|
||||
"db.name": "default",
|
||||
"db.statement": "[Filtered]",
|
||||
"db.user": "postgres",
|
||||
"net.peer.name": "rds-prod-eu.cluster-cr4iu4oi4q7b.eu-central-1.rds.amazonaws.com",
|
||||
"net.peer.port": 5432,
|
||||
"otel.kind": "CLIENT",
|
||||
"sentry.op": "db",
|
||||
"sentry.origin": "auto.db.otel.postgres"
|
||||
},
|
||||
"sentry_tags": {
|
||||
"release": "v1.18.1",
|
||||
"user": "ip:::ffff:10.101.174.243",
|
||||
"user.ip": "::ffff:10.101.174.243",
|
||||
"environment": "prod",
|
||||
"transaction": "POST /metadata",
|
||||
"transaction.method": "POST",
|
||||
"transaction.op": "http.server",
|
||||
"browser.name": "axios",
|
||||
"sdk.name": "sentry.javascript.node",
|
||||
"sdk.version": "10.27.0",
|
||||
"platform": "node",
|
||||
"os.name": "Alpine Linux",
|
||||
"action": "SELECT",
|
||||
"category": "db",
|
||||
"description": "SELECT .. FROM apiKey ApiKeyEntity WHERE ((id = %s) AND (workspaceId = %s)) LIMIT %s",
|
||||
"domain": ",apikey,",
|
||||
"group": "42f44e9dae659539",
|
||||
"op": "db",
|
||||
"status": "ok",
|
||||
"system": "postgresql",
|
||||
"trace.status": "ok",
|
||||
"name": "Database operation"
|
||||
},
|
||||
"hash": "da0f4085d4b70672"
|
||||
},
|
||||
{
|
||||
"timestamp": 1772781738.148054,
|
||||
"start_timestamp": 1772781738.148,
|
||||
"exclusive_time": 0.054,
|
||||
"op": "request_handler.express",
|
||||
"span_id": "e69dc56d5bdfbda3",
|
||||
"parent_span_id": "dd1853cf21e97142",
|
||||
"trace_id": "802cc6b04825cf9c2ffed7cfb10633ad",
|
||||
"status": "ok",
|
||||
"description": "/metadata",
|
||||
"origin": "auto.http.otel.express",
|
||||
"data": {
|
||||
"express.name": "/metadata",
|
||||
"express.type": "request_handler",
|
||||
"http.route": "/metadata",
|
||||
"sentry.op": "request_handler.express",
|
||||
"sentry.origin": "auto.http.otel.express"
|
||||
},
|
||||
"sentry_tags": {
|
||||
"release": "v1.18.1",
|
||||
"user": "ip:::ffff:10.101.174.243",
|
||||
"user.ip": "::ffff:10.101.174.243",
|
||||
"environment": "prod",
|
||||
"transaction": "POST /metadata",
|
||||
"transaction.method": "POST",
|
||||
"transaction.op": "http.server",
|
||||
"browser.name": "axios",
|
||||
"sdk.name": "sentry.javascript.node",
|
||||
"sdk.version": "10.27.0",
|
||||
"platform": "node",
|
||||
"os.name": "Alpine Linux",
|
||||
"op": "request_handler.express",
|
||||
"status": "ok",
|
||||
"trace.status": "ok",
|
||||
"name": "request_handler.express"
|
||||
},
|
||||
"hash": "f0fa4b47d47d39bf"
|
||||
},
|
||||
{
|
||||
"timestamp": 1772781741.809261,
|
||||
"start_timestamp": 1772781738.148,
|
||||
"exclusive_time": 2285.148,
|
||||
"op": "middleware.express",
|
||||
"span_id": "775cc52065a01e79",
|
||||
"parent_span_id": "dd1853cf21e97142",
|
||||
"trace_id": "802cc6b04825cf9c2ffed7cfb10633ad",
|
||||
"status": "ok",
|
||||
"description": "<anonymous>",
|
||||
"origin": "auto.http.otel.express",
|
||||
"data": {
|
||||
"express.name": "<anonymous>",
|
||||
"express.type": "middleware",
|
||||
"http.route": "/metadata",
|
||||
"sentry.op": "middleware.express",
|
||||
"sentry.origin": "auto.http.otel.express"
|
||||
},
|
||||
"sentry_tags": {
|
||||
"release": "v1.18.1",
|
||||
"user": "ip:::ffff:10.101.174.243",
|
||||
"user.ip": "::ffff:10.101.174.243",
|
||||
"environment": "prod",
|
||||
"transaction": "POST /metadata",
|
||||
"transaction.method": "POST",
|
||||
"transaction.op": "http.server",
|
||||
"browser.name": "axios",
|
||||
"sdk.name": "sentry.javascript.node",
|
||||
"sdk.version": "10.27.0",
|
||||
"platform": "node",
|
||||
"os.name": "Alpine Linux",
|
||||
"category": "middleware",
|
||||
"op": "middleware.express",
|
||||
"status": "ok",
|
||||
"trace.status": "ok",
|
||||
"name": "middleware.express"
|
||||
},
|
||||
"hash": "1985576209a18698"
|
||||
},
|
||||
{
|
||||
"timestamp": 1772781738.156385,
|
||||
"start_timestamp": 1772781738.151,
|
||||
"exclusive_time": 5.385,
|
||||
"op": "db",
|
||||
"span_id": "75e445cd0fd0df19",
|
||||
"parent_span_id": "775cc52065a01e79",
|
||||
"trace_id": "802cc6b04825cf9c2ffed7cfb10633ad",
|
||||
"status": "ok",
|
||||
"description": "SELECT \"ObjectMetadataEntity\".\"workspaceId\" AS \"ObjectMetadataEntity_workspaceId\", \"ObjectMetadataEntity\".\"universalIdentifier\" AS \"ObjectMetadataEntity_universalIdentifier\", \"ObjectMetadataEntity\".\"applicationId\" AS \"ObjectMetadataEntity_applicationId\", \"ObjectMetadataEntity\".\"id\" AS \"ObjectMetadataEntity_id\", \"ObjectMetadataEntity\".\"dataSourceId\" AS \"ObjectMetadataEntity_dataSourceId\", \"ObjectMetadataEntity\".\"nameSingular\" AS \"ObjectMetadataEntity_nameSingular\", \"ObjectMetadataEntity\".\"namePlural\" AS \"ObjectMetadataEntity_namePlural\", \"ObjectMetadataEntity\".\"labelSingular\" AS \"ObjectMetadataEntity_labelSingular\", \"ObjectMetadataEntity\".\"labelPlural\" AS \"ObjectMetadataEntity_labelPlural\", \"ObjectMetadataEntity\".\"description\" AS \"ObjectMetadataEntity_description\", \"ObjectMetadataEntity\".\"icon\" AS \"ObjectMetadataEntity_icon\", \"ObjectMetadataEntity\".\"standardOverrides\" AS \"ObjectMetadataEntity_standardOverrides\", \"ObjectMetadataEntity\".\"targetTableName\" AS \"ObjectMetadataEntity_targetTableName\", \"ObjectMetadataEntity\".\"isCustom\" AS \"ObjectMetadataEntity_isCustom\", \"ObjectMetadataEntity\".\"isRemote\" AS \"ObjectMetadataEntity_isRemote\", \"ObjectMetadataEntity\".\"isActive\" AS \"ObjectMetadataEntity_isActive\", \"ObjectMetadataEntity\".\"isSystem\" AS \"ObjectMetadataEntity_isSystem\", \"ObjectMetadataEntity\".\"isUIReadOnly\" AS \"ObjectMetadataEntity_isUIReadOnly\", \"ObjectMetadataEntity\".\"isAuditLogged\" AS \"ObjectMetadataEntity_isAuditLogged\", \"ObjectMetadataEntity\".\"isSearchable\" AS \"ObjectMetadataEntity_isSearchable\", \"ObjectMetadataEntity\".\"duplicateCriteria\" AS \"ObjectMetadataEntity_duplicateCriteria\", \"ObjectMetadataEntity\".\"shortcut\" AS \"ObjectMetadataEntity_shortcut\", \"ObjectMetadataEntity\".\"labelIdentifierFieldMetadataId\" AS \"ObjectMetadataEntity_labelIdentifierFieldMetadataId\", \"ObjectMetadataEntity\".\"imageIdentifierFieldMetadataId\" AS \"ObjectMetadataEntity_imageIdentifierFieldMetadataId\", \"ObjectMetadataEntity\".\"isLabelSyncedWithName\" AS \"ObjectMetadataEntity_isLabelSyncedWithName\", \"ObjectMetadataEntity\".\"createdAt\" AS \"ObjectMetadataEntity_createdAt\", \"ObjectMetadataEntity\".\"updatedAt\" AS \"ObjectMetadataEntity_updatedAt\" FROM \"core\".\"objectMetadata\" \"ObjectMetadataEntity\" WHERE (\"ObjectMetadataEntity\".\"workspaceId\" = $1) ORDER BY \"ObjectMetadataEntity\".\"id\" DESC LIMIT 1001",
|
||||
"origin": "auto.db.otel.postgres",
|
||||
"data": {
|
||||
"db.system": "postgresql",
|
||||
"db.connection_string": "postgresql://rds-prod-eu.cluster-cr4iu4oi4q7b.eu-central-1.rds.amazonaws.com:5432/default",
|
||||
"db.name": "default",
|
||||
"db.statement": "SELECT \"ObjectMetadataEntity\".\"workspaceId\" AS \"ObjectMetadataEntity_workspaceId\", \"ObjectMetadataEntity\".\"universalIdentifier\" AS \"ObjectMetadataEntity_universalIdentifier\", \"ObjectMetadataEntity\".\"applicationId\" AS \"ObjectMetadataEntity_applicationId\", \"ObjectMetadataEntity\".\"id\" AS \"ObjectMetadataEntity_id\", \"ObjectMetadataEntity\".\"dataSourceId\" AS \"ObjectMetadataEntity_dataSourceId\", \"ObjectMetadataEntity\".\"nameSingular\" AS \"ObjectMetadataEntity_nameSingular\", \"ObjectMetadataEntity\".\"namePlural\" AS \"ObjectMetadataEntity_namePlural\", \"ObjectMetadataEntity\".\"labelSingular\" AS \"ObjectMetadataEntity_labelSingular\", \"ObjectMetadataEntity\".\"labelPlural\" AS \"ObjectMetadataEntity_labelPlural\", \"ObjectMetadataEntity\".\"description\" AS \"ObjectMetadataEntity_description\", \"ObjectMetadataEntity\".\"icon\" AS \"ObjectMetadataEntity_icon\", \"ObjectMetadataEntity\".\"standardOverrides\" AS \"ObjectMetadataEntity_standardOverrides\", \"ObjectMetadataEntity\".\"targetTableName\" AS \"ObjectMetadataEntity_targetTableName\", \"ObjectMetadataEntity\".\"isCustom\" AS \"ObjectMetadataEntity_isCustom\", \"ObjectMetadataEntity\".\"isRemote\" AS \"ObjectMetadataEntity_isRemote\", \"ObjectMetadataEntity\".\"isActive\" AS \"ObjectMetadataEntity_isActive\", \"ObjectMetadataEntity\".\"isSystem\" AS \"ObjectMetadataEntity_isSystem\", \"ObjectMetadataEntity\".\"isUIReadOnly\" AS \"ObjectMetadataEntity_isUIReadOnly\", \"ObjectMetadataEntity\".\"isAuditLogged\" AS \"ObjectMetadataEntity_isAuditLogged\", \"ObjectMetadataEntity\".\"isSearchable\" AS \"ObjectMetadataEntity_isSearchable\", \"ObjectMetadataEntity\".\"duplicateCriteria\" AS \"ObjectMetadataEntity_duplicateCriteria\", \"ObjectMetadataEntity\".\"shortcut\" AS \"ObjectMetadataEntity_shortcut\", \"ObjectMetadataEntity\".\"labelIdentifierFieldMetadataId\" AS \"ObjectMetadataEntity_labelIdentifierFieldMetadataId\", \"ObjectMetadataEntity\".\"imageIdentifierFieldMetadataId\" AS \"ObjectMetadataEntity_imageIdentifierFieldMetadataId\", \"ObjectMetadataEntity\".\"isLabelSyncedWithName\" AS \"ObjectMetadataEntity_isLabelSyncedWithName\", \"ObjectMetadataEntity\".\"createdAt\" AS \"ObjectMetadataEntity_createdAt\", \"ObjectMetadataEntity\".\"updatedAt\" AS \"ObjectMetadataEntity_updatedAt\" FROM \"core\".\"objectMetadata\" \"ObjectMetadataEntity\" WHERE (\"ObjectMetadataEntity\".\"workspaceId\" = $1) ORDER BY \"ObjectMetadataEntity\".\"id\" DESC LIMIT 1001",
|
||||
"db.user": "postgres",
|
||||
"net.peer.name": "rds-prod-eu.cluster-cr4iu4oi4q7b.eu-central-1.rds.amazonaws.com",
|
||||
"net.peer.port": 5432,
|
||||
"otel.kind": "CLIENT",
|
||||
"sentry.op": "db",
|
||||
"sentry.origin": "auto.db.otel.postgres"
|
||||
},
|
||||
"sentry_tags": {
|
||||
"release": "v1.18.1",
|
||||
"user": "ip:::ffff:10.101.174.243",
|
||||
"user.ip": "::ffff:10.101.174.243",
|
||||
"environment": "prod",
|
||||
"transaction": "POST /metadata",
|
||||
"transaction.method": "POST",
|
||||
"transaction.op": "http.server",
|
||||
"browser.name": "axios",
|
||||
"sdk.name": "sentry.javascript.node",
|
||||
"sdk.version": "10.27.0",
|
||||
"platform": "node",
|
||||
"os.name": "Alpine Linux",
|
||||
"action": "SELECT",
|
||||
"category": "db",
|
||||
"description": "SELECT .. FROM objectMetadata ObjectMetadataEntity WHERE (workspaceId = %s) ORDER BY id DESC LIMIT %s",
|
||||
"domain": ",objectmetadata,",
|
||||
"group": "730016dbd8c96230",
|
||||
"op": "db",
|
||||
"status": "ok",
|
||||
"system": "postgresql",
|
||||
"trace.status": "ok",
|
||||
"name": "Database operation"
|
||||
},
|
||||
"hash": "5bbef08c2b59a914"
|
||||
},
|
||||
{
|
||||
"timestamp": 1772781739.563728,
|
||||
"start_timestamp": 1772781738.193,
|
||||
"exclusive_time": 1370.728,
|
||||
"op": "db",
|
||||
"span_id": "31bd7c7a2acf8ec6",
|
||||
"parent_span_id": "775cc52065a01e79",
|
||||
"trace_id": "802cc6b04825cf9c2ffed7cfb10633ad",
|
||||
"status": "ok",
|
||||
"description": "SELECT DISTINCT \"fields\".\"workspaceId\" AS \"fields_workspaceId\", \"fields\".\"universalIdentifier\" AS \"fields_universalIdentifier\", \"fields\".\"applicationId\" AS \"fields_applicationId\", \"fields\".\"id\" AS \"fields_id\", \"fields\".\"objectMetadataId\" AS \"fields_objectMetadataId\", \"fields\".\"type\" AS \"fields_type\", \"fields\".\"name\" AS \"fields_name\", \"fields\".\"label\" AS \"fields_label\", \"fields\".\"defaultValue\" AS \"fields_defaultValue\", \"fields\".\"description\" AS \"fields_description\", \"fields\".\"icon\" AS \"fields_icon\", \"fields\".\"standardOverrides\" AS \"fields_standardOverrides\", \"fields\".\"options\" AS \"fields_options\", \"fields\".\"settings\" AS \"fields_settings\", \"fields\".\"isCustom\" AS \"fields_isCustom\", \"fields\".\"isActive\" AS \"fields_isActive\", \"fields\".\"isSystem\" AS \"fields_isSystem\", \"fields\".\"isUIReadOnly\" AS \"fields_isUIReadOnly\", \"fields\".\"isNullable\" AS \"fields_isNullable\", \"fields\".\"isUnique\" AS \"fields_isUnique\", \"fields\".\"isLabelSyncedWithName\" AS \"fields_isLabelSyncedWithName\", \"fields\".\"relationTargetFieldMetadataId\" AS \"fields_relationTargetFieldMetadataId\", \"fields\".\"relationTargetObjectMetadataId\" AS \"fields_relationTargetObjectMetadataId\", \"fields\".\"morphId\" AS \"fields_morphId\", \"fields\".\"createdAt\" AS \"fields_createdAt\", \"fields\".\"updatedAt\" AS \"fields_updatedAt\" FROM \"core\".\"fieldMetadata\" \"fields\" WHERE (\"fields\".\"workspaceId\" = $1) AND \"fields\".\"objectMetadataId\" IN ($2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18, $19, $20, $21, $22, $23, $24, $25, $26, $27, $28, $29, $30, $31, $32, $33, $34, $35, $36, $37, $38, $39) LIMIT 1001",
|
||||
"origin": "auto.db.otel.postgres",
|
||||
"data": {
|
||||
"db.system": "postgresql",
|
||||
"db.connection_string": "postgresql://rds-prod-eu.cluster-cr4iu4oi4q7b.eu-central-1.rds.amazonaws.com:5432/default",
|
||||
"db.name": "default",
|
||||
"db.statement": "SELECT DISTINCT \"fields\".\"workspaceId\" AS \"fields_workspaceId\", \"fields\".\"universalIdentifier\" AS \"fields_universalIdentifier\", \"fields\".\"applicationId\" AS \"fields_applicationId\", \"fields\".\"id\" AS \"fields_id\", \"fields\".\"objectMetadataId\" AS \"fields_objectMetadataId\", \"fields\".\"type\" AS \"fields_type\", \"fields\".\"name\" AS \"fields_name\", \"fields\".\"label\" AS \"fields_label\", \"fields\".\"defaultValue\" AS \"fields_defaultValue\", \"fields\".\"description\" AS \"fields_description\", \"fields\".\"icon\" AS \"fields_icon\", \"fields\".\"standardOverrides\" AS \"fields_standardOverrides\", \"fields\".\"options\" AS \"fields_options\", \"fields\".\"settings\" AS \"fields_settings\", \"fields\".\"isCustom\" AS \"fields_isCustom\", \"fields\".\"isActive\" AS \"fields_isActive\", \"fields\".\"isSystem\" AS \"fields_isSystem\", \"fields\".\"isUIReadOnly\" AS \"fields_isUIReadOnly\", \"fields\".\"isNullable\" AS \"fields_isNullable\", \"fields\".\"isUnique\" AS \"fields_isUnique\", \"fields\".\"isLabelSyncedWithName\" AS \"fields_isLabelSyncedWithName\", \"fields\".\"relationTargetFieldMetadataId\" AS \"fields_relationTargetFieldMetadataId\", \"fields\".\"relationTargetObjectMetadataId\" AS \"fields_relationTargetObjectMetadataId\", \"fields\".\"morphId\" AS \"fields_morphId\", \"fields\".\"createdAt\" AS \"fields_createdAt\", \"fields\".\"updatedAt\" AS \"fields_updatedAt\" FROM \"core\".\"fieldMetadata\" \"fields\" WHERE (\"fields\".\"workspaceId\" = $1) AND \"fields\".\"objectMetadataId\" IN ($2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18, $19, $20, $21, $22, $23, $24, $25, $26, $27, $28, $29, $30, $31, $32, $33, $34, $35, $36, $37, $38, $39) LIMIT 1001",
|
||||
"db.user": "postgres",
|
||||
"net.peer.name": "rds-prod-eu.cluster-cr4iu4oi4q7b.eu-central-1.rds.amazonaws.com",
|
||||
"net.peer.port": 5432,
|
||||
"otel.kind": "CLIENT",
|
||||
"sentry.op": "db",
|
||||
"sentry.origin": "auto.db.otel.postgres"
|
||||
},
|
||||
"sentry_tags": {
|
||||
"release": "v1.18.1",
|
||||
"user": "ip:::ffff:10.101.174.243",
|
||||
"user.ip": "::ffff:10.101.174.243",
|
||||
"environment": "prod",
|
||||
"transaction": "POST /metadata",
|
||||
"transaction.method": "POST",
|
||||
"transaction.op": "http.server",
|
||||
"browser.name": "axios",
|
||||
"sdk.name": "sentry.javascript.node",
|
||||
"sdk.version": "10.27.0",
|
||||
"platform": "node",
|
||||
"os.name": "Alpine Linux",
|
||||
"action": "SELECT",
|
||||
"category": "db",
|
||||
"description": "SELECT DISTINCT .. FROM fieldMetadata fields WHERE (workspaceId = %s) AND objectMetadataId IN (%s) LIMIT %s",
|
||||
"domain": ",fieldmetadata,",
|
||||
"group": "41e8530d27d29a38",
|
||||
"op": "db",
|
||||
"status": "ok",
|
||||
"system": "postgresql",
|
||||
"trace.status": "ok",
|
||||
"name": "Database operation"
|
||||
},
|
||||
"hash": "814db404888c0473"
|
||||
}
|
||||
]
|
||||
@@ -44,12 +44,12 @@
|
||||
"cache": true,
|
||||
"options": {
|
||||
"cwd": "{projectRoot}",
|
||||
"command": "npx oxlint -c .oxlintrc.json ."
|
||||
"command": "npx oxlint -c .oxlintrc.json . && (prettier . --check --cache --cache-location ../../.cache/prettier/{projectRoot} --cache-strategy metadata || (echo 'ERROR: Prettier formatting check failed! Fix with: npx nx lint --configuration=fix' && false))"
|
||||
},
|
||||
"configurations": {
|
||||
"ci": {},
|
||||
"fix": {
|
||||
"command": "npx oxlint --fix -c .oxlintrc.json ."
|
||||
"command": "npx oxlint --fix -c .oxlintrc.json . && prettier . --write --cache --cache-location ../../.cache/prettier/{projectRoot} --cache-strategy metadata"
|
||||
}
|
||||
},
|
||||
"dependsOn": ["^build", "twenty-oxlint-rules:build"]
|
||||
@@ -58,12 +58,12 @@
|
||||
"executor": "nx:run-commands",
|
||||
"cache": false,
|
||||
"options": {
|
||||
"command": "FILES=$(git diff --name-only --diff-filter=d main -- {projectRoot}/ | grep -E '{args.pattern}'); [ -z \"$FILES\" ] && echo 'No changed files.' || npx oxlint -c {projectRoot}/.oxlintrc.json $FILES",
|
||||
"command": "FILES=$(git diff --name-only --diff-filter=d main -- {projectRoot}/ | grep -E '{args.pattern}'); [ -z \"$FILES\" ] && echo 'No changed files.' || (npx oxlint -c {projectRoot}/.oxlintrc.json $FILES && (prettier --check $FILES || (echo 'ERROR: Prettier formatting check failed! Fix with: npx nx lint:diff-with-main --configuration=fix' && false)))",
|
||||
"pattern": "\\.(ts|tsx|js|jsx)$"
|
||||
},
|
||||
"configurations": {
|
||||
"fix": {
|
||||
"command": "FILES=$(git diff --name-only --diff-filter=d main -- {projectRoot}/ | grep -E '{args.pattern}'); [ -z \"$FILES\" ] && echo 'No changed files.' || npx oxlint --fix -c {projectRoot}/.oxlintrc.json $FILES"
|
||||
"command": "FILES=$(git diff --name-only --diff-filter=d main -- {projectRoot}/ | grep -E '{args.pattern}'); [ -z \"$FILES\" ] && echo 'No changed files.' || (npx oxlint --fix -c {projectRoot}/.oxlintrc.json $FILES && prettier --write $FILES)"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -17,22 +17,31 @@
|
||||
"import/no-duplicates": "error",
|
||||
"typescript/no-redeclare": "error",
|
||||
"typescript/ban-ts-comment": "error",
|
||||
"typescript/consistent-type-imports": ["error", {
|
||||
"prefer": "type-imports",
|
||||
"fixStyle": "inline-type-imports"
|
||||
}],
|
||||
"typescript/consistent-type-imports": [
|
||||
"error",
|
||||
{
|
||||
"prefer": "type-imports",
|
||||
"fixStyle": "inline-type-imports"
|
||||
}
|
||||
],
|
||||
"typescript/explicit-function-return-type": "off",
|
||||
"typescript/explicit-module-boundary-types": "off",
|
||||
"typescript/no-empty-object-type": ["error", {
|
||||
"allowInterfaces": "with-single-extends"
|
||||
}],
|
||||
"typescript/no-empty-object-type": [
|
||||
"error",
|
||||
{
|
||||
"allowInterfaces": "with-single-extends"
|
||||
}
|
||||
],
|
||||
"typescript/no-empty-function": "off",
|
||||
"typescript/no-explicit-any": "off",
|
||||
"typescript/no-unused-vars": ["warn", {
|
||||
"vars": "all",
|
||||
"varsIgnorePattern": "^_",
|
||||
"args": "after-used",
|
||||
"argsIgnorePattern": "^_"
|
||||
}]
|
||||
"typescript/no-unused-vars": [
|
||||
"warn",
|
||||
{
|
||||
"vars": "all",
|
||||
"varsIgnorePattern": "^_",
|
||||
"args": "after-used",
|
||||
"argsIgnorePattern": "^_"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
dist
|
||||
@@ -19,9 +19,11 @@ Create Twenty App is the official scaffolding CLI for building apps on top of [T
|
||||
- Strong TypeScript support and typed client generation
|
||||
|
||||
## Documentation
|
||||
|
||||
See Twenty application documentation https://docs.twenty.com/developers/extend/capabilities/apps
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Node.js 24+ (recommended) and Yarn 4
|
||||
- A Twenty workspace and an API key (create one at https://app.twenty.com/settings/api-webhooks)
|
||||
|
||||
@@ -64,11 +66,11 @@ yarn twenty app:uninstall
|
||||
|
||||
Control which example files are included when creating a new app:
|
||||
|
||||
| Flag | Behavior |
|
||||
|------|----------|
|
||||
| `-e, --exhaustive` | **(default)** Creates all example files without prompting |
|
||||
| `-m, --minimal` | Creates only core files (`application-config.ts` and `default-role.ts`) |
|
||||
| `-i, --interactive` | Prompts you to select which examples to include |
|
||||
| Flag | Behavior |
|
||||
| ------------------- | ----------------------------------------------------------------------- |
|
||||
| `-e, --exhaustive` | **(default)** Creates all example files without prompting |
|
||||
| `-m, --minimal` | Creates only core files (`application-config.ts` and `default-role.ts`) |
|
||||
| `-i, --interactive` | Prompts you to select which examples to include |
|
||||
|
||||
```bash
|
||||
# Default: all examples included
|
||||
@@ -82,6 +84,7 @@ npx create-twenty-app@latest my-app -i
|
||||
```
|
||||
|
||||
In interactive mode, you can pick from:
|
||||
|
||||
- **Example object** — a custom CRM object definition (`objects/example-object.ts`)
|
||||
- **Example field** — a custom field on the example object (`fields/example-field.ts`)
|
||||
- **Example logic function** — a server-side handler with HTTP trigger (`logic-functions/hello-world.ts`)
|
||||
@@ -94,6 +97,7 @@ In interactive mode, you can pick from:
|
||||
## What gets scaffolded
|
||||
|
||||
**Core files (always created):**
|
||||
|
||||
- `application-config.ts` — Application metadata configuration
|
||||
- `roles/default-role.ts` — Default role for logic functions
|
||||
- `logic-functions/pre-install.ts` — Pre-install logic function (runs before app installation)
|
||||
@@ -102,6 +106,7 @@ In interactive mode, you can pick from:
|
||||
- A prewired `twenty` script that delegates to the `twenty` CLI from twenty-sdk
|
||||
|
||||
**Example files (controlled by scaffolding mode):**
|
||||
|
||||
- `objects/example-object.ts` — Example custom object with a text field
|
||||
- `fields/example-field.ts` — Example standalone field extending the example object
|
||||
- `logic-functions/hello-world.ts` — Example logic function with HTTP trigger
|
||||
@@ -112,14 +117,15 @@ In interactive mode, you can pick from:
|
||||
- `__tests__/app-install.integration-test.ts` — Integration test that builds, installs, and verifies the app (includes `vitest.config.ts`, `tsconfig.spec.json`, and a setup file)
|
||||
|
||||
## Next steps
|
||||
|
||||
- Run `yarn twenty help` to see all available commands.
|
||||
- Use `yarn twenty auth:login` to authenticate with your Twenty workspace.
|
||||
- Explore the generated project and add your first entity with `yarn twenty entity:add` (logic functions, front components, objects, roles, views, navigation menu items, skills).
|
||||
- Use `yarn twenty app:dev` while you iterate — it watches, builds, and syncs changes to your workspace in real time.
|
||||
- Two typed API clients are auto‑generated by `yarn twenty app:dev` and stored in `node_modules/twenty-sdk/generated`: `CoreApiClient` (for workspace data via `/graphql`) and `MetadataApiClient` (for workspace configuration and file uploads via `/metadata`).
|
||||
|
||||
|
||||
## Publish your application
|
||||
|
||||
Applications are currently stored in `twenty/packages/twenty-apps`.
|
||||
|
||||
You can share your application with all Twenty users:
|
||||
@@ -144,9 +150,11 @@ git push
|
||||
Our team reviews contributions for quality, security, and reusability before merging.
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
- Auth prompts not appearing: run `yarn twenty auth:login` again and verify the API key permissions.
|
||||
- Types not generated: ensure `yarn twenty app:dev` is running — it auto‑generates the typed client.
|
||||
|
||||
## Contributing
|
||||
|
||||
- See our [GitHub](https://github.com/twentyhq/twenty)
|
||||
- Join our [Discord](https://discord.gg/cx5n4Jzs57)
|
||||
|
||||
@@ -8,9 +8,12 @@
|
||||
"rules": {
|
||||
"no-unused-vars": "off",
|
||||
|
||||
"typescript/no-unused-vars": ["warn", {
|
||||
"argsIgnorePattern": "^_"
|
||||
}],
|
||||
"typescript/no-unused-vars": [
|
||||
"warn",
|
||||
{
|
||||
"argsIgnorePattern": "^_"
|
||||
}
|
||||
],
|
||||
"typescript/no-explicit-any": "off"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
- Rich app example: https://github.com/twentyhq/twenty/tree/main/packages/twenty-sdk/src/cli/__tests__/apps/rich-app
|
||||
|
||||
## UUID requirement
|
||||
|
||||
- All generated UUIDs must be valid UUID v4.
|
||||
|
||||
## Common Pitfalls
|
||||
|
||||
@@ -27,5 +27,11 @@
|
||||
"~/*": ["./*"]
|
||||
}
|
||||
},
|
||||
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts", "**/*.integration-test.ts"]
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"dist",
|
||||
"**/*.test.ts",
|
||||
"**/*.spec.ts",
|
||||
"**/*.integration-test.ts"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -24,7 +24,5 @@
|
||||
"vite.config.ts",
|
||||
"jest.config.mjs"
|
||||
],
|
||||
"exclude": [
|
||||
"src/constants/base-application/vitest.config.ts"
|
||||
]
|
||||
"exclude": ["src/constants/base-application/vitest.config.ts"]
|
||||
}
|
||||
|
||||
+4
-4
@@ -260,7 +260,7 @@ const StyledButton = styled.button`
|
||||
|
||||
## تطبيق قاعدة "عدم استيراد الأنواع"
|
||||
|
||||
تجنب استيراد الأنواع. To enforce this standard, an Oxlint rule checks for and reports any type imports. يساعد هذا على الحفاظ على الاتساق وقابلية القراءة في كود TypeScript.
|
||||
تجنب استيراد الأنواع. لفرض هذا المعيار، تتحقق قاعدة Oxlint وتبلغ عن أي استيرادات للأنواع. يساعد هذا على الحفاظ على الاتساق وقابلية القراءة في كود TypeScript.
|
||||
|
||||
```tsx
|
||||
// ❌ Bad
|
||||
@@ -281,10 +281,10 @@ import { Meta, StoryObj } from '@storybook/react';
|
||||
|
||||
* **الصيانة**: يعزز الصيانة داخل قاعدة الكود لأن المطوّرين يمكنهم تحديد مواقع استيرادات الأنواع فقط عند استعراض أو تعديل الكود.
|
||||
|
||||
### Oxlint Rule
|
||||
### قاعدة Oxlint
|
||||
|
||||
An Oxlint rule, `typescript/consistent-type-imports`, enforces the no-type import standard. ستولد هذه القاعدة تحذيرات أو أخطاء عن أي انتهاكات لاستيراد الأنواع.
|
||||
تفرض قاعدة Oxlint، `typescript/consistent-type-imports`, معيار عدم استيراد الأنواع. ستولد هذه القاعدة تحذيرات أو أخطاء عن أي انتهاكات لاستيراد الأنواع.
|
||||
|
||||
يرجى ملاحظة أن هذه القاعدة تتناول بشكل خاص حالات الحافة النادرة حيث تحدث استيرادات الأنواع دون قصد. يمنع TypeScript نفسه هذه الممارسة، كما هو موضح في [ملاحظات إصدار TypeScript 3.8](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html). في معظم الحالات، لا ينبغي لك أن تستخدم استيرادات الأنواع وحدها.
|
||||
|
||||
To ensure your code complies with this rule, make sure to run Oxlint as part of your development workflow.
|
||||
لضمان امتثال الكود الخاص بك لهذه القاعدة، تأكد من تشغيل Oxlint كجزء من سير العمل الخاص بالتطوير لديك.
|
||||
|
||||
@@ -99,27 +99,27 @@ my-twenty-app/
|
||||
.oxlintrc.json
|
||||
tsconfig.json
|
||||
README.md
|
||||
public/ # Public assets folder (images, fonts, etc.)
|
||||
public/ # مجلد الأصول العامة (صور، خطوط، إلخ)
|
||||
src/
|
||||
├── application-config.ts # Required - main application configuration
|
||||
├── application-config.ts # مطلوب - إعدادات التطبيق الرئيسية
|
||||
├── roles/
|
||||
│ └── default-role.ts # Default role for logic functions
|
||||
│ └── default-role.ts # الدور الافتراضي للدوال المنطقية
|
||||
├── objects/
|
||||
│ └── example-object.ts # Example custom object definition
|
||||
│ └── example-object.ts # تعريف كائن مخصص — مثال
|
||||
├── fields/
|
||||
│ └── example-field.ts # Example standalone field definition
|
||||
│ └── example-field.ts # تعريف حقل مستقل — مثال
|
||||
├── logic-functions/
|
||||
│ ├── hello-world.ts # Example logic function
|
||||
│ ├── pre-install.ts # Pre-install logic function
|
||||
│ └── post-install.ts # Post-install logic function
|
||||
│ ├── hello-world.ts # دالة منطقية — مثال
|
||||
│ ├── pre-install.ts # دالة منطقية لما قبل التثبيت
|
||||
│ └── post-install.ts # دالة منطقية لما بعد التثبيت
|
||||
├── front-components/
|
||||
│ └── hello-world.tsx # Example front component
|
||||
│ └── hello-world.tsx # مكوّن واجهة أمامية — مثال
|
||||
├── views/
|
||||
│ └── example-view.ts # Example saved view definition
|
||||
│ └── example-view.ts # تعريف عرض محفوظ — مثال
|
||||
├── navigation-menu-items/
|
||||
│ └── example-navigation-menu-item.ts # Example sidebar navigation link
|
||||
│ └── example-navigation-menu-item.ts # رابط تنقّل في الشريط الجانبي — مثال
|
||||
└── skills/
|
||||
└── example-skill.ts # Example AI agent skill definition
|
||||
└── example-skill.ts # تعريف مهارة لوكيل الذكاء الاصطناعي — مثال},{
|
||||
```
|
||||
|
||||
مع `--minimal`، سيتم إنشاء الملفات الأساسية فقط (`application-config.ts`، `roles/default-role.ts`، `logic-functions/pre-install.ts`، و`logic-functions/post-install.ts`). مع `--interactive`، تختار ملفات الأمثلة التي تريد تضمينها.
|
||||
@@ -130,7 +130,7 @@ my-twenty-app/
|
||||
* **.gitignore**: يتجاهل العناصر الشائعة مثل `node_modules` و`.yarn` و`generated/` (عميل مضبوط الأنواع) و`dist/` و`build/` ومجلدات التغطية وملفات السجلات وملفات `.env*`.
|
||||
* **yarn.lock**، **.yarnrc.yml**، **.yarn/**: تقوم بقفل وتكوين حزمة أدوات Yarn 4 المستخدمة في المشروع.
|
||||
* **.nvmrc**: يثبّت إصدار Node.js المتوقع للمشروع.
|
||||
* **.oxlintrc.json** and **tsconfig.json**: Provide linting and TypeScript configuration for your app's TypeScript sources.
|
||||
* **.oxlintrc.json** و **tsconfig.json**: يقدّمان إعدادات الفحص والتهيئة لـ TypeScript لمصادر TypeScript في تطبيقك.
|
||||
* **README.md**: ملف README قصير في جذر التطبيق يتضمن تعليمات أساسية.
|
||||
* **public/**: مجلد لتخزين الأصول العامة (صور، خطوط، ملفات ثابتة) التي سيتم تقديمها مع تطبيقك. الملفات الموضوعة هنا تُرفع أثناء المزامنة وتكون متاحة أثناء وقت التشغيل.
|
||||
* **src/**: المكان الرئيسي حيث تعرّف تطبيقك ككود
|
||||
|
||||
+4
-4
@@ -260,7 +260,7 @@ const StyledButton = styled.button`
|
||||
|
||||
## Prosazování Zákazu Importů Typů
|
||||
|
||||
Vyhýbejte se typovým importům. To enforce this standard, an Oxlint rule checks for and reports any type imports. To pomáhá udržovat konzistenci a čitelnost v TypeScript kódu.
|
||||
Vyhýbejte se typovým importům. K prosazení tohoto standardu pravidlo Oxlint kontroluje a hlásí jakékoli typové importy. To pomáhá udržovat konzistenci a čitelnost v TypeScript kódu.
|
||||
|
||||
```tsx
|
||||
// ❌ Bad
|
||||
@@ -281,10 +281,10 @@ import { Meta, StoryObj } from '@storybook/react';
|
||||
|
||||
* **Udržovatelnost**: Zvyšuje udržovatelnost kódové základny, protože vývojáři mohou při revizi nebo úpravách kódu identifikovat a najít importy pouze typů.
|
||||
|
||||
### Oxlint Rule
|
||||
### Pravidlo Oxlint
|
||||
|
||||
An Oxlint rule, `typescript/consistent-type-imports`, enforces the no-type import standard. Toto pravidlo generuje chyby nebo varování pro jakékoli porušení typového importu.
|
||||
Pravidlo Oxlint, `typescript/consistent-type-imports`, prosazuje standard zákazu importů typů. Toto pravidlo generuje chyby nebo varování pro jakékoli porušení typového importu.
|
||||
|
||||
Upozorňujeme, že toto pravidlo konkrétně řeší vzácné okrajové případy, kdy dochází k neúmyslným typovým importům. TypeScript sám odrazuje tuto praxi, jak je uvedeno v [poznámkách k verzi TypeScript 3.8](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html). Ve většině případů byste neměli potřebovat používat pouze typové importy.
|
||||
|
||||
To ensure your code complies with this rule, make sure to run Oxlint as part of your development workflow.
|
||||
Aby váš kód splňoval toto pravidlo, spusťte Oxlint jako součást svého vývojového pracovního postupu.
|
||||
|
||||
@@ -99,27 +99,27 @@ my-twenty-app/
|
||||
.oxlintrc.json
|
||||
tsconfig.json
|
||||
README.md
|
||||
public/ # Public assets folder (images, fonts, etc.)
|
||||
public/ # Složka s veřejnými prostředky (obrázky, písma apod.)
|
||||
src/
|
||||
├── application-config.ts # Required - main application configuration
|
||||
├── application-config.ts # Povinné – hlavní konfigurace aplikace
|
||||
├── roles/
|
||||
│ └── default-role.ts # Default role for logic functions
|
||||
│ └── default-role.ts # Výchozí role pro logické funkce
|
||||
├── objects/
|
||||
│ └── example-object.ts # Example custom object definition
|
||||
│ └── example-object.ts # Ukázková definice vlastního objektu
|
||||
├── fields/
|
||||
│ └── example-field.ts # Example standalone field definition
|
||||
│ └── example-field.ts # Ukázková samostatná definice pole
|
||||
├── logic-functions/
|
||||
│ ├── hello-world.ts # Example logic function
|
||||
│ ├── pre-install.ts # Pre-install logic function
|
||||
│ └── post-install.ts # Post-install logic function
|
||||
│ ├── hello-world.ts # Ukázková logická funkce
|
||||
│ ├── pre-install.ts # Předinstalační logická funkce
|
||||
│ └── post-install.ts # Postinstalační logická funkce
|
||||
├── front-components/
|
||||
│ └── hello-world.tsx # Example front component
|
||||
│ └── hello-world.tsx # Ukázková front-endová komponenta
|
||||
├── views/
|
||||
│ └── example-view.ts # Example saved view definition
|
||||
│ └── example-view.ts # Ukázková definice uloženého zobrazení
|
||||
├── navigation-menu-items/
|
||||
│ └── example-navigation-menu-item.ts # Example sidebar navigation link
|
||||
│ └── example-navigation-menu-item.ts # Ukázkový odkaz postranní navigace
|
||||
└── skills/
|
||||
└── example-skill.ts # Example AI agent skill definition
|
||||
└── example-skill.ts # Ukázková definice dovednosti agenta AI
|
||||
```
|
||||
|
||||
S volbou `--minimal` se vytvoří pouze základní soubory (`application-config.ts`, `roles/default-role.ts`, `logic-functions/pre-install.ts` a `logic-functions/post-install.ts`). S volbou `--interactive` si vyberete, které ukázkové soubory chcete zahrnout.
|
||||
|
||||
+4
-4
@@ -260,7 +260,7 @@ const StyledButton = styled.button`
|
||||
|
||||
## Durchsetzung von No-Type Imports
|
||||
|
||||
Vermeiden Sie Typ-Importe. To enforce this standard, an Oxlint rule checks for and reports any type imports. Dies trägt zur Konsistenz und Lesbarkeit des TypeScript-Codes bei.
|
||||
Vermeiden Sie Typ-Importe. Um diesen Standard durchzusetzen, überprüft eine Oxlint-Regel alle Typ-Importe und meldet sie. Dies trägt zur Konsistenz und Lesbarkeit des TypeScript-Codes bei.
|
||||
|
||||
```tsx
|
||||
// ❌ Bad
|
||||
@@ -281,10 +281,10 @@ import { Meta, StoryObj } from '@storybook/react';
|
||||
|
||||
* **Wartbarkeit**: Es verbessert die Wartbarkeit der Codebasis, da Entwickler Typ-Only-Imports beim Überprüfen oder Ändern von Code identifizieren und lokalisieren können.
|
||||
|
||||
### Oxlint Rule
|
||||
### Oxlint-Regel
|
||||
|
||||
An Oxlint rule, `typescript/consistent-type-imports`, enforces the no-type import standard. Diese Regel generiert Fehler oder Warnungen bei Verstößen gegen Typ-Importe.
|
||||
Eine Oxlint-Regel, `typescript/consistent-type-imports`, setzt den No-Type-Import-Standard durch. Diese Regel generiert Fehler oder Warnungen bei Verstößen gegen Typ-Importe.
|
||||
|
||||
Bitte beachten Sie, dass diese Regel speziell seltene Randfälle behandelt, in denen unbeabsichtigte Typ-Importe auftreten. TypeScript selbst lehnt diese Praxis ab, wie in den [TypeScript 3.8 Release Notes](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html) erwähnt. In den meisten Situationen sollten Typ-Only-Imports nicht benötigt werden.
|
||||
|
||||
To ensure your code complies with this rule, make sure to run Oxlint as part of your development workflow.
|
||||
Um sicherzustellen, dass Ihr Code mit dieser Regel übereinstimmt, achten Sie darauf, Oxlint als Teil Ihres Entwicklungsworkflows auszuführen.
|
||||
|
||||
+4
-4
@@ -260,7 +260,7 @@ const StyledButton = styled.button`
|
||||
|
||||
## Applicare importazioni senza tipo
|
||||
|
||||
Evita le importazioni di tipo. To enforce this standard, an Oxlint rule checks for and reports any type imports. Questo aiuta a mantenere la coerenza e la leggibilità del codice TypeScript.
|
||||
Evita le importazioni di tipo. Per far rispettare questo standard, una regola di Oxlint verifica e segnala qualsiasi import di tipo. Questo aiuta a mantenere la coerenza e la leggibilità del codice TypeScript.
|
||||
|
||||
```tsx
|
||||
// ❌ Male
|
||||
@@ -281,10 +281,10 @@ import { Meta, StoryObj } from '@storybook/react';
|
||||
|
||||
* **Manutenibilità**: Migliora la manutenibilità della codebase perché gli sviluppatori possono identificare e individuare gli import solo di tipo durante la revisione o la modifica del codice.
|
||||
|
||||
### Oxlint Rule
|
||||
### Regola Oxlint
|
||||
|
||||
An Oxlint rule, `typescript/consistent-type-imports`, enforces the no-type import standard. Questa regola genererà errori o avvisi per qualsiasi violazione relativa agli import di tipo.
|
||||
Una regola di Oxlint, `typescript/consistent-type-imports`, impone lo standard che vieta gli import di tipo. Questa regola genererà errori o avvisi per qualsiasi violazione relativa agli import di tipo.
|
||||
|
||||
Tieni presente che questa regola affronta specificamente rari casi limite in cui si verificano import di tipo involontari. TypeScript stesso scoraggia questa pratica, come menzionato nelle [note di rilascio di TypeScript 3.8](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html). Nella maggior parte delle situazioni, non si dovrebbe aver bisogno di usare importazioni di solo tipo.
|
||||
|
||||
To ensure your code complies with this rule, make sure to run Oxlint as part of your development workflow.
|
||||
Per assicurarti che il tuo codice sia conforme a questa regola, assicurati di eseguire Oxlint come parte del tuo flusso di lavoro di sviluppo.
|
||||
|
||||
+4
-4
@@ -260,7 +260,7 @@ const StyledButton = styled.button`
|
||||
|
||||
## Impor Importações Sem Tipo
|
||||
|
||||
Evite importações de tipo. To enforce this standard, an Oxlint rule checks for and reports any type imports. Isso ajuda a manter a consistência e a legibilidade no código TypeScript.
|
||||
Evite importações de tipo. Para impor esse padrão, uma regra do Oxlint verifica e relata quaisquer importações de tipos. Isso ajuda a manter a consistência e a legibilidade no código TypeScript.
|
||||
|
||||
```tsx
|
||||
// ❌ Bad
|
||||
@@ -281,10 +281,10 @@ import { Meta, StoryObj } from '@storybook/react';
|
||||
|
||||
* **Manutenção**: Melhora a manutenibilidade da base de código porque os desenvolvedores podem identificar e localizar importações somente de tipo ao revisar ou modificar o código.
|
||||
|
||||
### Oxlint Rule
|
||||
### Regra do Oxlint
|
||||
|
||||
An Oxlint rule, `typescript/consistent-type-imports`, enforces the no-type import standard. Esta regra gerará erros ou avisos para qualquer violação de importação de tipo.
|
||||
Uma regra do Oxlint, `typescript/consistent-type-imports`, aplica o padrão de não usar importações de tipos. Esta regra gerará erros ou avisos para qualquer violação de importação de tipo.
|
||||
|
||||
Observe que esta regra trata especificamente de casos isolados onde importações de tipos não intencionais ocorrem. O próprio TypeScript desencoraja essa prática, conforme mencionado nas [notas de lançamento do TypeScript 3.8](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html). Na maioria das situações, não é necessário usar importações somente de tipo.
|
||||
|
||||
To ensure your code complies with this rule, make sure to run Oxlint as part of your development workflow.
|
||||
Para garantir que seu código esteja em conformidade com essa regra, certifique-se de executar o Oxlint como parte do seu fluxo de trabalho de desenvolvimento.
|
||||
|
||||
@@ -99,27 +99,27 @@ my-twenty-app/
|
||||
.oxlintrc.json
|
||||
tsconfig.json
|
||||
README.md
|
||||
public/ # Public assets folder (images, fonts, etc.)
|
||||
public/ # Pasta de recursos públicos (imagens, fontes, etc.)
|
||||
src/
|
||||
├── application-config.ts # Required - main application configuration
|
||||
├── application-config.ts # Obrigatório - configuração principal da aplicação
|
||||
├── roles/
|
||||
│ └── default-role.ts # Default role for logic functions
|
||||
│ └── default-role.ts # Papel padrão para funções de lógica
|
||||
├── objects/
|
||||
│ └── example-object.ts # Example custom object definition
|
||||
│ └── example-object.ts # Exemplo de definição de objeto personalizado
|
||||
├── fields/
|
||||
│ └── example-field.ts # Example standalone field definition
|
||||
│ └── example-field.ts # Exemplo de definição de campo independente
|
||||
├── logic-functions/
|
||||
│ ├── hello-world.ts # Example logic function
|
||||
│ ├── pre-install.ts # Pre-install logic function
|
||||
│ └── post-install.ts # Post-install logic function
|
||||
│ ├── hello-world.ts # Exemplo de função de lógica
|
||||
│ ├── pre-install.ts # Função de lógica de pré-instalação
|
||||
│ └── post-install.ts # Função de lógica de pós-instalação
|
||||
├── front-components/
|
||||
│ └── hello-world.tsx # Example front component
|
||||
│ └── hello-world.tsx # Exemplo de componente de front-end
|
||||
├── views/
|
||||
│ └── example-view.ts # Example saved view definition
|
||||
│ └── example-view.ts # Exemplo de definição de visualização salva
|
||||
├── navigation-menu-items/
|
||||
│ └── example-navigation-menu-item.ts # Example sidebar navigation link
|
||||
│ └── example-navigation-menu-item.ts # Exemplo de link de navegação da barra lateral
|
||||
└── skills/
|
||||
└── example-skill.ts # Example AI agent skill definition
|
||||
└── example-skill.ts # Exemplo de definição de habilidade de agente de IA
|
||||
```
|
||||
|
||||
With `--minimal`, only the core files are created (`application-config.ts`, `roles/default-role.ts`, `logic-functions/pre-install.ts`, and `logic-functions/post-install.ts`). Com `--interactive`, você escolhe quais arquivos de exemplo incluir.
|
||||
@@ -130,7 +130,7 @@ Em alto nível:
|
||||
* **.gitignore**: Ignora artefatos comuns como `node_modules`, `.yarn`, `generated/` (cliente tipado), `dist/`, `build/`, pastas de cobertura, arquivos de log e arquivos `.env*`.
|
||||
* **yarn.lock**, **.yarnrc.yml**, **.yarn/**: Bloqueiam e configuram a ferramenta Yarn 4 usada pelo projeto.
|
||||
* **.nvmrc**: Fixa a versão do Node.js esperada pelo projeto.
|
||||
* **.oxlintrc.json** and **tsconfig.json**: Provide linting and TypeScript configuration for your app's TypeScript sources.
|
||||
* **.oxlintrc.json** e **tsconfig.json**: Fornecem lint e configuração do TypeScript para os fontes TypeScript do seu aplicativo.
|
||||
* **README.md**: Um README curto na raiz do aplicativo com instruções básicas.
|
||||
* **public/**: Uma pasta para armazenar recursos públicos (imagens, fontes, arquivos estáticos) que serão servidos com sua aplicação. Os arquivos colocados aqui são enviados durante a sincronização e ficam acessíveis em tempo de execução.
|
||||
* **src/**: O local principal onde você define seu aplicativo como código
|
||||
|
||||
@@ -53,7 +53,7 @@ Certifique-se de executar o yarn no diretório raiz e depois executar `npx nx se
|
||||
|
||||
#### Lint no Save não funcionando
|
||||
|
||||
This should work out of the box with the Oxc extension (`oxc.oxc-vscode`) installed. Se isso não funcionar, tente adicionar este trecho às suas configurações do vscode (no escopo do contêiner de desenvolvimento):
|
||||
Isso deve funcionar automaticamente com a extensão Oxc (`oxc.oxc-vscode`) instalada. Se isso não funcionar, tente adicionar este trecho às suas configurações do vscode (no escopo do contêiner de desenvolvimento):
|
||||
|
||||
```
|
||||
"editor.codeActionsOnSave": {
|
||||
|
||||
+4
-4
@@ -260,7 +260,7 @@ const StyledButton = styled.button`
|
||||
|
||||
## Impunerea Neprecizării Importurilor de Tip
|
||||
|
||||
Evită importurile de tip. To enforce this standard, an Oxlint rule checks for and reports any type imports. Acest lucru ajută la menținerea consistenței și lizibilității în codul TypeScript.
|
||||
Evită importurile de tip. Pentru a impune acest standard, o regulă Oxlint verifică și raportează orice importuri de tip. Acest lucru ajută la menținerea consistenței și lizibilității în codul TypeScript.
|
||||
|
||||
```tsx
|
||||
// ❌ Rău
|
||||
@@ -281,10 +281,10 @@ import { Meta, StoryObj } from '@storybook/react';
|
||||
|
||||
* **Întreținere**: Îmbunătățește întreținerea bazei de cod, deoarece dezvoltatorii pot identifica și localiza importurile doar de tip când revizuiesc sau modifică codul.
|
||||
|
||||
### Oxlint Rule
|
||||
### Regula Oxlint
|
||||
|
||||
An Oxlint rule, `typescript/consistent-type-imports`, enforces the no-type import standard. Această regulă va genera erori sau avertismente pentru orice încălcare a importurilor de tip.
|
||||
O regulă Oxlint, `typescript/consistent-type-imports`, impune standardul fără importuri de tip. Această regulă va genera erori sau avertismente pentru orice încălcare a importurilor de tip.
|
||||
|
||||
Rețineți că această regulă abordează în mod specific cazurile-limită rare în care apar importuri de tip neintenționate. TypeScript descurajează el însuși această practică, așa cum este menționat în notele de lansare [TypeScript 3.8](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html). În majoritatea situațiilor, nu ar trebui să aveți nevoie de importuri doar de tip.
|
||||
|
||||
To ensure your code complies with this rule, make sure to run Oxlint as part of your development workflow.
|
||||
Pentru a vă asigura că codul respectă această regulă, rulați Oxlint ca parte a fluxului de lucru de dezvoltare.
|
||||
|
||||
+4
-4
@@ -260,7 +260,7 @@ const StyledButton = styled.button`
|
||||
|
||||
## Запрещение импорта типов
|
||||
|
||||
Избегайте импорта типов. To enforce this standard, an Oxlint rule checks for and reports any type imports. Это помогает сохранить согласованность и читаемость кода TypeScript.
|
||||
Избегайте импорта типов. Чтобы обеспечить соблюдение этого стандарта, правило Oxlint проверяет и сообщает о любых импортах с ключевым словом type. Это помогает сохранить согласованность и читаемость кода TypeScript.
|
||||
|
||||
```tsx
|
||||
// ❌ Плохо
|
||||
@@ -281,10 +281,10 @@ import { Meta, StoryObj } from '@storybook/react';
|
||||
|
||||
* **Поддерживаемость**: Это повышает поддерживаемость кодовой базы, поскольку разработчики могут идентифицировать и находить импорты только типов при просмотре или изменении кода.
|
||||
|
||||
### Oxlint Rule
|
||||
### Правило Oxlint
|
||||
|
||||
An Oxlint rule, `typescript/consistent-type-imports`, enforces the no-type import standard. Это правило создаст ошибки или предупреждения для всех нарушений импорта типов.
|
||||
Правило Oxlint `typescript/consistent-type-imports` обеспечивает соблюдение стандарта импортов без ключевого слова type. Это правило создаст ошибки или предупреждения для всех нарушений импорта типов.
|
||||
|
||||
Обратите внимание, что это правило касается редких крайних случаев, когда случаются непреднамеренные импорты типов. Сам TypeScript не рекомендует эту практику, как указано в [примечаниях к выпуску TypeScript 3.8](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html). В большинстве случаев вам не нужно использовать импорты только типов.
|
||||
|
||||
To ensure your code complies with this rule, make sure to run Oxlint as part of your development workflow.
|
||||
Чтобы гарантировать соответствие вашего кода этому правилу, убедитесь, что вы запускаете Oxlint как часть вашего рабочего процесса разработки.
|
||||
|
||||
@@ -54,7 +54,7 @@ git config --global core.autocrlf false
|
||||
|
||||
#### Lint on Save не работает
|
||||
|
||||
This should work out of the box with the Oxc extension (`oxc.oxc-vscode`) installed. Если это не работает, попробуйте добавить это в настройки vscode (на уровне контейнера разработчика):
|
||||
Это должно работать из коробки с установленным расширением Oxc (`oxc.oxc-vscode`). Если это не работает, попробуйте добавить это в настройки vscode (на уровне контейнера разработчика):
|
||||
|
||||
```
|
||||
"editor.codeActionsOnSave": {
|
||||
|
||||
+4
-4
@@ -259,7 +259,7 @@ const StyledButton = styled.button`
|
||||
|
||||
## Tip içermeyen importları zorunlu kılma
|
||||
|
||||
Tip ithalatlarından kaçının. To enforce this standard, an Oxlint rule checks for and reports any type imports. Bu, TypeScript kodunda tutarlılık ve okunabilirliği sağlamaya yardımcı olur.
|
||||
Tip ithalatlarından kaçının. Bu standardı uygulamak için bir Oxlint kuralı, herhangi bir tür içe aktarmayı denetler ve raporlar. Bu, TypeScript kodunda tutarlılık ve okunabilirliği sağlamaya yardımcı olur.
|
||||
|
||||
```tsx
|
||||
// ❌ Kötü
|
||||
@@ -280,10 +280,10 @@ import { Meta, StoryObj } from '@storybook/react';
|
||||
|
||||
* **Bakım Kolaylığı**: Kod tabanının bakımını kolaylaştırır çünkü geliştiriciler kodu incelerken veya değiştirirken yalnızca tip ithalatlarını tanımlayabilir ve bulabilirler.
|
||||
|
||||
### Oxlint Rule
|
||||
### Oxlint Kuralı
|
||||
|
||||
An Oxlint rule, `typescript/consistent-type-imports`, enforces the no-type import standard. Bu kural, herhangi bir tip ithalat ihlali için hata veya uyarı üretir.
|
||||
Bir Oxlint kuralı, `typescript/consistent-type-imports`, tür içe aktarmalarının yasaklanması standardını uygular. Bu kural, herhangi bir tip ithalat ihlali için hata veya uyarı üretir.
|
||||
|
||||
Lütfen unutmayın ki bu kural, istemeden yapılan tip ithalatlarının gerçekleştiği nadir durumları özellikle ele alır. TypeScript'in kendisi, [TypeScript 3.8 sürüm notlarında](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html) belirtildiği gibi, bu uygulamayı caydırmaktadır. Çoğu durumda, yalnızca tip ithalatları kullanmanıza gerek yoktur.
|
||||
|
||||
To ensure your code complies with this rule, make sure to run Oxlint as part of your development workflow.
|
||||
Kodunuzun bu kurala uyduğundan emin olmak için, geliştirme iş akışınızın bir parçası olarak Oxlint'i çalıştırdığınızdan emin olun.
|
||||
|
||||
@@ -99,27 +99,27 @@ my-twenty-app/
|
||||
.oxlintrc.json
|
||||
tsconfig.json
|
||||
README.md
|
||||
public/ # Public assets folder (images, fonts, etc.)
|
||||
public/ # Genel varlıklar klasörü (görseller, yazı tipleri vb.)
|
||||
src/
|
||||
├── application-config.ts # Required - main application configuration
|
||||
├── application-config.ts # Gerekli - ana uygulama yapılandırması
|
||||
├── roles/
|
||||
│ └── default-role.ts # Default role for logic functions
|
||||
│ └── default-role.ts # Mantık fonksiyonları için varsayılan rol
|
||||
├── objects/
|
||||
│ └── example-object.ts # Example custom object definition
|
||||
│ └── example-object.ts # Örnek özel nesne tanımı
|
||||
├── fields/
|
||||
│ └── example-field.ts # Example standalone field definition
|
||||
│ └── example-field.ts # Örnek bağımsız alan tanımı
|
||||
├── logic-functions/
|
||||
│ ├── hello-world.ts # Example logic function
|
||||
│ ├── pre-install.ts # Pre-install logic function
|
||||
│ └── post-install.ts # Post-install logic function
|
||||
│ ├── hello-world.ts # Örnek mantık fonksiyonu
|
||||
│ ├── pre-install.ts # Kurulum öncesi mantık fonksiyonu
|
||||
│ └── post-install.ts # Kurulum sonrası mantık fonksiyonu
|
||||
├── front-components/
|
||||
│ └── hello-world.tsx # Example front component
|
||||
│ └── hello-world.tsx # Örnek ön bileşen
|
||||
├── views/
|
||||
│ └── example-view.ts # Example saved view definition
|
||||
│ └── example-view.ts # Örnek kaydedilmiş görünüm tanımı
|
||||
├── navigation-menu-items/
|
||||
│ └── example-navigation-menu-item.ts # Example sidebar navigation link
|
||||
│ └── example-navigation-menu-item.ts # Örnek kenar çubuğu gezinme bağlantısı
|
||||
└── skills/
|
||||
└── example-skill.ts # Example AI agent skill definition
|
||||
└── example-skill.ts # Örnek yapay zekâ ajanı yetenek tanımı
|
||||
```
|
||||
|
||||
`--minimal` ile yalnızca çekirdek dosyalar oluşturulur (`application-config.ts`, `roles/default-role.ts`, `logic-functions/pre-install.ts` ve `logic-functions/post-install.ts`). `--interactive` ile hangi örnek dosyaların dahil edileceğini siz seçersiniz.
|
||||
@@ -130,7 +130,7 @@ Genel hatlarıyla:
|
||||
* **.gitignore**: `node_modules`, `.yarn`, `generated/` (türlendirilmiş istemci), `dist/`, `build/`, kapsam klasörleri, günlük dosyaları ve `.env*` dosyaları gibi yaygın artifaktları yok sayar.
|
||||
* **yarn.lock**, **.yarnrc.yml**, **.yarn/**: Proje tarafından kullanılan Yarn 4 araç zincirini kilitler ve yapılandırır.
|
||||
* **.nvmrc**: Projenin beklediği Node.js sürümünü sabitler.
|
||||
* **.oxlintrc.json** and **tsconfig.json**: Provide linting and TypeScript configuration for your app's TypeScript sources.
|
||||
* **.oxlintrc.json** ve **tsconfig.json**: Uygulamanızın TypeScript kaynakları için linting ve TypeScript yapılandırması sağlar.
|
||||
* **README.md**: Uygulama kökünde temel talimatların yer aldığı kısa bir README.
|
||||
* **public/**: Uygulamanızla birlikte sunulacak genel varlıkları (görseller, yazı tipleri, statik dosyalar) depolamak için bir klasör. Buraya yerleştirilen dosyalar senkronizasyon sırasında yüklenir ve çalışma zamanında erişilebilir olur.
|
||||
* **src/**: Uygulamanızı kod olarak tanımladığınız ana yer
|
||||
|
||||
@@ -53,7 +53,7 @@ Kök dizinde yarn çalıştırdığınızdan ve ardından `npx nx server:dev twe
|
||||
|
||||
#### Kaydettiğinde lint çalışmıyor
|
||||
|
||||
This should work out of the box with the Oxc extension (`oxc.oxc-vscode`) installed. Bu işe yaramazsa, vscode ayarınıza (geliştirme konteyner kapsamında) bunu eklemeyi deneyin:
|
||||
Bu, kurulu Oxc uzantısıyla (`oxc.oxc-vscode`) kutudan çıktığı anda çalışmalıdır. Bu işe yaramazsa, vscode ayarınıza (geliştirme konteyner kapsamında) bunu eklemeyi deneyin:
|
||||
|
||||
```
|
||||
"editor.codeActionsOnSave": {
|
||||
|
||||
+4
-4
@@ -260,7 +260,7 @@ const StyledButton = styled.button`
|
||||
|
||||
## 强制不允许类型导入
|
||||
|
||||
避免类型导入。 To enforce this standard, an Oxlint rule checks for and reports any type imports. 这有助于在TypeScript代码中保持一致性和可读性。
|
||||
避免类型导入。 为强制实施此标准,Oxlint 规则会检查并报告所有类型导入。 这有助于在TypeScript代码中保持一致性和可读性。
|
||||
|
||||
```tsx
|
||||
// ❌ Bad
|
||||
@@ -281,10 +281,10 @@ import { Meta, StoryObj } from '@storybook/react';
|
||||
|
||||
* **可维护性**:它增强了代码库的可维护性,因为开发人员可以在审查或修改代码时识别和定位仅类型导入。
|
||||
|
||||
### Oxlint Rule
|
||||
### Oxlint 规则
|
||||
|
||||
An Oxlint rule, `typescript/consistent-type-imports`, enforces the no-type import standard. 该规则会生成错误或警告以提示任何类型导入的违规。
|
||||
Oxlint 规则,`typescript/consistent-type-imports`,强制执行不允许类型导入标准。 该规则会生成错误或警告以提示任何类型导入的违规。
|
||||
|
||||
请注意,此规则专门针对在罕见的边缘情况中发生的非预期类型导入。 TypeScript 本身也不鼓励这种做法,如[TypeScript 3.8 发行说明](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html)所述。 在大多数情况下,您不需要使用仅类型导入。
|
||||
|
||||
To ensure your code complies with this rule, make sure to run Oxlint as part of your development workflow.
|
||||
为确保您的代码符合此规则,请确保在开发工作流程中运行 Oxlint。
|
||||
|
||||
@@ -53,7 +53,7 @@ git config --global core.autocrlf false
|
||||
|
||||
#### 保存时 Lint 不起作用
|
||||
|
||||
This should work out of the box with the Oxc extension (`oxc.oxc-vscode`) installed. 如果这不起作用,请尝试将此添加到您的 vscode 设置(在开发容器范围内):
|
||||
这应在安装了 Oxc 扩展 (`oxc.oxc-vscode`) 后即可正常工作。 如果这不起作用,请尝试将此添加到您的 vscode 设置(在开发容器范围内):
|
||||
|
||||
```
|
||||
"editor.codeActionsOnSave": {
|
||||
|
||||
@@ -87,7 +87,7 @@ export class LoginPage {
|
||||
|
||||
async clickLoginWithEmailIfVisible() {
|
||||
try {
|
||||
await this.loginWithEmailButton.click();
|
||||
await this.loginWithEmailButton.click({ timeout: 3000 });
|
||||
} catch {
|
||||
// Button not found - email field might already be visible (SSO-only or different auth flow)
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ test('Sign up with invite link via email', async ({
|
||||
});
|
||||
|
||||
await test.step('Create new account', async () => {
|
||||
await loginPage.clickLoginWithEmail();
|
||||
await loginPage.clickLoginWithEmailIfVisible();
|
||||
await loginPage.typeEmail(email);
|
||||
await loginPage.clickContinueButton();
|
||||
await loginPage.typePassword(process.env.DEFAULT_PASSWORD);
|
||||
|
||||
@@ -34,10 +34,7 @@ test('Create workflow', async ({ page }) => {
|
||||
|
||||
const recordName = page.getByTestId('top-bar-title').getByPlaceholder('Name');
|
||||
await expect(recordName).toBeVisible();
|
||||
await recordName.click();
|
||||
|
||||
const nameInput = page.getByTestId('top-bar-title').getByRole('textbox');
|
||||
await nameInput.fill(NEW_WORKFLOW_NAME);
|
||||
await recordName.fill(NEW_WORKFLOW_NAME);
|
||||
|
||||
const workflowDiagramContainer = page.locator('.react-flow__renderer');
|
||||
await workflowDiagramContainer.click();
|
||||
|
||||
@@ -5,12 +5,13 @@
|
||||
"categories": {
|
||||
"correctness": "off"
|
||||
},
|
||||
"ignorePatterns": [
|
||||
"node_modules"
|
||||
],
|
||||
"ignorePatterns": ["node_modules"],
|
||||
"rules": {
|
||||
"func-style": ["error", "declaration", { "allowArrowFunctions": true }],
|
||||
"no-console": ["warn", { "allow": ["group", "groupCollapsed", "groupEnd"] }],
|
||||
"no-console": [
|
||||
"warn",
|
||||
{ "allow": ["group", "groupCollapsed", "groupEnd"] }
|
||||
],
|
||||
"no-control-regex": "off",
|
||||
"no-debugger": "error",
|
||||
"no-duplicate-imports": "error",
|
||||
@@ -34,31 +35,43 @@
|
||||
|
||||
"typescript/no-redeclare": "error",
|
||||
"typescript/ban-ts-comment": "error",
|
||||
"typescript/consistent-type-imports": ["error", {
|
||||
"prefer": "type-imports",
|
||||
"fixStyle": "inline-type-imports"
|
||||
}],
|
||||
"typescript/consistent-type-imports": [
|
||||
"error",
|
||||
{
|
||||
"prefer": "type-imports",
|
||||
"fixStyle": "inline-type-imports"
|
||||
}
|
||||
],
|
||||
"typescript/explicit-function-return-type": "off",
|
||||
"typescript/explicit-module-boundary-types": "off",
|
||||
"typescript/no-empty-object-type": ["error", {
|
||||
"allowInterfaces": "with-single-extends"
|
||||
}],
|
||||
"typescript/no-empty-object-type": [
|
||||
"error",
|
||||
{
|
||||
"allowInterfaces": "with-single-extends"
|
||||
}
|
||||
],
|
||||
"typescript/no-empty-function": "off",
|
||||
"typescript/no-explicit-any": "off",
|
||||
"typescript/no-unused-vars": ["warn", {
|
||||
"vars": "all",
|
||||
"varsIgnorePattern": "^_",
|
||||
"args": "after-used",
|
||||
"argsIgnorePattern": "^_"
|
||||
}],
|
||||
"typescript/no-unused-vars": [
|
||||
"warn",
|
||||
{
|
||||
"vars": "all",
|
||||
"varsIgnorePattern": "^_",
|
||||
"args": "after-used",
|
||||
"argsIgnorePattern": "^_"
|
||||
}
|
||||
],
|
||||
|
||||
"twenty/enforce-module-boundaries": ["error", {
|
||||
"depConstraints": [
|
||||
{
|
||||
"sourceTag": "scope:backend",
|
||||
"onlyDependOnLibsWithTags": ["scope:shared", "scope:backend"]
|
||||
}
|
||||
]
|
||||
}]
|
||||
"twenty/enforce-module-boundaries": [
|
||||
"error",
|
||||
{
|
||||
"depConstraints": [
|
||||
{
|
||||
"sourceTag": "scope:backend",
|
||||
"onlyDependOnLibsWithTags": ["scope:shared", "scope:backend"]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
src/locales/generated
|
||||
@@ -5,12 +5,12 @@
|
||||
"plugins": [
|
||||
[
|
||||
"@lingui/swc-plugin",
|
||||
{
|
||||
"runtimeModules": {
|
||||
"i18n": ["@lingui/core", "i18n"],
|
||||
"trans": ["@lingui/react", "Trans"]
|
||||
},
|
||||
"stripNonEssentialFields": false
|
||||
{
|
||||
"runtimeModules": {
|
||||
"i18n": ["@lingui/core", "i18n"],
|
||||
"trans": ["@lingui/react", "Trans"]
|
||||
},
|
||||
"stripNonEssentialFields": false
|
||||
}
|
||||
]
|
||||
]
|
||||
|
||||
@@ -13,9 +13,5 @@
|
||||
"src/*": ["./src/*"]
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts",
|
||||
"src/**/*.tsx",
|
||||
"vite.config.ts"
|
||||
]
|
||||
"include": ["src/**/*.ts", "src/**/*.tsx", "vite.config.ts"]
|
||||
}
|
||||
|
||||
@@ -7,10 +7,5 @@
|
||||
"types": ["node", "@nx/react/typings/image.d.ts", "vite/client"]
|
||||
},
|
||||
"include": ["src/**/*.js", "src/**/*.jsx", "src/**/*.ts", "src/**/*.tsx"],
|
||||
"exclude": [
|
||||
"**/*.spec.ts",
|
||||
"**/*.test.ts",
|
||||
"**/*.spec.tsx",
|
||||
"**/*.test.tsx"
|
||||
]
|
||||
"exclude": ["**/*.spec.ts", "**/*.test.ts", "**/*.spec.tsx", "**/*.test.tsx"]
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
src/generated
|
||||
src/generated-metadata
|
||||
src/locales/generated
|
||||
src/testing/mock-data/generated
|
||||
@@ -58,11 +58,6 @@ const config: StorybookConfig = {
|
||||
|
||||
return mergeConfig(viteConfig, {
|
||||
logLevel: 'warn',
|
||||
resolve: {
|
||||
alias: {
|
||||
'@tabler/icons-react': '@tabler/icons-react/dist/esm/icons/index.mjs',
|
||||
},
|
||||
},
|
||||
});
|
||||
},
|
||||
|
||||
|
||||
@@ -77,11 +77,11 @@
|
||||
],
|
||||
"options": {
|
||||
"cwd": "{projectRoot}",
|
||||
"command": "npx oxlint --type-aware -c .oxlintrc.json src/"
|
||||
"command": "npx oxlint --type-aware -c .oxlintrc.json src/ && (prettier src/ --check --cache --cache-location ../../.cache/prettier/{projectRoot} --cache-strategy metadata || (echo 'ERROR: Prettier formatting check failed! Fix with: npx nx lint twenty-front --configuration=fix' && false))"
|
||||
},
|
||||
"configurations": {
|
||||
"fix": {
|
||||
"command": "npx oxlint --type-aware --fix -c .oxlintrc.json src/"
|
||||
"command": "npx oxlint --type-aware --fix -c .oxlintrc.json src/ && prettier src/ --write --cache --cache-location ../../.cache/prettier/{projectRoot} --cache-strategy metadata"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -89,11 +89,11 @@
|
||||
"executor": "nx:run-commands",
|
||||
"options": {
|
||||
"cwd": "{projectRoot}",
|
||||
"command": "FILES=$(git diff --name-only --diff-filter=d main...HEAD -- src/ | grep -E '\\.(ts|tsx)$'); [ -z \"$FILES\" ] && echo 'No changed files.' || npx oxlint --type-aware -c .oxlintrc.json $FILES"
|
||||
"command": "FILES=$(git diff --name-only --diff-filter=d main...HEAD -- src/ | grep -E '\\.(ts|tsx)$'); [ -z \"$FILES\" ] && echo 'No changed files.' || (npx oxlint --type-aware -c .oxlintrc.json $FILES && (prettier --check $FILES || (echo 'ERROR: Prettier formatting check failed! Fix with: npx nx lint:diff-with-main twenty-front --configuration=fix' && false)))"
|
||||
},
|
||||
"configurations": {
|
||||
"fix": {
|
||||
"command": "FILES=$(git diff --name-only --diff-filter=d main...HEAD -- src/ | grep -E '\\.(ts|tsx)$'); [ -z \"$FILES\" ] && echo 'No changed files.' || npx oxlint --type-aware --fix -c .oxlintrc.json $FILES"
|
||||
"command": "FILES=$(git diff --name-only --diff-filter=d main...HEAD -- src/ | grep -E '\\.(ts|tsx)$'); [ -z \"$FILES\" ] && echo 'No changed files.' || (npx oxlint --type-aware --fix -c .oxlintrc.json $FILES && prettier --write $FILES)"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Almal ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Alle Aksies Toegang"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Afkappingsteken en punt - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Toepassing besonderhede"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Goedgekeurde Domeine"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Kan nie skandeer nie? Kopieer die"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Gaan voort met Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Gaan voort sonder sinkronisering"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Verwyder groep"
|
||||
msgid "Delete node"
|
||||
msgstr "Verwyder nodus"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Verwyder hierdie agent"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Verlaagde gradering"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Nederlands"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "Byvoorbeeld backoffice-integrasie"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Voer die geloofsbriewe in om die verbinding te stel"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Voer die inligting in om die verbinding te stel"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Voer die stelselprompt in wat hierdie agent se gedrag en vermoëns definieer"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Fout met die ophaal van werkermetrieke: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Foutillustrasie"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "Kon nie rekords saamvoeg nie. Probeer asseblief weer."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "Kon nie konteks ontleed nie: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Kenmerk Vlag"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Kenmerk Vlaggies & Nabootsing"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Filtreer"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Voer 'n JSON-invoer in, druk dan \"Run\" om jou funksie te toets."
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Installeer en bestuur toepassings"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "Laaste betaling het misluk. Kontak asseblief u admin."
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Laaste betaling het misluk. Werk asseblief u faktureringsbesonderhede by."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Lys geïnstalleerde toepassings. Gebruik die filter om na 'n spesifieke toepassing te soek"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Laai draad"
|
||||
msgid "Loading..."
|
||||
msgstr "Laai tans..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Bestuur jou toepassing"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Bestuur jou internetrekeninge."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Negende"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "Nee"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Geen geleenthede"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Geen geleenthede is nog met hierdie {objectName} geskeduleer nie."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Oorsig"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Regenereer sleutel"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Regenereer Sleutel"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Soek rekords"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "Moet 'n verandering aan 'n objek se etiket ook die API verander?"
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Sorteer per groep"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Bron"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Oortjie Instellings"
|
||||
msgid "Table"
|
||||
msgstr "Tabel"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13180,6 +13353,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13479,6 +13657,17 @@ msgstr "Totale tyd"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Hou jou {intervalLabel} werkvloeikredietverbruik dop."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14013,7 +14202,7 @@ msgid "Upload Files"
|
||||
msgstr "Laai lêers op"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14228,11 +14417,6 @@ msgstr "Verifieer die kode vanaf die app"
|
||||
msgid "Version"
|
||||
msgstr "Weergawe"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14338,6 +14522,11 @@ msgstr "Bekyk Werke"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14614,6 +14803,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14875,6 +15069,12 @@ msgstr "Geel"
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "الكل ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "الوصول إلى كل الإجراءات"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "العلامة الاقتباس والنقطة - {apostropheAndDotExampl
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "تفاصيل التطبيق"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "النطاقات المعتمدة"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "هل لا يمكنك المسح؟ انسخ الـ"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "الاستمرار باستخدام مايكروسوفت"
|
||||
msgid "Continue without sync"
|
||||
msgstr "المتابعة بدون مزامنة"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "حذف المجموعة"
|
||||
msgid "Delete node"
|
||||
msgstr "حذف العقدة"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "حذف هذا الوكيل"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "خفض المستوى"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "الهولندية"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "مثلاً تكامل الدعم الخلفي"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "أدخل بيانات الاعتماد لتعيين الاتصال"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "أدخل المعلومات لتعيين الاتصال"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "أدخل الأمر الموجه للنظام الذي يحدد سلوك وقدرات هذا الوكيل"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "خطأ في جلب مقاييس العامل: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "رسم توضيحي للخطأ"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "فشل دمج السجلات. يُرجى المحاولة مرة أخر
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "فشل في تحليل السياق: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "علم الميزة"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "أعلام الميزات والانتحال"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "تصفية"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "أدخل إدخال JSON ، ثم اضغط على \"تشغيل\" لاخت
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "تثبيت وإدارة التطبيقات"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "فشلت الدفع الأخيرة. يرجى الاتصال بالمسؤ
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "فشلت الدفع الأخيرة. يرجى تحديث تفاصيل الفوترة الخاصة بك."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "اعرض قائمة التطبيقات المثبتة. استخدم عامل التصفية للبحث عن تطبيق محدد"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "جارٍ تحميل السلسلة"
|
||||
msgid "Loading..."
|
||||
msgstr "تحميل..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "إدارة تطبيقك"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "إدارة حساباتك على الإنترنت."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "الاسم"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "تاسع"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "لا"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "لا توجد أحداث"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "لم يتم تحديد أي أحداث مع {objectName} بعد."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "نظرة عامة"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "\\\\"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "\\\\"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "\\\\"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "هل يجب أن يؤدي تغيير مسمى الكائن أيضاً إ
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "فرز حسب المجموعة"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "المصدر"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "إعدادات علامة التبويب"
|
||||
msgid "Table"
|
||||
msgstr "جدول"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13180,6 +13353,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13479,6 +13657,17 @@ msgstr "إجمالي الوقت"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "تتبع استهلاكك من اعتمادات سير العمل {intervalLabel}."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14013,7 +14202,7 @@ msgid "Upload Files"
|
||||
msgstr "رفع الملفات"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14228,11 +14417,6 @@ msgstr "تحقق من الرمز من التطبيق"
|
||||
msgid "Version"
|
||||
msgstr "الإصدار"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14338,6 +14522,11 @@ msgstr "عرض الوظائف"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14612,6 +14801,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14873,6 +15067,12 @@ msgstr "أصفر"
|
||||
msgid "yes"
|
||||
msgstr "نعم"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Tots ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Accés a Totes les Accions"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Apòstrof i punt - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Detalls de l'aplicació"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Dominis Aprovats"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "No pots escanejar? Copia la"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Continua amb Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continua sense sincronització"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Elimina el grup"
|
||||
msgid "Delete node"
|
||||
msgstr "Elimina el node"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Esborra aquest agent"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Baixar de categoria"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Holandès"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "Ex. integració de gestió"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Introdueix les credencials per establir la connexió"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Introdueix la informació per establir la connexió"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Introdueix l'indicador del sistema que defineix el comportament i capacitats d'aquest agent"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Error en obtenir les mètriques del worker: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Il·lustració d'error"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "No s'ha pogut fusionar els registres. Torna-ho a provar."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "No s'ha pogut analitzar el context: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Funcionalitat de bandera"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Funcionalitats i usurpació d'identitat"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Filtrar"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Insereix una entrada JSON, després prem \"Executar\" per provar la teva
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Instal·la i gestiona aplicacions"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "L'últim pagament va fallar. Si us plau, contacta amb el teu administrad
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "L'últim pagament va fallar. Si us plau, actualitza les teves dades de facturació."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Llista les aplicacions instal·lades. Utilitza el filtre per cercar una aplicació concreta"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Carregant el fil"
|
||||
msgid "Loading..."
|
||||
msgstr "Carregant..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Gestiona la teva aplicació"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Gestiona els teus comptes d'Internet."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Novè"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Sense esdeveniments"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Encara no s'han programat esdeveniments amb aquest {objectName}."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Visió general"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Regenera la clau"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Regenera la clau"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Cerca enregistraments"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "¿Canviar l'etiqueta d'un objecte hauria de canviar també l'API?"
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Ordena per grup"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Font"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Configuració de la pestanya"
|
||||
msgid "Table"
|
||||
msgstr "Taula"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13180,6 +13353,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13479,6 +13657,17 @@ msgstr "Temps total"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Segueix el consum de crèdit del flux de treball de {intervalLabel}."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14013,7 +14202,7 @@ msgid "Upload Files"
|
||||
msgstr "Carregar Arxius"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14228,11 +14417,6 @@ msgstr "Verifica el codi de l'aplicació"
|
||||
msgid "Version"
|
||||
msgstr "Versió"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14338,6 +14522,11 @@ msgstr "Veure feines"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14614,6 +14803,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14875,6 +15069,12 @@ msgstr "Groc"
|
||||
msgid "yes"
|
||||
msgstr "sí"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Vše ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Přístup ke všem akcím"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Apostrof a tečka - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Podrobnosti aplikace"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Schválené domény"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Nemůžete skenovat? Zkopírujte"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Pokračovat s Microsoftem"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Pokračovat bez synchronizace"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Smazat skupinu"
|
||||
msgid "Delete node"
|
||||
msgstr "Odstranit uzel"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Smazat tohoto agenta"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Snížení úrovně"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Holandština"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "Např. integrace backoffice"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Zadejte údaje pro nastavení připojení"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Zadejte informace pro nastavení připojení"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Zadejte systémovou výzvu, která definuje chování a schopnosti tohoto agenta."
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Chyba při získávání metrik pracovníka: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Ilustrace chyby"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "Nepodařilo se sloučit záznamy. Zkuste to prosím znovu."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "Nepodařilo se zpracovat kontext: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Příznak funkce"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Příznaky funkcí a Impersonace"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Filtr"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Vložte vstup JSON a pak stiskněte \"Spustit\" pro testování vaší f
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Instalace a správa aplikací"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "Poslední platba selhala. Prosím, kontaktujte svého správce."
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Poslední platba selhala. Prosím, aktualizujte své fakturační údaje."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Seznam nainstalovaných aplikací. Pomocí filtru vyhledejte konkrétní aplikaci"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Načítání vlákna"
|
||||
msgid "Loading..."
|
||||
msgstr "Načítání..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Spravujte svou aplikaci"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Spravujte své internetové účty."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Název"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Devátý"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "Ne"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Žádné události"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "S tímto {objectName} zatím nejsou naplánovány žádné události."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Přehled"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Znovu vygenerujte klíč"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Znovu vygenerujte klíč"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Hledání záznamů"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "Měla by změna popisku objektu změnit také API?"
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Třídit podle skupiny"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Zdroj"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Nastavení karet"
|
||||
msgid "Table"
|
||||
msgstr "Tabulka"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13180,6 +13353,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13479,6 +13657,17 @@ msgstr "Celkový čas"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Sledujte spotřebu kreditů ve svém pracovním postupu na {intervalLabel}."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14013,7 +14202,7 @@ msgid "Upload Files"
|
||||
msgstr "Nahrát soubory"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14228,11 +14417,6 @@ msgstr "Ověřte kód z aplikace"
|
||||
msgid "Version"
|
||||
msgstr "Verze"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14338,6 +14522,11 @@ msgstr "Zobrazit úlohy"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14614,6 +14803,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14875,6 +15069,12 @@ msgstr "Žlutá"
|
||||
msgid "yes"
|
||||
msgstr "ano"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Alle ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Adgang til alle handlinger"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Anførselstegn og punktum - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Applikationsdetaljer"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Godkendte domæner"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Kan ikke scanne? Kopier"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Fortsæt med Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Fortsæt uden synkronisering"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Slet gruppe"
|
||||
msgid "Delete node"
|
||||
msgstr "Slet knude"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Slet denne agent"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Nedgrader"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Hollandsk"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "F.eks. backoffice-integration"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Indtast legitimationsoplysningerne for at indstille forbindelsen"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Indtast oplysningerne for at indstille forbindelsen"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Indtast systemprompten der definerer denne agents adfærd og evner"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Fejl ved hentning af worker-metrics: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Fejlillustration"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "Kunne ikke flette poster. Prøv venligst igen."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "Kunne ikke fortolke kontekst: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Funktion Flag"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Funktioner Flag & Efterligning"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Filtrér"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Indsæt en JSON input, og tryk derefter på \"Kør\" for at teste din fu
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Installer og administrer applikationer"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "Sidste betaling mislykkedes. Kontakt venligst din administrator."
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Sidste betaling mislykkedes. Opdater venligst dine faktureringsoplysninger."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Vis installerede applikationer. Brug filteret til at søge efter en bestemt applikation"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Indlæser tråd"
|
||||
msgid "Loading..."
|
||||
msgstr "Indlæser..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Administrer din app"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Administrer dine internetkonti."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Niende"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "Nej"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Ingen begivenheder"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Der er endnu ikke planlagt nogen begivenheder med denne {objectName}."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Oversigt"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Regenerer nøgle"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Regenerer Nøgle"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Søg poster"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "Skal ændring af et objekts etiket også ændre API'et?"
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Sorter efter gruppe"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Kilde"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Fanens indstillinger"
|
||||
msgid "Table"
|
||||
msgstr "Tabel"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13182,6 +13355,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13481,6 +13659,17 @@ msgstr "Samlet tid"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Følg dit {intervalLabel} workflow kreditforbrug."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14015,7 +14204,7 @@ msgid "Upload Files"
|
||||
msgstr "Upload filer"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14230,11 +14419,6 @@ msgstr "Bekræft koden fra appen"
|
||||
msgid "Version"
|
||||
msgstr "Version"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14340,6 +14524,11 @@ msgstr "Vis Jobs"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14616,6 +14805,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14877,6 +15071,12 @@ msgstr "Gul"
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Alle ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Zugang zu allen Aktionen"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Apostroph und Punkt - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Anwendungsdetails"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Genehmigte Domänen"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Kann nicht gescannt werden? Kopieren Sie das"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Mit Microsoft fortfahren"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Ohne Synchronisierung fortfahren"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Gruppe löschen"
|
||||
msgid "Delete node"
|
||||
msgstr "Knoten löschen"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Diesen Agenten löschen"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Herabstufen"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Niederländisch"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "Z.B. Backoffice-Integration"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Geben Sie die Anmeldedaten ein, um die Verbindung herzustellen"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Geben Sie die Informationen ein, um die Verbindung herzustellen"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Geben Sie den Systemaufforderung ein, der das Verhalten und die Fähigkeiten dieses Agenten definiert"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Fehler beim Abrufen der Worker-Metriken: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Fehlerillustration"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "Zusammenführen der Datensätze fehlgeschlagen. Bitte versuchen Sie es e
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "Kontext konnte nicht geparst werden: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Feature-Flag"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Feature-Flags & Nachahmung"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Filter"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Geben Sie eine JSON-Eingabe ein und drücken Sie \"Ausführen\", um Ihre
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Installieren und Verwalten von Anwendungen"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "Letzte Zahlung fehlgeschlagen. Bitte kontaktieren Sie Ihren Administrato
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Letzte Zahlung fehlgeschlagen. Bitte aktualisieren Sie Ihre Rechnungsdaten."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Installierte Anwendungen auflisten. Verwenden Sie den Filter, um nach einer bestimmten Anwendung zu suchen."
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Thread wird geladen"
|
||||
msgid "Loading..."
|
||||
msgstr "Laden..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Ihre App verwalten"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Verwalten Sie Ihre Internetkonten."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Neunte"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "Nein"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Keine Ereignisse"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Für dieses {objectName} wurden noch keine Ereignisse geplant."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Übersicht"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Schlüssel neu generieren"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Schlüssel regenerieren"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Datensätze suchen"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "Sollte die Änderung eines Objektnamens auch den API-Namen ändern?"
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Nach Gruppe sortieren"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Quelle"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Registerkarteneinstellungen"
|
||||
msgid "Table"
|
||||
msgstr "Tabelle"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13180,6 +13353,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13479,6 +13657,17 @@ msgstr "Gesamtzeit"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Verfolgen Sie Ihren {intervalLabel} Workflow-Guthabenverbrauch."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14013,7 +14202,7 @@ msgid "Upload Files"
|
||||
msgstr "Dateien hochladen"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14228,11 +14417,6 @@ msgstr "Bestätigen Sie den Code von der App"
|
||||
msgid "Version"
|
||||
msgstr "Version"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14338,6 +14522,11 @@ msgstr "Aufgaben anzeigen"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14614,6 +14803,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14875,6 +15069,12 @@ msgstr "Gelb"
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Όλα ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Πρόσβαση σε Όλες τις Ενέργειες"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "«Απόστροφος και τελεία - {apostropheAndDotExample}»
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Λεπτομέρειες εφαρμογής"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Εγκεκριμένοι Τομείς"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Δεν μπορείτε να σαρώσετε; Αντιγράψτε το"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Συνέχεια με τη Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Συνέχεια χωρίς συγχρονισμό"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Διαγραφή ομάδας"
|
||||
msgid "Delete node"
|
||||
msgstr "Διαγραφή κόμβου"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Διαγραφή αυτού του πράκτορα"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Υποβάθμιση"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Ολλανδικά"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "Π.χ. ενσωμάτωση backoffice"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Εισάγετε τα διαπιστευτήρια για να ρυθμ
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Εισάγετε τις πληροφορίες για να ρυθμίσετε τη σύνδεση"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Εισάγετε την προτροπή συστήματος που ορίζει τη συμπεριφορά και τις δυνατότητες αυτού του πράκτορα"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Σφάλμα κατά την ανάκτηση μετρικών εργα
|
||||
msgid "Error illustration"
|
||||
msgstr "Απεικόνιση σφάλματος"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "Αποτυχία συγχώνευσης εγγραφών. Παρακαλ
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "Αποτυχία ανάλυσης πλαισίου: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Δυνατότητα Χαρακτηριστικού"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Δυνατότητες Χαρακτηριστικών & Προσωμοίωση"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Φίλτρο"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Εισάγετε μια είσοδο JSON και, στη συνέχει
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Εγκατάσταση και διαχείριση εφαρμογών"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "Η τελευταία πληρωμή απέτυχε. Παρακαλώ ε
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Η τελευταία πληρωμή απέτυχε. Παρακαλώ ενημερώστε τα στοιχεία χρέωσής σας."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Προβολή εγκατεστημένων εφαρμογών. Χρησιμοποιήστε το φίλτρο για να αναζητήσετε μια συγκεκριμένη εφαρμογή"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Φόρτωση νήματος"
|
||||
msgid "Loading..."
|
||||
msgstr "Φόρτωση..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Διαχειριστείτε την εφαρμογή σας"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Διαχειριστείτε τους λογαριασμούς σας στο διαδίκτυο."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Όνομα"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Ένατος"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "Όχι"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Δεν υπάρχουν συμβάντα"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Δεν έχουν προγραμματιστεί ακόμη συμβάντα με αυτό το {objectName}."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Επισκόπηση"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Επαναπαραγωγή κλειδιού"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Επαναπαραγωγή Κλειδιού"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Αναζήτηση εγγραφών"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12170,6 +12319,11 @@ msgstr "Πρέπει η αλλαγή της ετικέτας ενός αντικ
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12399,8 +12553,11 @@ msgid "Sort By Group"
|
||||
msgstr "Ταξινόμηση ανά Ομάδα"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Πηγή"
|
||||
|
||||
@@ -12884,11 +13041,27 @@ msgstr "Ρυθμίσεις Καρτέλας"
|
||||
msgid "Table"
|
||||
msgstr "Πίνακας"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13184,6 +13357,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13483,6 +13661,17 @@ msgstr "Συνολικός χρόνος"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Παρακολουθήστε την κατανάλωση πιστώσεων της ροής εργασίας σας κατά το {intervalLabel}."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14017,7 +14206,7 @@ msgid "Upload Files"
|
||||
msgstr "Ανέβασμα αρχείων"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14232,11 +14421,6 @@ msgstr "Επαληθεύστε τον κωδικό από την εφαρμογ
|
||||
msgid "Version"
|
||||
msgstr "Έκδοση"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14342,6 +14526,11 @@ msgstr "Προβολή Εργασιών"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14618,6 +14807,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14879,6 +15073,12 @@ msgstr "Κίτρινο"
|
||||
msgid "yes"
|
||||
msgstr "ναι"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1340,6 +1340,16 @@ msgstr "All ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "All Actions Access"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr "All App Registrations"
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr "All application registrations across the platform, including orphaned marketplace apps"
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1742,6 +1752,21 @@ msgstr "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr "App"
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr "App installed on this workspace"
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr "App listed on marketplace"
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr "App removed from marketplace"
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1779,6 +1804,7 @@ msgid "Application details"
|
||||
msgstr "Application details"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr "Application installed successfully."
|
||||
@@ -1829,13 +1855,14 @@ msgstr "Approved Domains"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr "Apps"
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgstr "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr "Apps you've created, registered, or published"
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -2497,8 +2524,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Can't scan? Copy the"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3287,6 +3315,11 @@ msgstr "Continue with Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continue without sync"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4321,6 +4354,11 @@ msgstr "Delete group"
|
||||
msgid "Delete node"
|
||||
msgstr "Delete node"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr "Delete or transfer this app registration"
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4356,11 +4394,6 @@ msgstr "Delete Skill"
|
||||
msgid "Delete this agent"
|
||||
msgstr "Delete this agent"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr "Delete this app"
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4657,6 +4690,7 @@ msgid "Downgrade"
|
||||
msgstr "Downgrade"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4745,7 +4779,7 @@ msgid "Dutch"
|
||||
msgstr "Dutch"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr "e.g. @twentyhq/hello-world"
|
||||
|
||||
@@ -4756,6 +4790,11 @@ msgstr "e.g. @twentyhq/hello-world"
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "E.g. backoffice integration"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr "e.g. my-workspace"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5338,10 +5377,10 @@ msgstr "Enter the credentials to set the connection"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Enter the infos to set the connection"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
msgstr "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr "Enter the npm package name to register as an application."
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
@@ -5349,6 +5388,11 @@ msgstr "Enter the npm package name of the application you want to install."
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5462,6 +5506,11 @@ msgstr "Error fetching worker metrics: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Error illustration"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr "Error installing app"
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5512,6 +5561,11 @@ msgstr "Error uninstalling application."
|
||||
msgid "Error updating app"
|
||||
msgstr "Error updating app"
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr "Error updating marketplace listing"
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6019,6 +6073,11 @@ msgstr "Failed to merge records. Please try again."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "Failed to parse context: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr "Failed to register npm package."
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6050,6 +6109,11 @@ msgstr "Failed to save role permissions: {errorMessage}"
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Failed to save workspace instructions"
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6169,6 +6233,22 @@ msgstr "Feature Flag"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Feature Flags & Impersonation"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr "Featured"
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr "Featured apps are curated. Open a PR to request featured status."
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr "Featured only"
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6308,7 +6388,6 @@ msgstr "Files"
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Filter"
|
||||
@@ -7242,7 +7321,6 @@ msgstr "Insert a JSON input, then press \"Run\" to test your function."
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr "Install"
|
||||
|
||||
@@ -7251,24 +7329,30 @@ msgstr "Install"
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Install and manage applications"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr "Install app"
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
msgstr "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr "Install on this workspace"
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install Stats"
|
||||
msgstr "Install Stats"
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr "Install this app on the current workspace"
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr "Installation"
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr "Installed"
|
||||
|
||||
@@ -7780,11 +7864,6 @@ msgstr "Last payment failed. Please contact your admin."
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Last payment failed. Please update your billing details."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr "latest"
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7977,6 +8056,16 @@ msgstr "list"
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "List installed applications. Use filter to search for a specific application"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr "Listed"
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr "Listed on marketplace"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8080,6 +8169,11 @@ msgstr "Loading thread"
|
||||
msgid "Loading..."
|
||||
msgstr "Loading..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr "Local development"
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8240,6 +8334,11 @@ msgstr "Manage your app"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Manage your internet accounts."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr "Managed by the marketplace catalog sync for npm packages"
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8251,6 +8350,11 @@ msgstr "Manual"
|
||||
msgid "Marketplace"
|
||||
msgstr "Marketplace"
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr "Marketplace Listing"
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8672,6 +8776,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
@@ -8950,6 +9055,8 @@ msgstr "Ninth"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
@@ -9153,6 +9260,11 @@ msgstr "No Events"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "No events have been scheduled with this {objectName} yet."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9994,16 +10106,31 @@ msgstr "Overview"
|
||||
msgid "Owner"
|
||||
msgstr "Owner"
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr "Ownership transferred successfully"
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr "p"
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr "Package"
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr "Package name"
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr "Package registered successfully."
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10799,6 +10926,23 @@ msgstr "Regenerate key"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Regenerate Key"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr "Register"
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr "Register from npm"
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr "Registration failed."
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11577,6 +11721,11 @@ msgstr "Search records"
|
||||
msgid "Search records..."
|
||||
msgstr "Search records..."
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr "Search registrations..."
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12163,6 +12312,11 @@ msgstr "Should changing an object's label also change the API?"
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr "Should changing the label also change the API name?"
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr "show all"
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12392,8 +12546,11 @@ msgid "Sort By Group"
|
||||
msgstr "Sort By Group"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
||||
@@ -12877,11 +13034,27 @@ msgstr "Tab Settings"
|
||||
msgid "Table"
|
||||
msgstr "Table"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr "Tarball upload"
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr "Tarball uploaded but installation failed."
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr "Target relation on Junction Object"
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr "Target workspace subdomain"
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13177,6 +13350,11 @@ msgstr "This action will delete this folder and all {navigationMenuItemCount} na
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13476,6 +13654,17 @@ msgstr "Total time"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Track your {intervalLabel} workflow credit consumption."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr "Transfer"
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr "Transfer ownership"
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14010,7 +14199,7 @@ msgid "Upload Files"
|
||||
msgstr "Upload Files"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr "Upload tarball"
|
||||
@@ -14225,11 +14414,6 @@ msgstr "Verify the code from the app"
|
||||
msgid "Version"
|
||||
msgstr "Version"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr "Version (optional)"
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14335,6 +14519,11 @@ msgstr "View Jobs"
|
||||
msgid "View Logs"
|
||||
msgstr "View Logs"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "View marketplace page"
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14611,6 +14800,11 @@ msgstr "When enabled, new AI models will be available to users by default"
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr "When enabled, newly added models are available to all workspaces by default"
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr "When enabled, this app appears in the marketplace browse page"
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14872,6 +15066,12 @@ msgstr "Yellow"
|
||||
msgid "yes"
|
||||
msgstr "yes"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr "Yes"
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Todos ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Acceso a todas las acciones"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Apóstrofe y punto - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Detalles de la aplicación"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Dominios Aprobados"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "¿No puedes escanear? Copia el"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Continuar con Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continuar sin sincronización"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Eliminar grupo"
|
||||
msgid "Delete node"
|
||||
msgstr "Eliminar nodo"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Eliminar este agente"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Degradar"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Holandés"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "Ej. integración de backoffice"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Ingrese las credenciales para establecer la conexión"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Ingrese la información para establecer la conexión"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Ingrese el aviso del sistema que define el comportamiento y las capacidades de este agente"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Error al obtener métricas del trabajador: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Ilustración de error"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "No se pudieron fusionar los registros. Inténtalo de nuevo."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "No se pudo analizar el contexto: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr "Error al guardar los permisos de rol: {errorMessage}"
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Indicador de característica"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Indicadores de características y suplantación"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Filtro"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Inserte una entrada JSON, luego presione \"Ejecutar\" para probar su fun
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Instalar y gestionar aplicaciones"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "El último pago falló. Por favor, contacte a su administrador."
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "El último pago falló. Por favor, actualice sus datos de facturación."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr "lista"
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Lista las aplicaciones instaladas. Usa el filtro para buscar una aplicación específica"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Cargando hilo"
|
||||
msgid "Loading..."
|
||||
msgstr "Cargando..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Gestiona tu aplicación"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Gestione sus cuentas de internet."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Noveno"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Sin eventos"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Aún no se han programado eventos con este {objectName}."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Resumen"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr "p"
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Regenerar clave"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Regenerar clave"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Buscar registros"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "¿Debería cambiar también el nombre de la API al cambiar la etiqueta d
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Ordenar por grupo"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Fuente"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Configuración de la pestaña"
|
||||
msgid "Table"
|
||||
msgstr "Tabla"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13182,6 +13355,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13481,6 +13659,17 @@ msgstr "Tiempo total"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Rastrea tu consumo de créditos de flujo de trabajo {intervalLabel}."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14015,7 +14204,7 @@ msgid "Upload Files"
|
||||
msgstr "Subir archivos"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14230,11 +14419,6 @@ msgstr "Verificar el código desde la aplicación"
|
||||
msgid "Version"
|
||||
msgstr "Versión"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14340,6 +14524,11 @@ msgstr "Ver trabajos"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14616,6 +14805,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14877,6 +15071,12 @@ msgstr "Amarillo"
|
||||
msgid "yes"
|
||||
msgstr "sí"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Kaikki ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Kaikkien toimintojen käyttöoikeus"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Apostrofi ja piste - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Sovelluksen tiedot"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Hyväksytyt verkkotunnukset"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Et voi skannata? Kopioi"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Jatka Microsoftin avulla"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Jatka ilman synkronointia"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Poista ryhmä"
|
||||
msgid "Delete node"
|
||||
msgstr "Poista solmu"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Poista tämä agentti"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Alentaminen"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Hollanti"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "Esimerkiksi backoffice-integraatio"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Anna tunnistetiedot yhteyden muodostamiseksi"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Anna tiedot yhteyden luomiseksi"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Anna järjestelmän kehote, joka määrittää tämän agentin käyttäytymisen ja ominaisuudet"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Virhe noudettaessa työntekijän mittareita: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Virheen kuvitus"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "Tietueiden yhdistäminen epäonnistui. Yritä uudelleen."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "Kontekstin jäsentäminen epäonnistui: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Ominaisuustunnus"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Ominaisuustunnukset ja teeskentely"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Suodata"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Lisää JSON-syöte ja paina sitten \"Suorita\" testataksesi toimintoasi
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Asenna ja hallinnoi sovelluksia"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "Viimeinen maksu epäonnistui. Ota yhteyttä ylläpitäjääsi."
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Viimeinen maksu epäonnistui. Päivitä laskutustietosi."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Listaa asennetut sovellukset. Käytä suodatinta tietyn sovelluksen etsimiseen"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Ladataan ketjua"
|
||||
msgid "Loading..."
|
||||
msgstr "Ladataan..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Hallitse sovellustasi"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Hallitse internet-tilejäsi."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Yhdeksäs"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "Ei"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Ei tapahtumia"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Tälle kohteelle {objectName} ei ole vielä ajoitettu tapahtumia."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Yleiskatsaus"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Luo avain uudelleen"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Luo API-avain uudelleen"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Hae tietueita"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "Pitäisikö objektin nimilapun muuttaminen vaihtaa myös APIa?"
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Lajittele ryhmän mukaan"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Lähde"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Välilehden asetukset"
|
||||
msgid "Table"
|
||||
msgstr "Taulukko"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13180,6 +13353,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13479,6 +13657,17 @@ msgstr "Aika yhteensä"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Seuraa {intervalLabel} työprosessien krediittien kulutustasi."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14013,7 +14202,7 @@ msgid "Upload Files"
|
||||
msgstr "Lataa tiedostoja"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14228,11 +14417,6 @@ msgstr "Vahvista koodi sovelluksesta"
|
||||
msgid "Version"
|
||||
msgstr "Versio"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14338,6 +14522,11 @@ msgstr "Näytä työt"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14614,6 +14803,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14875,6 +15069,12 @@ msgstr "Keltainen"
|
||||
msgid "yes"
|
||||
msgstr "kyllä"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Tous ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Accès à Toutes les Actions"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Apostrophe et point - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Détails de l'application"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Domaines approuvés"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Impossible de scanner ? Copiez le"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Continuer avec Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continuer sans synchronisation"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Supprimer le groupe"
|
||||
msgid "Delete node"
|
||||
msgstr "Supprimer le nœud"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Supprimer cet agent"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Rétrograder"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Néerlandais"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "Ex. intégration backoffice"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Entrez les identifiants pour établir la connexion"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Entrez les informations pour établir la connexion"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Entrez l'invite système qui définit le comportement et les capacités de cet agent"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Erreur lors de la récupération des métriques du worker : {errorMessag
|
||||
msgid "Error illustration"
|
||||
msgstr "Illustration d'erreur"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "Échec de la fusion des enregistrements. Veuillez réessayer."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "Échec de l'analyse du contexte : {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Drapeau de fonctionnalité"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Drapeaux de fonctionnalité & Usurpation d'identité"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Filtre"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Insérez une entrée JSON, puis appuyez sur « Exécuter » pour tester
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Installer et gérer les applications"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "Le dernier paiement a échoué. Veuillez contacter votre administrateur.
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Le dernier paiement a échoué. Veuillez mettre à jour vos informations de facturation."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Répertoriez les applications installées. Utilisez le filtre pour rechercher une application spécifique."
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Chargement du fil de discussion"
|
||||
msgid "Loading..."
|
||||
msgstr "Chargement..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Gérez votre application"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Gérez vos comptes internet."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Neuvième"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "Non"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Aucun événement"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Aucun événement n'a encore été planifié avec ce {objectName}."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Vue d'ensemble"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Régénérer la clé"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Régénérer la clé"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Rechercher des enregistrements"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "Changer le libellé d'un objet doit-il aussi changer l'API ?"
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Trier par groupe"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Paramètres de l'onglet"
|
||||
msgid "Table"
|
||||
msgstr "Table"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13182,6 +13355,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13481,6 +13659,17 @@ msgstr "Temps total"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Suivez la consommation de crédits de flux de travail {intervalLabel}."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14015,7 +14204,7 @@ msgid "Upload Files"
|
||||
msgstr "Téléverser les fichiers"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14230,11 +14419,6 @@ msgstr "Vérifiez le code depuis l'application"
|
||||
msgid "Version"
|
||||
msgstr "Version"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14340,6 +14524,11 @@ msgstr "Voir les tâches"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14616,6 +14805,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14877,6 +15071,12 @@ msgstr "Jaune"
|
||||
msgid "yes"
|
||||
msgstr "oui"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1345,6 +1345,16 @@ msgstr "כולם ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "גישה לכל הפעולות"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "גרש ונקודה - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "פרטי היישום"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "דומיינים מאושרים"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "לא ניתן לסרוק? העתק את"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "המשך עם מיקרוסופט"
|
||||
msgid "Continue without sync"
|
||||
msgstr "המשך ללא סנכרון"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "מחק קבוצה"
|
||||
msgid "Delete node"
|
||||
msgstr "מחק צומת"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "מחק סוכן זה"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "שדרוג לאחור"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "הולנדית"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "למשל אינטגרציית משרד אחורי"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "הזן את הנתונים האישיים כדי להגדיר את הח
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "הזן את המידע כדי להגדיר את החיבור"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "הזן את הפקודה המערכתית שמגדירה את התנהגות הסוכן ויכולותיו"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "שגיאה באחזור מדדי העובד: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "איור שגיאה"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "מיזוג הרשומות נכשל. נא לנסות שוב."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "פענוח ההקשר נכשל: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "מנה תכונה"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "תכונות תכונה והתנהגות משתמש"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "סינון"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "הזן קלט JSON ולאחר מכן לחץ על \"הפעל\" כדי ל
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "התקן וניהול יישומים"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "התשלום האחרון נכשל. אנא צרו קשר עם המנהל
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "התשלום האחרון נכשל. אנא עדכן את פרטי החיוב שלך."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "הצג את היישומים המותקנים. השתמש במסנן כדי לחפש יישום מסוים."
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "טוען שרשור"
|
||||
msgid "Loading..."
|
||||
msgstr "טוען..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "נהל את היישום שלך"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "נהל את חשבונות האינטרנט שלך."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "שם"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "תשיעי"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "לא"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "אין אירועים"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "עדיין לא נקבעו אירועים עם {objectName} זה."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "סקירה כללית"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "\\"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "\\"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "\\"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "האם שינוי תווית של אובייקט צריך גם לשנו
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "מיין לפי קבוצה"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "מקור"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "הגדרות כרטיסייה"
|
||||
msgid "Table"
|
||||
msgstr "טבלה"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13180,6 +13353,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13479,6 +13657,17 @@ msgstr "זמן כולל"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "עקוב אחר צריכת נקודות העבודה שלך ב{intervalLabel}."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14013,7 +14202,7 @@ msgid "Upload Files"
|
||||
msgstr "העלאת קבצים"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14228,11 +14417,6 @@ msgstr "אמת את הקוד מהאפליקציה"
|
||||
msgid "Version"
|
||||
msgstr "גרסה"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14338,6 +14522,11 @@ msgstr "הצג עבודות"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14614,6 +14803,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14875,6 +15069,12 @@ msgstr "צהוב"
|
||||
msgid "yes"
|
||||
msgstr "כן"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Minden ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Minden Művelet Hozzáférés"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Apostrof és pont - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Alkalmazás részletei"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Jóváhagyott tartományok"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Nem tud beolvasni? Másolja a"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Folytatás Microsofttal"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Folytatás szinkronizálás nélkül"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Csoport törlése"
|
||||
msgid "Delete node"
|
||||
msgstr "Csomópont törlése"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Ennek az ügynöknek a törlése"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Csomagcsökkentés"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Holland"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "P\\. p\\. backoffice integráció"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Adja meg a hitelesítési adatokat a kapcsolat beállításához"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Adja meg az információkat a kapcsolat beállításához"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Adja meg a rendszer parancsát, amely meghatározza ennek az ügynöknek a viselkedését és képességeit"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Hiba a worker metrikák lekérésekor: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Hibaillusztráció"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "A rekordok egyesítése nem sikerült. Kérjük, próbálja újra."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "A kontextus feldolgozása nem sikerült: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Funkció jelölő"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Funkció jelölők és megszemélyesítés"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Szűrő"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Illessz be egy JSON bemenetet, majd kattints a \"Futtatás\" gombra a fu
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Alkalmazások telepítése és kezelése"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "Az utolsó fizetés sikertelen volt. Kérjük, vegye fel a kapcsolatot a
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Az utolsó fizetés sikertelen volt. Kérjük, frissítse a számlázási adatait."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "A telepített alkalmazások listája. Használja a szűrőt egy adott alkalmazás kereséséhez"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Szál betöltése"
|
||||
msgid "Loading..."
|
||||
msgstr "Betöltés..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Alkalmazás kezelése"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Kezeld az internetes fiókjaid."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Név"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Kilencedik"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "Nem"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Nincsenek események"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Ehhez a(z) {objectName} elemhez még nem ütemeztek eseményeket."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Áttekintés"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Kulcs újragenerálása"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Kulcs újragenerálása"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Rekordok keresése"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "Ha megváltozik egy objektum címkéje, akkor az megváltoztatja az API-
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Rendezés csoport szerint"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Forrás"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Fül beállítások"
|
||||
msgid "Table"
|
||||
msgstr "Táblázat"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13180,6 +13353,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13479,6 +13657,17 @@ msgstr "Összes idő"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Kövesse nyomon a(z) {intervalLabel} munkafolyamat kredit felhasználását."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14013,7 +14202,7 @@ msgid "Upload Files"
|
||||
msgstr "Fájlok feltöltése"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14228,11 +14417,6 @@ msgstr "Ellenőrizze a kódot az alkalmazásból"
|
||||
msgid "Version"
|
||||
msgstr "Verzió"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14338,6 +14522,11 @@ msgstr "Állások megtekintése"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14614,6 +14803,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14875,6 +15069,12 @@ msgstr "Sárga"
|
||||
msgid "yes"
|
||||
msgstr "igen"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Tutti ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Accesso a Tutte le Azioni"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Apostrofo e punto - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Dettagli dell'applicazione"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Domini approvati"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Non puoi scansionare? Copia il"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Continua con Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continua senza sincronizzazione"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Elimina gruppo"
|
||||
msgid "Delete node"
|
||||
msgstr "Elimina nodo"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Elimina questo agente"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Downgrade"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Olandese"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "Es. integrazione backoffice"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Inserisci le credenziali per impostare la connessione"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Inserisci le informazioni per impostare la connessione"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Inserisci il prompt di sistema che definisce il comportamento e le capacità di questo agente"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Errore durante il recupero delle metriche del worker: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Illustrazione dell'errore"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "Impossibile unire i record. Per favore riprova."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "Impossibile analizzare il contesto: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Flag delle funzionalità"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Flag delle funzionalità e impersonificazione"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Filtro"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Inserisci un input JSON, quindi premi \"Esegui\" per testare la tua funz
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Installa e gestisci applicazioni"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "Ultimo pagamento non riuscito. Si prega di contattare l'amministratore."
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Ultimo pagamento non riuscito. Si prega di aggiornare i dettagli di fatturazione."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Elenca le applicazioni installate. Usa il filtro per cercare un'applicazione specifica"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Caricamento del thread"
|
||||
msgid "Loading..."
|
||||
msgstr "Caricamento..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Gestisci la tua app"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Gestisci i tuoi account Internet."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Nono"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Nessun evento"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Non sono ancora stati pianificati eventi con questo {objectName}."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Panoramica"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Rigenera chiave"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Rigenera chiave"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Cerca record"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "Cambiare l'etichetta di un oggetto deve cambiare anche il nome dell'API?
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Ordina per gruppo"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Fonte"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Impostazioni scheda"
|
||||
msgid "Table"
|
||||
msgstr "Tabella"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13182,6 +13355,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13481,6 +13659,17 @@ msgstr "Tempo totale"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Monitora il consumo dei crediti del flusso di lavoro {intervalLabel}."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14015,7 +14204,7 @@ msgid "Upload Files"
|
||||
msgstr "Carica file"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14230,11 +14419,6 @@ msgstr "Verifica il codice dall'app"
|
||||
msgid "Version"
|
||||
msgstr "Versione"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14340,6 +14524,11 @@ msgstr "Visualizza lavori"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14616,6 +14805,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14877,6 +15071,12 @@ msgstr "Giallo"
|
||||
msgid "yes"
|
||||
msgstr "sì"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "すべて ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "すべてのアクションへのアクセス"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "アポストロフィーとドット - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "アプリケーション詳細"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "承認されたドメイン"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "スキャンできませんか? コピーしてください"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Microsoftで続行"
|
||||
msgid "Continue without sync"
|
||||
msgstr "同期せずに続行"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "グループを削除"
|
||||
msgid "Delete node"
|
||||
msgstr "ノードを削除"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "このエージェントを削除する"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "ダウングレード"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "オランダ語"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "例:バックオフィス統合"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "接続を設定するための資格情報を入力してください"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "接続を設定するための情報を入力してください"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "このエージェントの動作と機能を定義するシステムプロンプトを入力してください"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "ワーカーのメトリクスの取得中にエラーが発生しまし
|
||||
msgid "Error illustration"
|
||||
msgstr "エラーのイラスト"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "レコードのマージに失敗しました。もう一度お試しく
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "コンテキストの解析に失敗しました: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "機能フラグ"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "機能フラグと偽装"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "フィルター"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "JSON入力を挿入し、「実行」を押して関数をテストし
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "アプリケーションのインストールと管理"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "最終支払いは失敗しました。管理者に連絡してくださ
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "最終支払いは失敗しました。請求先の詳細を更新してください。"
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "インストール済みのアプリケーションを一覧表示します。フィルターを使って特定のアプリケーションを検索できます。"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "スレッドを読み込み中"
|
||||
msgid "Loading..."
|
||||
msgstr "ロード中…"
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "アプリを管理"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "インターネットアカウントを管理"
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "名前"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "第九"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "いいえ"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "イベントなし"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "この{objectName}で予定されたイベントはまだありません。"
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "概要"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "キーを再生成"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "キーを再生成"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "レコードを検索"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "オブジェクトのラベルを変更するとAPIも変更されるべ
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "グループで並べ替え"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "ソース"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "タブ設定"
|
||||
msgid "Table"
|
||||
msgstr "テーブル"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13180,6 +13353,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13479,6 +13657,17 @@ msgstr "合計時間"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "{intervalLabel}のワークフロークレジット消費を追跡します。"
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14013,7 +14202,7 @@ msgid "Upload Files"
|
||||
msgstr "ファイルをアップロード"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14228,11 +14417,6 @@ msgstr "アプリからのコードを確認"
|
||||
msgid "Version"
|
||||
msgstr "バージョン"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14338,6 +14522,11 @@ msgstr "ジョブを表示"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14614,6 +14803,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14875,6 +15069,12 @@ msgstr "黄色"
|
||||
msgid "yes"
|
||||
msgstr "はい"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "전체 ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "모든 작업 액세스"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "아포스트로피와 점 - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "응용 프로그램 세부정보"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "승인된 도메인"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "스캔이 불가능합니까?"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Microsoft로 계속"
|
||||
msgid "Continue without sync"
|
||||
msgstr "동기화 없이 계속"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "그룹 삭제"
|
||||
msgid "Delete node"
|
||||
msgstr "노드 삭제"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "이 에이전트를 삭제하세요"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "다운그레이드"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "네덜란드어"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "예: 백오피스 통합"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "연결 설정을 위해 자격 증명을 입력하세요"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "연결 설정을 위한 정보를 입력하세요"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "이 에이전트의 행동과 능력을 정의하는 시스템 프롬프트를 입력하세요."
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "워커 메트릭을 가져오는 중 오류: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "오류 일러스트레이션"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "레코드 병합에 실패했습니다. 다시 시도해 주세요."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "컨텍스트 구문 분석 실패: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "기능 플래그"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "기능 플래그 및 대행"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "필터"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "JSON 입력을 삽입한 후 \"실행\"을 눌러 기능을 테스트하
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "애플리케이션 설치 및 관리"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "지난 결제에 실패했습니다. 관리자에게 문의하세요."
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "지난 결제에 실패했습니다. 청구 정보를 업데이트하세요."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "설치된 애플리케이션 목록입니다. 특정 애플리케이션을 검색하려면 필터를 사용하세요."
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "스레드 로드 중"
|
||||
msgid "Loading..."
|
||||
msgstr "로딩 중..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "앱 관리"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "인터넷 계정을 관리하세요."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "이름"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "아홉 번째"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "아니요"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "이벤트 없음"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "이 {objectName}에 대해 예약된 이벤트가 아직 없습니다."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "개요"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "키 재생성"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "키 재생성"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "레코드 검색"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "객체의 레이블을 변경할 때 API도 변경되어야 하나요?"
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "그룹별 정렬"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "소스"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "탭 설정"
|
||||
msgid "Table"
|
||||
msgstr "테이블"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13180,6 +13353,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13479,6 +13657,17 @@ msgstr "총 시간"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "{intervalLabel} 워크플로 크레딧 소모량을 추적하세요."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14013,7 +14202,7 @@ msgid "Upload Files"
|
||||
msgstr "파일 업로드"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14228,11 +14417,6 @@ msgstr "앱에서 코드를 확인하세요"
|
||||
msgid "Version"
|
||||
msgstr "버전"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14338,6 +14522,11 @@ msgstr "작업 보기"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14614,6 +14803,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14875,6 +15069,12 @@ msgstr "노란색"
|
||||
msgid "yes"
|
||||
msgstr "예"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Alles ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Toegang tot alle acties"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Apostrof en punt - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Applicatiedetails"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Goedgekeurde Domeinen"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Kan je niet scannen? Kopieer de"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Doorgaan met Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Doorgaan zonder synchronisatie"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Groep verwijderen"
|
||||
msgid "Delete node"
|
||||
msgstr "Knopen verwijderen"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Verwijder deze agent"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Downgrade"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Nederlands"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "Bijv. backoffice-integratie"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Voer de inloggegevens in om de verbinding in te stellen"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Voer de informatie in om de verbinding in te stellen"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Voer de systeemopdracht in die het gedrag en de mogelijkheden van deze agent bepaalt"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Fout bij het ophalen van workerstatistieken: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Foutillustratie"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "Het samenvoegen van records is mislukt. Probeer het opnieuw."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "Het parseren van de context is mislukt: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Functievlag"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Functievlaggen & impersonatie"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Filteren"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Voer een JSON-invoer in en druk op \"Uitvoeren\" om uw functie te testen
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Installeer en beheer toepassingen"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "Laatste betaling mislukt. Neem contact op met uw beheerder."
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Laatste betaling mislukt. Werk uw factureringsgegevens bij."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Geïnstalleerde toepassingen weergeven. Gebruik het filter om naar een specifieke toepassing te zoeken"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Conversatie laden"
|
||||
msgid "Loading..."
|
||||
msgstr "Laden..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Beheer je toepassing"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Beheer uw internetaccounts."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Negende"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "Nee"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Geen evenementen"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Er zijn nog geen evenementen gepland met deze {objectName}."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Overzicht"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Sleutel opnieuw genereren"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Sleutel opnieuw genereren"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Records zoeken"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "Moet het wijzigen van een objectlabel ook de API wijzigen?"
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Sorteren per groep"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Bron"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Tabblad Instellingen"
|
||||
msgid "Table"
|
||||
msgstr "Tableau"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13182,6 +13355,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13481,6 +13659,17 @@ msgstr "Totale tijd"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Volg je {intervalLabel} workflow kredietverbruik."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14015,7 +14204,7 @@ msgid "Upload Files"
|
||||
msgstr "Bestanden Uploaden"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14230,11 +14419,6 @@ msgstr "Verifieer de code vanuit de app"
|
||||
msgid "Version"
|
||||
msgstr "Versie"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14340,6 +14524,11 @@ msgstr "Taken bekijken"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14616,6 +14805,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14877,6 +15071,12 @@ msgstr "Geel"
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Alle ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Tilgang til alle handlinger"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Apostrof og punktum - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Applikasjonsdetaljer"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Godkjente domener"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Kan ikke skanne? Kopier "
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Fortsett med Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Fortsett uten synkronisering"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Slett gruppe"
|
||||
msgid "Delete node"
|
||||
msgstr "Slett node"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Slett denne agenten"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Nedgrader"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Nederlandsk"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "F.eks. backoffice-integrasjon"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Skriv inn legitimasjonen for å sette opp tilkoblingen"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Skriv inn informasjonen for å sette opp tilkoblingen"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Skriv inn systemprompten som definerer denne agentens oppførsel og evner"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Feil ved henting av worker-metrikker: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Feilillustrasjon"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "Kunne ikke slå sammen oppføringer. Prøv igjen."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "Kunne ikke tolke kontekst: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Funksjonsflagg"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Funksjonsflagg & Imitering"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Filtrer"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Sett inn en JSON-inndata, trykk så \"Kjør\" for å teste funksjonen di
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Installer og administrer apper"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "Siste betaling mislyktes. Vennligst kontakt administratoren din."
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Siste betaling mislyktes. Vennligst oppdater faktureringsinformasjonen din."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Laster tråd"
|
||||
msgid "Loading..."
|
||||
msgstr "Laster inn..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr ""
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Administrer internett-kontoene dine."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Niende"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "Nei"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Ingen hendelser"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Ingen hendelser er planlagt med denne {objectName} ennå."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Oversikt"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Generer nøkkel på nytt"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Generer Nøkkel på Nytt"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Søk poster"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "Bør en endring av et objekts etikett også endre API-et?"
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Sorter etter gruppe"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Kilde"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Faneinnstillinger"
|
||||
msgid "Table"
|
||||
msgstr "Tabell"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13180,6 +13353,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13479,6 +13657,17 @@ msgstr "Total tid"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Spor din {intervalLabel} arbeidsflytkredittforbruk."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14013,7 +14202,7 @@ msgid "Upload Files"
|
||||
msgstr "Last opp filer"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14228,11 +14417,6 @@ msgstr "Verifiser koden fra appen"
|
||||
msgid "Version"
|
||||
msgstr "Versjon"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14338,6 +14522,11 @@ msgstr "Vis jobber"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14614,6 +14803,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14875,6 +15069,12 @@ msgstr "Gul"
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Wszystkie ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Dostęp do wszystkich działań"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Apostrof i kropka - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Szczegóły aplikacji"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Zatwierdzone domeny"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Nie można zeskanować? Skopiuj"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Kontynuuj za pomocą Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Kontynuuj bez synchronizacji"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Usuń grupę"
|
||||
msgid "Delete node"
|
||||
msgstr "Usuń węzeł"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Usuń tego agenta"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Zniż"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "holenderski"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "Np. integracja z zapleczem"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Wprowadź dane uwierzytelniające, aby ustawić połączenie"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Wprowadź informacje, aby ustawić połączenie"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Wprowadź polecenie systemowe definiujące zachowanie i możliwości tego agenta"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Błąd pobierania metryk workera: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Ilustracja błędu"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "Nie udało się scalić rekordów. Spróbuj ponownie."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "Nie udało się przetworzyć kontekstu: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Flaga funkcji"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Flagi funkcji i imitacja"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Filtruj"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Wprowadź dane JSON, a następnie naciśnij \"Uruchom\", aby przetestowa
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Zainstaluj i zarządzaj aplikacjami"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "Ostatnia płatność nie powiodła się. Proszę skontaktować się z ad
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Ostatnia płatność nie powiodła się. Proszę zaktualizować swoje dane rozliczeniowe."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Wyświetl zainstalowane aplikacje. Użyj filtra, aby wyszukać konkretną aplikację"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Ładowanie wątku"
|
||||
msgid "Loading..."
|
||||
msgstr "Ładowanie..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Zarządzaj swoją aplikacją"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Zarządzaj swoimi internetowymi kontami."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Nazwa"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Dziewiąty"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "Nie"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Brak wydarzeń"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Z tym {objectName} nie zaplanowano jeszcze żadnych wydarzeń."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Przegląd"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Wygeneruj ponownie klucz"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Wygeneruj ponownie klucz"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Przeszukaj rekordy"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "Czy zmiana etykiety obiektu powinna także zmienić API?"
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Sortuj według grupy"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Źródło"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Ustawienia Zakładki"
|
||||
msgid "Table"
|
||||
msgstr "Tabela"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13180,6 +13353,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13479,6 +13657,17 @@ msgstr "Całkowity czas"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Śledź zużycie kredytów workflow w {intervalLabel}."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14013,7 +14202,7 @@ msgid "Upload Files"
|
||||
msgstr "Prześlij pliki"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14228,11 +14417,6 @@ msgstr "Zweryfikuj kod z aplikacji"
|
||||
msgid "Version"
|
||||
msgstr "Wersja"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14338,6 +14522,11 @@ msgstr "Wyświetl zadania"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14614,6 +14803,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14875,6 +15069,12 @@ msgstr "Żółty"
|
||||
msgid "yes"
|
||||
msgstr "tak"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1340,6 +1340,16 @@ msgstr ""
|
||||
msgid "All Actions Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1742,6 +1752,21 @@ msgstr ""
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1779,6 +1804,7 @@ msgid "Application details"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1829,12 +1855,13 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2497,8 +2524,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3287,6 +3315,11 @@ msgstr ""
|
||||
msgid "Continue without sync"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4321,6 +4354,11 @@ msgstr ""
|
||||
msgid "Delete node"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4356,11 +4394,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4657,6 +4690,7 @@ msgid "Downgrade"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4745,7 +4779,7 @@ msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4756,6 +4790,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5338,9 +5377,9 @@ msgstr ""
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5349,6 +5388,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5462,6 +5506,11 @@ msgstr ""
|
||||
msgid "Error illustration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5512,6 +5561,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6019,6 +6073,11 @@ msgstr ""
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6050,6 +6109,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6169,6 +6233,22 @@ msgstr ""
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6308,7 +6388,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
@@ -7242,7 +7321,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7251,15 +7329,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7267,8 +7339,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7780,11 +7864,6 @@ msgstr ""
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7977,6 +8056,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8080,6 +8169,11 @@ msgstr ""
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8240,6 +8334,11 @@ msgstr ""
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8251,6 +8350,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8672,6 +8776,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -8950,6 +9055,8 @@ msgstr ""
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
@@ -9153,6 +9260,11 @@ msgstr ""
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9994,16 +10106,31 @@ msgstr ""
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10799,6 +10926,23 @@ msgstr ""
|
||||
msgid "Regenerate Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11577,6 +11721,11 @@ msgstr ""
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12163,6 +12312,11 @@ msgstr ""
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12392,8 +12546,11 @@ msgid "Sort By Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
@@ -12877,11 +13034,27 @@ msgstr ""
|
||||
msgid "Table"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13175,6 +13348,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13474,6 +13652,17 @@ msgstr ""
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14008,7 +14197,7 @@ msgid "Upload Files"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14223,11 +14412,6 @@ msgstr ""
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14333,6 +14517,11 @@ msgstr ""
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14607,6 +14796,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14868,6 +15062,12 @@ msgstr ""
|
||||
msgid "yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Todos ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Acesso a Todas as Ações"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Apóstrofo e ponto - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Detalhes da aplicação"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Domínios Aprovados"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Não consegue escanear? Copie o"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Continuar com a Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continuar sem sincronizar"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Excluir grupo"
|
||||
msgid "Delete node"
|
||||
msgstr "Excluir nó"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Excluir este agente"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Downgrade"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Holandês"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "Ex.: integração de backoffice"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Insira as credenciais para configurar a conexão"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Insira as infos para configurar a conexão"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Digite o prompt do sistema que define o comportamento e as capacidades deste agente"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Erro ao buscar métricas do worker: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Ilustração de erro"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "Falha ao mesclar registros. Tente novamente."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "Falha ao analisar o contexto: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Flag de recurso"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Flags de recurso & impersonação"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Filtro"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Insira um JSON de entrada, então pressione \"Executar\" para testar sua
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Instalar e gerenciar aplicativos"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "Último pagamento falhou. Por favor, entre em contato com o seu administ
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Último pagamento falhou. Por favor, atualize suas informações de faturamento."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Liste os aplicativos instalados. Use o filtro para pesquisar um aplicativo específico."
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Carregando tópico"
|
||||
msgid "Loading..."
|
||||
msgstr "Carregando..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Gerencie seu aplicativo"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Gerencie suas contas de internet."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Nono"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "Não"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Nenhum evento"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Ainda não há eventos agendados com este {objectName}."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Visão geral"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Regenerar chave"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Regenerar chave"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Pesquisar registros"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "Alterar o rótulo de um objeto também deve alterar a API?"
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Ordenar por Grupo"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Fonte"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Configurações da Aba"
|
||||
msgid "Table"
|
||||
msgstr "Tabela"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13180,6 +13353,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13479,6 +13657,17 @@ msgstr "Tempo total"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Acompanhe seu consumo {intervalLabel} de créditos de workflows."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14013,7 +14202,7 @@ msgid "Upload Files"
|
||||
msgstr "Fazer upload de Arquivos"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14228,11 +14417,6 @@ msgstr "Verifique o código do app"
|
||||
msgid "Version"
|
||||
msgstr "Versão"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14338,6 +14522,11 @@ msgstr "Visualizar Trabalhos"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14614,6 +14803,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14875,6 +15069,12 @@ msgstr "Amarelo"
|
||||
msgid "yes"
|
||||
msgstr "sim"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Todos ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Acesso a Todas as Ações"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Apóstrofo e ponto - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Detalhes da aplicação"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Domínios Aprovados"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Não consegue escanear? Copie o"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Continuar com a Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continuar sem sincronização"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Eliminar grupo"
|
||||
msgid "Delete node"
|
||||
msgstr "Excluir nó"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Excluir este agente"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Downgrade"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Holandês"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "Ex.: integração de backoffice"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Insira as credenciais para configurar a conexão"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Insira as informações para configurar a conexão"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Insira o prompt do sistema que define o comportamento e as capacidades deste agente"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Erro ao obter métricas do worker: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Ilustração de erro"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "Falha ao fundir registos. Por favor, tente novamente."
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "Falha ao analisar o contexto: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Flag de recurso"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Flags de recurso e Personificação"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Filtro"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Insira uma entrada JSON, depois pressione \"Executar\" para testar sua f
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Instalar e gerenciar aplicações"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "Último pagamento falhou. Por favor, contate o seu administrador."
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Último pagamento falhou. Por favor, atualize seus detalhes de cobrança."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Liste as aplicações instaladas. Use o filtro para pesquisar uma aplicação específica"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "A carregar a conversa"
|
||||
msgid "Loading..."
|
||||
msgstr "Carregando..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Gerencie sua aplicação"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Gerir as suas contas de internet."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Nono"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "Não"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Sem eventos"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Ainda não foram agendados eventos com este {objectName}."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Visão Geral"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Regenerar chave"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Regenerar chave"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Pesquisar registos"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "Alterar o rótulo de um objeto deve também alterar a API?"
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Ordenar por Grupo"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Fonte"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Definições da Aba"
|
||||
msgid "Table"
|
||||
msgstr "Tabela"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13180,6 +13353,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13479,6 +13657,17 @@ msgstr "Tempo total"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Acompanhe seu consumo de créditos de fluxo de trabalho {intervalLabel}."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14013,7 +14202,7 @@ msgid "Upload Files"
|
||||
msgstr "Carregar arquivos"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14228,11 +14417,6 @@ msgstr "Verificar o código do aplicativo"
|
||||
msgid "Version"
|
||||
msgstr "Versão"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14338,6 +14522,11 @@ msgstr "Ver Trabalhos"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14614,6 +14803,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14875,6 +15069,12 @@ msgstr "Amarelo"
|
||||
msgid "yes"
|
||||
msgstr "sim"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
@@ -1345,6 +1345,16 @@ msgstr "Toate ({relationRecordsCount})"
|
||||
msgid "All Actions Access"
|
||||
msgstr "Acces la Toate Acțiunile"
|
||||
|
||||
#. js-lingui-id: s1C/cR
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All App Registrations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZrLLkh
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1747,6 +1757,21 @@ msgstr "Apostrof și punct - {apostropheAndDotExample}"
|
||||
msgid "App"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zL5xow
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KbVpuI
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hwQxsm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App removed from marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2zAy1h
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "App updated"
|
||||
@@ -1784,6 +1809,7 @@ msgid "Application details"
|
||||
msgstr "Detalii aplicație"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1834,12 +1860,13 @@ msgstr "Domenii Aprobate"
|
||||
|
||||
#. js-lingui-id: VDvaN2
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: n++nRq
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created and published"
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
@@ -2502,8 +2529,9 @@ msgid "Can't scan? Copy the"
|
||||
msgstr "Nu poți scana? Copiază"
|
||||
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -3292,6 +3320,11 @@ msgstr "Continuați cu Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continuă fără sincronizare"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -4326,6 +4359,11 @@ msgstr "Șterge grupul"
|
||||
msgid "Delete node"
|
||||
msgstr "Șterge nodul"
|
||||
|
||||
#. js-lingui-id: x9/fRy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete or transfer this app registration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kf0A63
|
||||
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
|
||||
msgid "Delete records"
|
||||
@@ -4361,11 +4399,6 @@ msgstr ""
|
||||
msgid "Delete this agent"
|
||||
msgstr "Șterge acest agent"
|
||||
|
||||
#. js-lingui-id: Lz86s9
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Delete this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T6S2Ns
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Delete this integration"
|
||||
@@ -4662,6 +4695,7 @@ msgid "Downgrade"
|
||||
msgstr "Retrogradare"
|
||||
|
||||
#. js-lingui-id: mzI/c+
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Download"
|
||||
@@ -4750,7 +4784,7 @@ msgid "Dutch"
|
||||
msgstr "Olandeză"
|
||||
|
||||
#. js-lingui-id: 3MYDWJ
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "e.g. @twentyhq/hello-world"
|
||||
msgstr ""
|
||||
|
||||
@@ -4761,6 +4795,11 @@ msgstr ""
|
||||
msgid "E.g. backoffice integration"
|
||||
msgstr "Ex. integrare backoffice"
|
||||
|
||||
#. js-lingui-id: 88vQqv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "e.g. my-workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
@@ -5343,9 +5382,9 @@ msgstr "Introduceți acreditările pentru a stabili conexiunea"
|
||||
msgid "Enter the infos to set the connection"
|
||||
msgstr "Introduceți informațiile pentru a stabili conexiunea"
|
||||
|
||||
#. js-lingui-id: n1dNU/
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Enter the npm package name of the application you want to install."
|
||||
#. js-lingui-id: 2tpV02
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Enter the npm package name to register as an application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3EF9HN
|
||||
@@ -5354,6 +5393,11 @@ msgstr ""
|
||||
msgid "Enter the system prompt that defines this agent's behavior and capabilities"
|
||||
msgstr "Introduceți promptul sistemului care definește comportamentul și capacitățile acestui agent"
|
||||
|
||||
#. js-lingui-id: tEWpbi
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Enter the workspace subdomain to transfer this app to. You will lose access to manage it."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rYIISB
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
msgid "Enter user ID or email address"
|
||||
@@ -5467,6 +5511,11 @@ msgstr "Eroare la preluarea metricilor workerului: {errorMessage}"
|
||||
msgid "Error illustration"
|
||||
msgstr "Ilustrație de eroare"
|
||||
|
||||
#. js-lingui-id: zCb/ve
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error installing app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UJr0dl
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Error Loading Audit Logs"
|
||||
@@ -5517,6 +5566,11 @@ msgstr ""
|
||||
msgid "Error updating app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lX3Yil
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error updating role"
|
||||
@@ -6024,6 +6078,11 @@ msgstr "Nu s-a reușit îmbinarea înregistrărilor. Vă rugăm să încercați
|
||||
msgid "Failed to parse context: {contextValue}"
|
||||
msgstr "Nu s-a putut parsa contextul: {contextValue}"
|
||||
|
||||
#. js-lingui-id: hV6mC1
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Failed to register npm package."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A/P7PX
|
||||
#: src/modules/settings/admin-panel/config-variables/hooks/useConfigVariableActions.ts
|
||||
msgid "Failed to remove override"
|
||||
@@ -6055,6 +6114,11 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LVcnN8
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Failed to transfer ownership. Check that the subdomain is correct."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YzURPo
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update auto-enable setting"
|
||||
@@ -6174,6 +6238,22 @@ msgstr "Steag de caracteristici"
|
||||
msgid "Feature Flags & Impersonation"
|
||||
msgstr "Steaguri de caracteristici și impersonare"
|
||||
|
||||
#. js-lingui-id: FkMol5
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: znbJM3
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Featured apps are curated. Open a PR to request featured status."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F1sJEJ
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "Featured only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2lOBKV
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field"
|
||||
@@ -6313,7 +6393,6 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
msgid "Filter"
|
||||
msgstr "Filtru"
|
||||
@@ -7247,7 +7326,6 @@ msgstr "Introduceți o intrare JSON, apoi apăsați \"Execută\" pentru a testa
|
||||
|
||||
#. js-lingui-id: TKQ7K+
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
@@ -7256,15 +7334,9 @@ msgstr ""
|
||||
msgid "Install and manage applications"
|
||||
msgstr "Instalați și gestionați aplicațiile"
|
||||
|
||||
#. js-lingui-id: gR90Vf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
msgid "Install app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H3eHCv
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Install from npm"
|
||||
#. js-lingui-id: cDDhds
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JXiMtM
|
||||
@@ -7272,8 +7344,20 @@ msgstr ""
|
||||
msgid "Install Stats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FEkwu/
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Install this app on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xry+oU
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQkgKV
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
@@ -7785,11 +7869,6 @@ msgstr "Ultima plată a eșuat. Vă rugăm să contactați administratorul dumne
|
||||
msgid "Last payment failed. Please update your billing details."
|
||||
msgstr "Ultima plată a eșuat. Vă rugăm să actualizați detaliile de facturare."
|
||||
|
||||
#. js-lingui-id: pJxM65
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "latest"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wL3cK8
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
|
||||
@@ -7982,6 +8061,16 @@ msgstr ""
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Listați aplicațiile instalate. Utilizați filtrul pentru a căuta o aplicație specifică"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8085,6 +8174,11 @@ msgstr "Se încarcă firul"
|
||||
msgid "Loading..."
|
||||
msgstr "Se încarcă..."
|
||||
|
||||
#. js-lingui-id: OmWlgF
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Local development"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8NbHF7
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Locale"
|
||||
@@ -8245,6 +8339,11 @@ msgstr "Gestionați aplicația dvs."
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Gestionează-ți conturile de internet."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8256,6 +8355,11 @@ msgstr ""
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H4eHwB
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Marketplace Listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FCc+QF
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
|
||||
msgid "Match {fieldLabel} ({unmatchedCount} Unmatched)"
|
||||
@@ -8677,6 +8781,7 @@ msgstr ""
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Name"
|
||||
msgstr "Nume"
|
||||
|
||||
@@ -8955,6 +9060,8 @@ msgstr "Al nouălea"
|
||||
#. js-lingui-id: 1UzENP
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelUpdateFieldsValueForObject.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelSeeFieldsValueForObject.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "No"
|
||||
msgstr "Nu"
|
||||
|
||||
@@ -9158,6 +9265,11 @@ msgstr "Niciun eveniment"
|
||||
msgid "No events have been scheduled with this {objectName} yet."
|
||||
msgstr "Nu au fost programate încă evenimente cu acest {objectName}."
|
||||
|
||||
#. js-lingui-id: K8KcHw
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "No featured applications found. {nonFeaturedCount} non-featured result(s) available — "
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h+tLhU
|
||||
#: src/modules/page-layout/widgets/field/components/FieldWidget.tsx
|
||||
msgid "No field configured"
|
||||
@@ -9999,16 +10111,31 @@ msgstr "Prezentare generală"
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RWJnRQ
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Ownership transferred successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3tCDg
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "p"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mGYa19
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Package"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VXyQnz
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Package name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BO/Qa
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Package registered successfully."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6WdDG7
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Page"
|
||||
@@ -10804,6 +10931,23 @@ msgstr "Regenerează cheia"
|
||||
msgid "Regenerate Key"
|
||||
msgstr "Regenerează Cheia"
|
||||
|
||||
#. js-lingui-id: fgLNSM
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kbU+zg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsRegisterNpmAppModal.tsx
|
||||
msgid "Register from npm"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cxM2TJ
|
||||
#: src/modules/marketplace/hooks/useRegisterNpmPackage.ts
|
||||
msgid "Registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h9AYFD
|
||||
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
|
||||
msgid "Relation"
|
||||
@@ -11582,6 +11726,11 @@ msgstr "Caută înregistrări"
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wCw+0a
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Search registrations..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YIix5Y
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
msgid "Search..."
|
||||
@@ -12168,6 +12317,11 @@ msgstr "Schimbarea etichetei unui obiect ar trebui să schimbe și API-ul?"
|
||||
msgid "Should changing the label also change the API name?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vbXZ3k
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsAvailableTab.tsx
|
||||
msgid "show all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lSEpDc
|
||||
#: src/modules/object-record/record-group/components/RecordGroupMenuItemDraggable.tsx
|
||||
msgid "Show group {groupValue}"
|
||||
@@ -12397,8 +12551,11 @@ msgid "Sort By Group"
|
||||
msgstr "Sortare după grup"
|
||||
|
||||
#. js-lingui-id: wdxz7K
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableOptionsDropdownContent.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Source"
|
||||
msgstr "Sursa"
|
||||
|
||||
@@ -12882,11 +13039,27 @@ msgstr "Setări Tab"
|
||||
msgid "Table"
|
||||
msgstr "Tabel"
|
||||
|
||||
#. js-lingui-id: HpIrmy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qmwHSv
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Target workspace subdomain"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+s8S+
|
||||
#: src/modules/activities/tasks/components/TaskRow.tsx
|
||||
msgid "Task title"
|
||||
@@ -13180,6 +13353,11 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -13479,6 +13657,17 @@ msgstr "Timp total"
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
msgstr "Urmărește consumul de credite de flux de lucru {intervalLabel}."
|
||||
|
||||
#. js-lingui-id: zPGNJm
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KSnRfc
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
@@ -14013,7 +14202,7 @@ msgid "Upload Files"
|
||||
msgstr "Încărcați fișiere"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
@@ -14228,11 +14417,6 @@ msgstr "Verifică codul din aplicație"
|
||||
msgid "Version"
|
||||
msgstr "Versiune"
|
||||
|
||||
#. js-lingui-id: OVk6Na
|
||||
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
|
||||
msgid "Version (optional)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IHIWR4
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
@@ -14338,6 +14522,11 @@ msgstr "Vizualizare locuri de muncă"
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
|
||||
@@ -14614,6 +14803,11 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -14875,6 +15069,12 @@ msgstr "Galben"
|
||||
msgid "yes"
|
||||
msgstr "da"
|
||||
|
||||
#. js-lingui-id: l75CjT
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y/0uwd
|
||||
#: src/modules/localization/utils/formatDateISOStringToRelativeDate.ts
|
||||
#: src/modules/ai/utils/getDateGroupTitle.ts
|
||||
|
||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user