diff --git a/.env.example b/.env.example index 2b4cd8d36..c3057aaf2 100644 --- a/.env.example +++ b/.env.example @@ -2,6 +2,7 @@ # Required environment variables NEXT_PUBLIC_BASE_URL= # e.g. https://kan.bn +NEXT_PUBLIC_WEBSOCKET_URL= # e.g. wss://ws.kan.bn BETTER_AUTH_SECRET= # Random 32+ char string (can gen with: openssl rand -base64 26 | tr -dc 'a-zA-Z0-9' | head -c 32) # Fill if you want to use an external database @@ -95,3 +96,14 @@ TWITCH_CLIENT_SECRET= APPLE_CLIENT_ID= APPLE_CLIENT_SECRET= APPLE_APP_BUNDLE_IDENTIFIER= + +# WebSocket server (apps/websocket) +WEBSOCKET_PORT=3010 +WEBSOCKET_HOST=0.0.0.0 +WEBSOCKET_PING_MS=30000 +WEBSOCKET_PONG_TIMEOUT_MS=5000 +WEBSOCKET_EVENT_PATH=/internal/events +WEBSOCKET_EVENT_SECRET=change-me-in-production + +# Web app → WebSocket integration +WEBSOCKET_INGEST_URL=http://localhost:3010/internal/events diff --git a/README.md b/README.md index ea4527f9f..8d9980eeb 100644 --- a/README.md +++ b/README.md @@ -168,52 +168,86 @@ pnpm db:migrate pnpm dev ``` +### WebSocket server + +`apps/websocket` is a lightweight Node.js server that bridges tRPC subscriptions over WebSocket connections to the Next.js web app. + +**Purpose:** Delivers real-time board/card updates to connected browser clients via tRPC subscriptions. + +**Local dev:** + +```bash +pnpm --filter @kan/websocket dev +``` + +**Docker:** + +```bash +docker compose up websocket +``` + +**Required env vars** (see [.env.example](.env.example)): +| Variable | Description | Default | +|---|---|---| +| `WEBSOCKET_PORT` | Port the server listens on | `3010` | +| `WEBSOCKET_HOST` | Bind address | `0.0.0.0` | +| `WEBSOCKET_EVENT_SECRET` | Shared secret for the ingest endpoint | — | +| `WEBSOCKET_EVENT_PATH` | HTTP path for server-to-server event ingest | `/internal/events` | +| `NEXT_PUBLIC_WEBSOCKET_URL` | WebSocket URL for the browser client | — | +| `WEBSOCKET_INGEST_URL` | URL the web server POSTs events to | — | + +**How `apps/web` consumes it:** The tRPC client in `apps/web/src/utils/api.ts` uses `wsLink` + `splitLink` to route all `subscription` operations over the WebSocket connection. + +**Server-to-server event ingest:** Other services (or the web server itself) POST JSON to `POST /internal/events` with the `x-websocket-secret` header to fan out events to connected subscribers. + +**Health check:** `GET /health` returns `{"status":"ok"}` with HTTP 200. + ## Environment Variables 🔐 -| Variable | Description | Required | Example | -| ----------------------------------------- | --------------------------------------------------------- | ------------------------------------- | ----------------------------------------------------------- | -| `POSTGRES_URL` | PostgreSQL connection URL | To use external database | `postgres://user:pass@localhost:5432/db` | -| `REDIS_URL` | Redis connection URL | For rate limiting (optional) | `redis://localhost:6379` or `redis://redis:6379` (Docker) | -| `EMAIL_FROM` | Sender email address | For Email | `"Kan "` | -| `SMTP_HOST` | SMTP server hostname | For Email | `smtp.resend.com` | -| `SMTP_PORT` | SMTP server port | For Email | `465` | -| `SMTP_USER` | SMTP username/email | No | `resend` | -| `SMTP_PASSWORD` | SMTP password/token | No | `re_xxxx` | -| `SMTP_SECURE` | Use secure SMTP connection (defaults to true if not set) | For Email | `true` | -| `SMTP_REJECT_UNAUTHORIZED` | Reject invalid certificates (defaults to true if not set) | For Email | `false` | -| `NEXT_PUBLIC_DISABLE_EMAIL` | To disable all email features | For Email | `true` | -| `NEXT_PUBLIC_BASE_URL` | Base URL of your installation | Yes | `http://localhost:3000` | -| `NEXT_API_BODY_SIZE_LIMIT` | Maximum API request body size (defaults to 1mb) | No | `50mb` | -| `BETTER_AUTH_ALLOWED_DOMAINS` | Comma-separated list of allowed domains for OIDC logins | For OIDC/Social login | `example.com,subsidiary.com` | -| `BETTER_AUTH_SECRET` | Auth encryption secret | Yes | Random 32+ char string | -| `BETTER_AUTH_TRUSTED_ORIGINS` | Allowed callback origins | No | `http://localhost:3000,http://localhost:3001` | -| `GOOGLE_CLIENT_ID` | Google OAuth client ID | For Google login | `xxx.apps.googleusercontent.com` | -| `GOOGLE_CLIENT_SECRET` | Google OAuth client secret | For Google login | `xxx` | -| `DISCORD_CLIENT_ID` | Discord OAuth client ID | For Discord login | `xxx` | -| `DISCORD_CLIENT_SECRET` | Discord OAuth client secret | For Discord login | `xxx` | -| `GITHUB_CLIENT_ID` | GitHub OAuth client ID | For GitHub login | `xxx` | -| `GITHUB_CLIENT_SECRET` | GitHub OAuth client secret | For GitHub login | `xxx` | -| `OIDC_CLIENT_ID` | Generic OIDC client ID | For OIDC login | `xxx` | -| `OIDC_CLIENT_SECRET` | Generic OIDC client secret | For OIDC login | `xxx` | -| `OIDC_DISCOVERY_URL` | OIDC discovery URL | For OIDC login | `https://auth.example.com/.well-known/openid-configuration` | -| `TRELLO_APP_API_KEY` | Trello app API key | For Trello import | `xxx` | -| `TRELLO_APP_API_SECRET` | Trello app API secret | For Trello import | `xxx` | -| `S3_REGION` | S3 storage region | For file uploads | `WEUR` | -| `S3_ENDPOINT` | S3 endpoint URL | For file uploads | `https://xxx.r2.cloudflarestorage.com` | -| `S3_ACCESS_KEY_ID` | S3 access key | For file uploads (optional with IRSA) | `xxx` | -| `S3_SECRET_ACCESS_KEY` | S3 secret key | For file uploads (optional with IRSA) | `xxx` | -| `S3_FORCE_PATH_STYLE` | Use path-style URLs for S3 | For file uploads | `true` | -| `S3_AVATAR_UPLOAD_LIMIT` | Maximum avatar file size in bytes | For file uploads | `2097152` (2MB) | -| `NEXT_PUBLIC_STORAGE_URL` | Storage service URL | For file uploads | `https://storage.kanbn.com` | -| `NEXT_PUBLIC_STORAGE_DOMAIN` | Storage domain name | For file uploads | `kanbn.com` | -| `NEXT_PUBLIC_USE_VIRTUAL_HOSTED_URLS` | Use virtual-hosted style URLs (bucket.domain.com) | For file uploads (optional) | `true` | -| `NEXT_PUBLIC_AVATAR_BUCKET_NAME` | S3 bucket name for avatars | For file uploads | `avatars` | -| `NEXT_PUBLIC_ATTACHMENTS_BUCKET_NAME` | S3 bucket name for attachments | For file uploads | `attachments` | -| `NEXT_PUBLIC_ALLOW_CREDENTIALS` | Allow email & password login | For authentication | `true` | -| `NEXT_PUBLIC_DISABLE_SIGN_UP` | Disable sign up | For authentication | `false` | -| `NEXT_PUBLIC_WHITE_LABEL_HIDE_POWERED_BY` | Hide “Powered by kan.bn” on public boards (self-host) | For white labelling | `true` | -| `KAN_ADMIN_API_KEY` | Admin API key for stats and admin endpoints | For admin/monitoring | `your-secret-admin-key` | -| `LOG_LEVEL` | Log verbosity level (debug, info, warn, error) | No (defaults to debug in dev, info in prod) | `info` | +| Variable | Description | Required | Example | +| ----------------------------------------- | --------------------------------------------------------- | ------------------------------------------- | ----------------------------------------------------------- | +| `POSTGRES_URL` | PostgreSQL connection URL | To use external database | `postgres://user:pass@localhost:5432/db` | +| `REDIS_URL` | Redis connection URL | For rate limiting (optional) | `redis://localhost:6379` or `redis://redis:6379` (Docker) | +| `EMAIL_FROM` | Sender email address | For Email | `"Kan "` | +| `SMTP_HOST` | SMTP server hostname | For Email | `smtp.resend.com` | +| `SMTP_PORT` | SMTP server port | For Email | `465` | +| `SMTP_USER` | SMTP username/email | No | `resend` | +| `SMTP_PASSWORD` | SMTP password/token | No | `re_xxxx` | +| `SMTP_SECURE` | Use secure SMTP connection (defaults to true if not set) | For Email | `true` | +| `SMTP_REJECT_UNAUTHORIZED` | Reject invalid certificates (defaults to true if not set) | For Email | `false` | +| `NEXT_PUBLIC_DISABLE_EMAIL` | To disable all email features | For Email | `true` | +| `NEXT_PUBLIC_BASE_URL` | Base URL of your installation | Yes | `http://localhost:3000` | +| `NEXT_API_BODY_SIZE_LIMIT` | Maximum API request body size (defaults to 1mb) | No | `50mb` | +| `BETTER_AUTH_ALLOWED_DOMAINS` | Comma-separated list of allowed domains for OIDC logins | For OIDC/Social login | `example.com,subsidiary.com` | +| `BETTER_AUTH_SECRET` | Auth encryption secret | Yes | Random 32+ char string | +| `BETTER_AUTH_TRUSTED_ORIGINS` | Allowed callback origins | No | `http://localhost:3000,http://localhost:3001` | +| `GOOGLE_CLIENT_ID` | Google OAuth client ID | For Google login | `xxx.apps.googleusercontent.com` | +| `GOOGLE_CLIENT_SECRET` | Google OAuth client secret | For Google login | `xxx` | +| `DISCORD_CLIENT_ID` | Discord OAuth client ID | For Discord login | `xxx` | +| `DISCORD_CLIENT_SECRET` | Discord OAuth client secret | For Discord login | `xxx` | +| `GITHUB_CLIENT_ID` | GitHub OAuth client ID | For GitHub login | `xxx` | +| `GITHUB_CLIENT_SECRET` | GitHub OAuth client secret | For GitHub login | `xxx` | +| `OIDC_CLIENT_ID` | Generic OIDC client ID | For OIDC login | `xxx` | +| `OIDC_CLIENT_SECRET` | Generic OIDC client secret | For OIDC login | `xxx` | +| `OIDC_DISCOVERY_URL` | OIDC discovery URL | For OIDC login | `https://auth.example.com/.well-known/openid-configuration` | +| `TRELLO_APP_API_KEY` | Trello app API key | For Trello import | `xxx` | +| `TRELLO_APP_API_SECRET` | Trello app API secret | For Trello import | `xxx` | +| `S3_REGION` | S3 storage region | For file uploads | `WEUR` | +| `S3_ENDPOINT` | S3 endpoint URL | For file uploads | `https://xxx.r2.cloudflarestorage.com` | +| `S3_ACCESS_KEY_ID` | S3 access key | For file uploads (optional with IRSA) | `xxx` | +| `S3_SECRET_ACCESS_KEY` | S3 secret key | For file uploads (optional with IRSA) | `xxx` | +| `S3_FORCE_PATH_STYLE` | Use path-style URLs for S3 | For file uploads | `true` | +| `S3_AVATAR_UPLOAD_LIMIT` | Maximum avatar file size in bytes | For file uploads | `2097152` (2MB) | +| `NEXT_PUBLIC_STORAGE_URL` | Storage service URL | For file uploads | `https://storage.kanbn.com` | +| `NEXT_PUBLIC_STORAGE_DOMAIN` | Storage domain name | For file uploads | `kanbn.com` | +| `NEXT_PUBLIC_USE_VIRTUAL_HOSTED_URLS` | Use virtual-hosted style URLs (bucket.domain.com) | For file uploads (optional) | `true` | +| `NEXT_PUBLIC_AVATAR_BUCKET_NAME` | S3 bucket name for avatars | For file uploads | `avatars` | +| `NEXT_PUBLIC_ATTACHMENTS_BUCKET_NAME` | S3 bucket name for attachments | For file uploads | `attachments` | +| `NEXT_PUBLIC_ALLOW_CREDENTIALS` | Allow email & password login | For authentication | `true` | +| `NEXT_PUBLIC_DISABLE_SIGN_UP` | Disable sign up | For authentication | `false` | +| `NEXT_PUBLIC_WHITE_LABEL_HIDE_POWERED_BY` | Hide “Powered by kan.bn” on public boards (self-host) | For white labelling | `true` | +| `KAN_ADMIN_API_KEY` | Admin API key for stats and admin endpoints | For admin/monitoring | `your-secret-admin-key` | +| `LOG_LEVEL` | Log verbosity level (debug, info, warn, error) | No (defaults to debug in dev, info in prod) | `info` | See `.env.example` for a complete list of supported environment variables. diff --git a/apps/web/src/assets/bell-dark.json b/apps/web/src/assets/bell-dark.json new file mode 100644 index 000000000..56d4c9950 --- /dev/null +++ b/apps/web/src/assets/bell-dark.json @@ -0,0 +1 @@ +{"v":"5.12.1","fr":60,"ip":0,"op":90,"w":500,"h":500,"nm":"system-regular-46-notification-bell","ddd":0,"assets":[{"id":"comp_1","nm":"hover-bell","fr":60,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":".primary.design","cl":"primary design","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.231],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.313],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":7.041,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":19,"s":[-53]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":29,"s":[-20]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":39,"s":[-62]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":49,"s":[-20]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":58,"s":[-62]},{"i":{"x":[0.283],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":69.713,"s":[14]},{"t":79,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.231,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[249.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.313,"y":1},"o":{"x":0.333,"y":0},"t":7.041,"s":[269.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19,"s":[111.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.313,"y":1},"o":{"x":0.333,"y":0},"t":29,"s":[121.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":39,"s":[111.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":49,"s":[121.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[111.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.283,"y":1},"o":{"x":0.333,"y":0},"t":69.713,"s":[261.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"t":79,"s":[249.998,67.334,0]}],"ix":2,"l":2},"a":{"a":0,"k":[249.998,67.334,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,6.468],[0,0],[60.406,0],[0,0],[0,-60.406],[0,0],[2.893,-5.786],[0,0],[0,0]],"o":[[-2.893,-5.786],[0,0],[0,-60.406],[0,0],[-60.406,0],[0,0],[0,6.468],[0,0],[0,0],[0,0]],"v":[[113.773,55.671],[109.375,37.038],[109.375,-20.834],[0.001,-130.21],[-0.001,-130.21],[-109.375,-20.834],[-109.375,37.038],[-113.773,55.671],[-151.042,130.21],[151.042,130.21]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3,"x":"var $bm_rt;\n$bm_rt = comp('system-regular-46-notification-bell').layer('control').effect('primary')('Color');"},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":31.3,"ix":5},"lc":2,"lj":2,"bm":0,"nm":".primary","mn":"ADBE Vector Graphic - Stroke","hd":false,"cl":"primary"},{"ty":"tr","p":{"a":0,"k":[249.998,229.166],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,-20.832],[0,20.832]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3,"x":"var $bm_rt;\n$bm_rt = comp('system-regular-46-notification-bell').layer('control').effect('primary')('Color');"},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":31.3,"ix":5},"lc":2,"lj":2,"bm":0,"nm":".primary","mn":"ADBE Vector Graphic - Stroke","hd":false,"cl":"primary"},{"ty":"tr","p":{"a":0,"k":[249.998,78.125],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":1,"op":90,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":".primary.design","cl":"primary design","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":11,"s":[27]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[-26]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[29]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[-28]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[29]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[-28]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[29]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":83,"s":[-6]},{"t":90,"s":[0]}],"ix":10},"p":{"a":0,"k":[249.998,182.041,0],"ix":2,"l":2},"a":{"a":0,"k":[0,-219,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-25.889,0],[0,25.889],[0,0]],"o":[[0,0],[0,25.889],[25.888,0],[0,0],[0,0]],"v":[[-46.751,-119.666],[-46.875,-5.21],[0.001,41.666],[46.875,-5.21],[46.998,-119.666]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3,"x":"var $bm_rt;\n$bm_rt = comp('system-regular-46-notification-bell').layer('control').effect('primary')('Color');"},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":31.3,"ix":5},"lc":2,"lj":2,"bm":0,"nm":".primary","mn":"ADBE Vector Graphic - Stroke","hd":false,"cl":"primary"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":1,"s":[23]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":11,"s":[33]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":18,"s":[22.538]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[21]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":28,"s":[22.538]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[33]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":37,"s":[22.538]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[21]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":47,"s":[22.538]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[33]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":57,"s":[22.538]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[21]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67,"s":[22.538]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[33]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":78,"s":[22.538]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":83,"s":[21]},{"t":90,"s":[22.538]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":11,"s":[79]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":18,"s":[77.077]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[68]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":28,"s":[77.077]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[79]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":37,"s":[77.077]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[68]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":47,"s":[77.077]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[79]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":57,"s":[77.077]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[68]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67,"s":[77.077]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[79]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":78,"s":[77.077]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":83,"s":[75]},{"t":90,"s":[77.077]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":1,"op":90,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":".primary.design","cl":"primary design","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[250.038,250.002,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[2083,2083,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0.43],[0,0],[-2.48,0],[0,-2.48],[0,0],[-0.19,-0.38],[0,0]],"o":[[0,0],[0.19,-0.38],[0,0],[0,-2.48],[2.48,0],[0,0],[0,0.42],[0,0],[0,0]],"v":[[-6.042,4.5],[-4.792,2.01],[-4.502,0.78],[-4.502,-2],[-0.002,-6.5],[4.498,-2],[4.498,0.78],[4.788,2.01],[6.038,4.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0.19],[0,0],[2.96,0.37],[0,0],[0.41,0],[0,-0.41],[0,0],[0,-3.05],[0,0],[0.08,-0.17],[0,0],[-0.13,-0.22],[-0.26,0],[0,0],[-0.14,0.23],[0.12,0.23]],"o":[[-0.08,-0.18],[0,0],[0,-3.05],[0,0],[0,-0.41],[-0.41,0],[0,0],[-2.96,0.37],[0,0],[0,0.19],[0,0],[-0.12,0.23],[0.14,0.22],[0,0],[0.26,0],[0.14,-0.22],[0,0]],"v":[[6.128,1.34],[5.998,0.78],[5.998,-2],[0.748,-7.95],[0.748,-9.25],[-0.002,-10],[-0.752,-9.25],[-0.752,-7.95],[-6.002,-2],[-6.002,0.78],[-6.132,1.34],[-7.922,4.92],[-7.892,5.65],[-7.252,6],[7.248,6],[7.888,5.64],[7.918,4.91]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4,"x":"var $bm_rt;\n$bm_rt = comp('system-regular-46-notification-bell').layer('control').effect('primary')('Color');"},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":".primary","mn":"ADBE Vector Graphic - Fill","hd":false,"cl":"primary"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":".primary.design","cl":"primary design","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[250.038,250.002,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[2083,2083,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.83,0],[0,0.83],[0,0],[0,0]],"o":[[0,0.83],[-0.83,0],[0,0],[0,0],[0,0]],"v":[[1.498,7],[-0.002,8.5],[-1.502,7],[-1.501,5.544],[1.499,5.544]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.65,0],[0,1.65],[0,0]],"o":[[0,0],[0,1.65],[1.65,0],[0,0],[0,0]],"v":[[-3.001,5.088],[-3.002,7],[-0.002,10],[2.998,7],[2.999,5.088]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4,"x":"var $bm_rt;\n$bm_rt = comp('system-regular-46-notification-bell').layer('control').effect('primary')('Color');"},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":".primary","mn":"ADBE Vector Graphic - Fill","hd":false,"cl":"primary"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":".primary.design","cl":"primary design","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[250.038,250.002,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[2083,2083,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0.43],[0,0],[-2.48,0],[0,-2.48],[0,0],[-0.19,-0.38],[0,0]],"o":[[0,0],[0.19,-0.38],[0,0],[0,-2.48],[2.48,0],[0,0],[0,0.42],[0,0],[0,0]],"v":[[-6.042,4.5],[-4.792,2.01],[-4.502,0.78],[-4.502,-2],[-0.002,-6.5],[4.498,-2],[4.498,0.78],[4.788,2.01],[6.038,4.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0.19],[0,0],[2.96,0.37],[0,0],[0.41,0],[0,-0.41],[0,0],[0,-3.05],[0,0],[0.08,-0.17],[0,0],[-0.13,-0.22],[-0.26,0],[0,0],[-0.14,0.23],[0.12,0.23]],"o":[[-0.08,-0.18],[0,0],[0,-3.05],[0,0],[0,-0.41],[-0.41,0],[0,0],[-2.96,0.37],[0,0],[0,0.19],[0,0],[-0.12,0.23],[0.14,0.22],[0,0],[0.26,0],[0.14,-0.22],[0,0]],"v":[[6.128,1.34],[5.998,0.78],[5.998,-2],[0.748,-7.95],[0.748,-9.25],[-0.002,-10],[-0.752,-9.25],[-0.752,-7.95],[-6.002,-2],[-6.002,0.78],[-6.132,1.34],[-7.922,4.92],[-7.892,5.65],[-7.252,6],[7.248,6],[7.888,5.64],[7.918,4.91]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4,"x":"var $bm_rt;\n$bm_rt = comp('system-regular-46-notification-bell').layer('control').effect('primary')('Color');"},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":".primary","mn":"ADBE Vector Graphic - Fill","hd":false,"cl":"primary"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":90,"op":300,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":".primary.design","cl":"primary design","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[250.038,250.002,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[2083,2083,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.83,0],[0,0.83],[0,0],[0,0]],"o":[[0,0.83],[-0.83,0],[0,0],[0,0],[0,0]],"v":[[1.498,7],[-0.002,8.5],[-1.502,7],[-1.501,5.544],[1.499,5.544]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.65,0],[0,1.65],[0,0]],"o":[[0,0],[0,1.65],[1.65,0],[0,0],[0,0]],"v":[[-3.001,5.088],[-3.002,7],[-0.002,10],[2.998,7],[2.999,5.088]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4,"x":"var $bm_rt;\n$bm_rt = comp('system-regular-46-notification-bell').layer('control').effect('primary')('Color');"},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":".primary","mn":"ADBE Vector Graphic - Fill","hd":false,"cl":"primary"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":90,"op":300,"st":0,"ct":1,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"control","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ef":[{"ty":5,"nm":"primary","np":3,"mn":"ADBE Color Control","ix":1,"en":1,"ef":[{"ty":2,"nm":"Color","mn":"ADBE Color Control-0001","ix":1,"v":{"a":0,"k":[1,1,1],"ix":1}}]}],"ip":0,"op":291,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"hover-bell","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[250,250,0],"ix":2,"l":2},"a":{"a":0,"k":[250,250,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":500,"h":500,"ip":0,"op":100,"st":0,"bm":0}],"markers":[{"tm":0,"cm":"default:hover-bell","dr":90}],"props":{}} \ No newline at end of file diff --git a/apps/web/src/assets/bell-light.json b/apps/web/src/assets/bell-light.json new file mode 100644 index 000000000..17592a4d5 --- /dev/null +++ b/apps/web/src/assets/bell-light.json @@ -0,0 +1 @@ +{"v":"5.12.1","fr":60,"ip":0,"op":90,"w":500,"h":500,"nm":"system-regular-46-notification-bell","ddd":0,"assets":[{"id":"comp_1","nm":"hover-bell","fr":60,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":".primary.design","cl":"primary design","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.231],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.313],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":7.041,"s":[5]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":19,"s":[-53]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":29,"s":[-20]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":39,"s":[-62]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":49,"s":[-20]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":58,"s":[-62]},{"i":{"x":[0.283],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":69.713,"s":[14]},{"t":79,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.231,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[249.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.313,"y":1},"o":{"x":0.333,"y":0},"t":7.041,"s":[269.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19,"s":[111.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.313,"y":1},"o":{"x":0.333,"y":0},"t":29,"s":[121.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":39,"s":[111.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":49,"s":[121.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[111.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.283,"y":1},"o":{"x":0.333,"y":0},"t":69.713,"s":[261.998,67.334,0],"to":[0,0,0],"ti":[0,0,0]},{"t":79,"s":[249.998,67.334,0]}],"ix":2,"l":2},"a":{"a":0,"k":[249.998,67.334,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,6.468],[0,0],[60.406,0],[0,0],[0,-60.406],[0,0],[2.893,-5.786],[0,0],[0,0]],"o":[[-2.893,-5.786],[0,0],[0,-60.406],[0,0],[-60.406,0],[0,0],[0,6.468],[0,0],[0,0],[0,0]],"v":[[113.773,55.671],[109.375,37.038],[109.375,-20.834],[0.001,-130.21],[-0.001,-130.21],[-109.375,-20.834],[-109.375,37.038],[-113.773,55.671],[-151.042,130.21],[151.042,130.21]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.067,0.067,0.067,1],"ix":3,"x":"var $bm_rt;\n$bm_rt = comp('system-regular-46-notification-bell').layer('control').effect('primary')('Color');"},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":31.3,"ix":5},"lc":2,"lj":2,"bm":0,"nm":".primary","mn":"ADBE Vector Graphic - Stroke","hd":false,"cl":"primary"},{"ty":"tr","p":{"a":0,"k":[249.998,229.166],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[0,-20.832],[0,20.832]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.067,0.067,0.067,1],"ix":3,"x":"var $bm_rt;\n$bm_rt = comp('system-regular-46-notification-bell').layer('control').effect('primary')('Color');"},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":31.3,"ix":5},"lc":2,"lj":2,"bm":0,"nm":".primary","mn":"ADBE Vector Graphic - Stroke","hd":false,"cl":"primary"},{"ty":"tr","p":{"a":0,"k":[249.998,78.125],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":1,"op":90,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":".primary.design","cl":"primary design","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":11,"s":[27]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[-26]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[29]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[-28]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[29]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[-28]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[29]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":83,"s":[-6]},{"t":90,"s":[0]}],"ix":10},"p":{"a":0,"k":[249.998,182.041,0],"ix":2,"l":2},"a":{"a":0,"k":[0,-219,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-25.889,0],[0,25.889],[0,0]],"o":[[0,0],[0,25.889],[25.888,0],[0,0],[0,0]],"v":[[-46.751,-119.666],[-46.875,-5.21],[0.001,41.666],[46.875,-5.21],[46.998,-119.666]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.067,0.067,0.067,1],"ix":3,"x":"var $bm_rt;\n$bm_rt = comp('system-regular-46-notification-bell').layer('control').effect('primary')('Color');"},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":31.3,"ix":5},"lc":2,"lj":2,"bm":0,"nm":".primary","mn":"ADBE Vector Graphic - Stroke","hd":false,"cl":"primary"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":1,"s":[23]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":11,"s":[33]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":18,"s":[22.538]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[21]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":28,"s":[22.538]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[33]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":37,"s":[22.538]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[21]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":47,"s":[22.538]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[33]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":57,"s":[22.538]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[21]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67,"s":[22.538]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[33]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":78,"s":[22.538]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":83,"s":[21]},{"t":90,"s":[22.538]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":11,"s":[79]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":18,"s":[77.077]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[68]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":28,"s":[77.077]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[79]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":37,"s":[77.077]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[68]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":47,"s":[77.077]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[79]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":57,"s":[77.077]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[68]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67,"s":[77.077]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[79]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":78,"s":[77.077]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":83,"s":[75]},{"t":90,"s":[77.077]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":1,"op":90,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":".primary.design","cl":"primary design","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[250.038,250.002,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[2083,2083,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0.43],[0,0],[-2.48,0],[0,-2.48],[0,0],[-0.19,-0.38],[0,0]],"o":[[0,0],[0.19,-0.38],[0,0],[0,-2.48],[2.48,0],[0,0],[0,0.42],[0,0],[0,0]],"v":[[-6.042,4.5],[-4.792,2.01],[-4.502,0.78],[-4.502,-2],[-0.002,-6.5],[4.498,-2],[4.498,0.78],[4.788,2.01],[6.038,4.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0.19],[0,0],[2.96,0.37],[0,0],[0.41,0],[0,-0.41],[0,0],[0,-3.05],[0,0],[0.08,-0.17],[0,0],[-0.13,-0.22],[-0.26,0],[0,0],[-0.14,0.23],[0.12,0.23]],"o":[[-0.08,-0.18],[0,0],[0,-3.05],[0,0],[0,-0.41],[-0.41,0],[0,0],[-2.96,0.37],[0,0],[0,0.19],[0,0],[-0.12,0.23],[0.14,0.22],[0,0],[0.26,0],[0.14,-0.22],[0,0]],"v":[[6.128,1.34],[5.998,0.78],[5.998,-2],[0.748,-7.95],[0.748,-9.25],[-0.002,-10],[-0.752,-9.25],[-0.752,-7.95],[-6.002,-2],[-6.002,0.78],[-6.132,1.34],[-7.922,4.92],[-7.892,5.65],[-7.252,6],[7.248,6],[7.888,5.64],[7.918,4.91]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.067,0.067,0.067,1],"ix":4,"x":"var $bm_rt;\n$bm_rt = comp('system-regular-46-notification-bell').layer('control').effect('primary')('Color');"},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":".primary","mn":"ADBE Vector Graphic - Fill","hd":false,"cl":"primary"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":".primary.design","cl":"primary design","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[250.038,250.002,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[2083,2083,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.83,0],[0,0.83],[0,0],[0,0]],"o":[[0,0.83],[-0.83,0],[0,0],[0,0],[0,0]],"v":[[1.498,7],[-0.002,8.5],[-1.502,7],[-1.501,5.544],[1.499,5.544]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.65,0],[0,1.65],[0,0]],"o":[[0,0],[0,1.65],[1.65,0],[0,0],[0,0]],"v":[[-3.001,5.088],[-3.002,7],[-0.002,10],[2.998,7],[2.999,5.088]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.067,0.067,0.067,1],"ix":4,"x":"var $bm_rt;\n$bm_rt = comp('system-regular-46-notification-bell').layer('control').effect('primary')('Color');"},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":".primary","mn":"ADBE Vector Graphic - Fill","hd":false,"cl":"primary"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":".primary.design","cl":"primary design","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[250.038,250.002,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[2083,2083,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0.43],[0,0],[-2.48,0],[0,-2.48],[0,0],[-0.19,-0.38],[0,0]],"o":[[0,0],[0.19,-0.38],[0,0],[0,-2.48],[2.48,0],[0,0],[0,0.42],[0,0],[0,0]],"v":[[-6.042,4.5],[-4.792,2.01],[-4.502,0.78],[-4.502,-2],[-0.002,-6.5],[4.498,-2],[4.498,0.78],[4.788,2.01],[6.038,4.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0.19],[0,0],[2.96,0.37],[0,0],[0.41,0],[0,-0.41],[0,0],[0,-3.05],[0,0],[0.08,-0.17],[0,0],[-0.13,-0.22],[-0.26,0],[0,0],[-0.14,0.23],[0.12,0.23]],"o":[[-0.08,-0.18],[0,0],[0,-3.05],[0,0],[0,-0.41],[-0.41,0],[0,0],[-2.96,0.37],[0,0],[0,0.19],[0,0],[-0.12,0.23],[0.14,0.22],[0,0],[0.26,0],[0.14,-0.22],[0,0]],"v":[[6.128,1.34],[5.998,0.78],[5.998,-2],[0.748,-7.95],[0.748,-9.25],[-0.002,-10],[-0.752,-9.25],[-0.752,-7.95],[-6.002,-2],[-6.002,0.78],[-6.132,1.34],[-7.922,4.92],[-7.892,5.65],[-7.252,6],[7.248,6],[7.888,5.64],[7.918,4.91]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.067,0.067,0.067,1],"ix":4,"x":"var $bm_rt;\n$bm_rt = comp('system-regular-46-notification-bell').layer('control').effect('primary')('Color');"},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":".primary","mn":"ADBE Vector Graphic - Fill","hd":false,"cl":"primary"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":90,"op":300,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":".primary.design","cl":"primary design","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[250.038,250.002,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[2083,2083,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.83,0],[0,0.83],[0,0],[0,0]],"o":[[0,0.83],[-0.83,0],[0,0],[0,0],[0,0]],"v":[[1.498,7],[-0.002,8.5],[-1.502,7],[-1.501,5.544],[1.499,5.544]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.65,0],[0,1.65],[0,0]],"o":[[0,0],[0,1.65],[1.65,0],[0,0],[0,0]],"v":[[-3.001,5.088],[-3.002,7],[-0.002,10],[2.998,7],[2.999,5.088]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.067,0.067,0.067,1],"ix":4,"x":"var $bm_rt;\n$bm_rt = comp('system-regular-46-notification-bell').layer('control').effect('primary')('Color');"},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":".primary","mn":"ADBE Vector Graphic - Fill","hd":false,"cl":"primary"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":90,"op":300,"st":0,"ct":1,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"control","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ef":[{"ty":5,"nm":"primary","np":3,"mn":"ADBE Color Control","ix":1,"en":1,"ef":[{"ty":2,"nm":"Color","mn":"ADBE Color Control-0001","ix":1,"v":{"a":0,"k":[0.067,0.067,0.067],"ix":1}}]}],"ip":0,"op":291,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"hover-bell","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[250,250,0],"ix":2,"l":2},"a":{"a":0,"k":[250,250,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":500,"h":500,"ip":0,"op":100,"st":0,"bm":0}],"markers":[{"tm":0,"cm":"default:hover-bell","dr":90}],"props":{}} \ No newline at end of file diff --git a/apps/web/src/components/ConnectionStatus.tsx b/apps/web/src/components/ConnectionStatus.tsx new file mode 100644 index 000000000..12f7e448f --- /dev/null +++ b/apps/web/src/components/ConnectionStatus.tsx @@ -0,0 +1,53 @@ +import { useEffect, useRef, useState } from "react"; +import { useLingui } from "@lingui/react"; +import { msg } from "@lingui/core/macro"; + +import { useWsConnectionState } from "~/hooks/useWsConnectionState"; + +const MAX_VISIBLE_ATTEMPTS = 5; + +export default function ConnectionStatus() { + const { _ } = useLingui(); + const state = useWsConnectionState(); + const wasConnected = useRef(false); + const [reconnectAttempts, setReconnectAttempts] = useState(0); + const prevState = useRef(state); + + useEffect(() => { + if (state === "pending") { + wasConnected.current = true; + // Reset counter on successful reconnect + setReconnectAttempts(0); + } + + // Each time we drop back to "connecting" after being connected = one attempt + if ( + state === "connecting" && + wasConnected.current && + prevState.current !== "connecting" + ) { + setReconnectAttempts((n) => n + 1); + } + + prevState.current = state; + }, [state]); + + const isReconnecting = state === "connecting" && wasConnected.current; + + // After MAX_VISIBLE_ATTEMPTS, hide the banner but keep reconnecting silently + if (!isReconnecting || reconnectAttempts > MAX_VISIBLE_ATTEMPTS) return null; + + return ( +
+
+ + + + + + {_(msg`Reconnecting…`)} + +
+
+ ); +} diff --git a/apps/web/src/components/Dashboard.tsx b/apps/web/src/components/Dashboard.tsx index ecff8acbd..a75931e19 100644 --- a/apps/web/src/components/Dashboard.tsx +++ b/apps/web/src/components/Dashboard.tsx @@ -13,9 +13,11 @@ import { authClient } from "@kan/auth/client"; import { useClickOutside } from "~/hooks/useClickOutside"; import { useModal } from "~/providers/modal"; +import { EventsProvider } from "~/providers/events"; import { useWorkspace, WorkspaceProvider } from "~/providers/workspace"; import { api } from "~/utils/api"; import SideNavigation from "./SideNavigation"; +import ConnectionStatus from "./ConnectionStatus"; interface DashboardProps { children: React.ReactNode; @@ -30,9 +32,11 @@ export function getDashboardLayout( ) { return ( - - {page} - + + + {page} + + ); } @@ -122,6 +126,7 @@ export default function Dashboard({ } `}
+ {/* Mobile Header */}
+ )} +
+ + + + + )} + + ); +} + +function NotificationPanelContent({ + markRead, + router, +}: { + markRead: ReturnType; + router: ReturnType; +}) { + const { data: notifications, isLoading } = api.notification.list.useQuery({ + limit: 20, + offset: 0, + }); + + if (isLoading) { + return ( +
+
+
+ ); + } + + if (!notifications?.length) { + return ( +
+ +

{t`No notifications yet`}

+
+ ); + } + + const handleNotificationClick = (notification: (typeof notifications)[number]) => { + if (!notification.readAt) { + markRead.mutate({ notificationPublicId: notification.publicId }); + } + if (notification.card?.publicId) { + void router.push(`/cards/${notification.card.publicId}`); + } + }; + + return ( +
    + {notifications.map((notification) => ( +
  • + +
  • + ))} +
+ ); +} diff --git a/apps/web/src/components/SideNavigation.tsx b/apps/web/src/components/SideNavigation.tsx index ce032e69d..1a7cea46e 100644 --- a/apps/web/src/components/SideNavigation.tsx +++ b/apps/web/src/components/SideNavigation.tsx @@ -25,6 +25,7 @@ import settingsIconLight from "~/assets/settings-light.json"; import templatesIconDark from "~/assets/templates-dark.json"; import templatesIconLight from "~/assets/templates-light.json"; import ButtonComponent from "~/components/Button"; +import NotificationBell from "~/components/NotificationBell"; import ReactiveButton from "~/components/ReactiveButton"; import UserMenu from "~/components/UserMenu"; import WorkspaceMenu from "~/components/WorkspaceMenu"; @@ -207,6 +208,7 @@ export default function SideNavigation({
+ >(new Map()); + + const handlePresenceEvent = useCallback( + (event: PresenceEvent) => { + setViewers((prev) => { + const next = new Map(prev); + if (event.type === "presence.state") { + next.clear(); + for (const v of event.viewers) { + if (v.userId !== currentUserId) next.set(v.userId, v); + } + } else if (event.type === "presence.joined") { + if (event.userId !== currentUserId) { + next.set(event.userId, { + userId: event.userId, + userName: event.userName, + userImage: event.userImage, + }); + } + } else if (event.type === "presence.left") { + next.delete(event.userId); + } + return next; + }); + }, + [currentUserId], + ); + + const enabled = + Boolean(runtimeEnv("NEXT_PUBLIC_WEBSOCKET_URL")) && + !!boardPublicId && + workspace.publicId.length === 12; + + api.events.presence.useSubscription( + { + workspacePublicId: workspace.publicId, + boardPublicId: boardPublicId ?? "", + }, + { + enabled, + onData: handlePresenceEvent, + }, + ); + + return Array.from(viewers.values()); +} diff --git a/apps/web/src/hooks/useWsConnectionState.ts b/apps/web/src/hooks/useWsConnectionState.ts new file mode 100644 index 000000000..35abc3400 --- /dev/null +++ b/apps/web/src/hooks/useWsConnectionState.ts @@ -0,0 +1,29 @@ +import { useEffect, useState } from "react"; + +import { getWsClient } from "~/utils/api"; + +export type WsState = "idle" | "connecting" | "pending"; + +export function useWsConnectionState(): WsState { + const [state, setState] = useState(() => { + if (typeof window === "undefined") return "idle"; + const client = getWsClient(); + if (!client) return "idle"; + return client.connectionState.get().state as WsState; + }); + + useEffect(() => { + const client = getWsClient(); + if (!client) return; + + const sub = client.connectionState.subscribe({ + next(s) { + setState(s.state as WsState); + }, + }); + + return () => sub.unsubscribe(); + }, []); + + return state; +} diff --git a/apps/web/src/locales/de/messages.json b/apps/web/src/locales/de/messages.json index 8d25f1fb3..b98a81a42 100644 --- a/apps/web/src/locales/de/messages.json +++ b/apps/web/src/locales/de/messages.json @@ -3,23 +3,40 @@ "message": " (edited)", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 153]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 153 + ] + ], "translation": " (bearbeitet)" }, "lGjicL": { "message": ", or see our", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 102]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 102 + ] + ], "translation": ", oder siehe unsere" }, "J/hVSQ": { "message": "{0}", "placeholders": { - "0": ["isTemplate ? \"Templates\" : \"Boards\""] + "0": [ + "isTemplate ? \"Templates\" : \"Boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/index.tsx", 53]], + "origin": [ + [ + "src/views/boards/index.tsx", + 53 + ] + ], "translation": "{0}" }, "JArWcF": { @@ -29,74 +46,146 @@ "card?.title ?? t`Card`", "isTemplate ? \"Templates\" : \"Boards\"" ], - "1": ["board?.name ?? t`Board`", "workspace.name ?? t`Workspace`"] + "1": [ + "board?.name ?? t`Board`", + "workspace.name ?? t`Workspace`" + ] }, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 48], - ["src/views/card/index.tsx", 317] + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/card/index.tsx", + 364 + ] ], "translation": "{0} | {1}" }, "mU+M00": { "message": "{0} has been added to your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 56]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 56 + ] + ], "translation": "{0} wurde zu deinen Favoriten hinzugefügt." }, "bDI6VI": { "message": "{0} has been removed from your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 57]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 57 + ] + ], "translation": "{0} wurde aus deinen Favoriten entfernt." }, "CJukzS": { "message": "{0} labels", "placeholders": { - "0": ["labelPublicIds.length"] + "0": [ + "labelPublicIds.length" + ] }, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 455]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 455 + ] + ], "translation": "{0} Labels" }, "9x4DAL": { "message": "{0} not found", "placeholders": { - "0": ["isTemplate ? \"Template\" : \"Board\""] + "0": [ + "isTemplate ? \"Template\" : \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/index.tsx", 557]], + "origin": [ + [ + "src/views/board/index.tsx", + 561 + ] + ], "translation": "{0} nicht gefunden" }, "0xWkkH": { "message": "{boardCount, plural, one {Import board (1)} other {Import boards ({boardCount})}}", "placeholders": { - "boardCount": ["boardCount"] + "boardCount": [ + "boardCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 489]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 489 + ] + ], "translation": "{boardCount, plural, one {Board importieren (1)} other {Boards importieren ({boardCount})}}" }, + "JBaoDB": { + "message": "{overflow} more viewers", + "placeholders": { + "overflow": [ + "overflow" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 70 + ] + ], + "translation": "" + }, "yndBF+": { "message": "{projectCount, plural, one {Import project (1)} other {Import projects ({projectCount})}}", "placeholders": { - "projectCount": ["projectCount"] + "projectCount": [ + "projectCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 341]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 341 + ] + ], "translation": "{projectCount, plural, one {Projekt importieren (1)} other {Projekte importieren ({projectCount})}}" }, "9lFfqv": { "message": "/month", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 207]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 207 + ] + ], "translation": "/Monat" }, "be30i9": { @@ -104,8 +193,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 30], - ["src/views/pricing/components/PricingTiers.tsx", 30] + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ] ], "translation": "0 $" }, @@ -114,8 +209,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 158], - ["src/views/members/components/InviteMemberForm.tsx", 170] + [ + "src/views/members/components/InviteMemberForm.tsx", + 158 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] ], "translation": "10 $/Monat" }, @@ -123,7 +224,12 @@ "message": "$8/month", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 170]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] + ], "translation": "8 $/Monat" }, "zMlxCA": { @@ -131,9 +237,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 82], - ["src/views/pricing/components/Pricing.tsx", 36], - ["src/views/pricing/components/PricingTiers.tsx", 35] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 82 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 36 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 35 + ] ], "translation": "1 Benutzer" }, @@ -141,7 +256,12 @@ "message": "10mb file uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 90]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 90 + ] + ], "translation": "10 MB Datei-Uploads" }, "gkxGkF": { @@ -149,9 +269,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 66], - ["src/views/pricing/components/PricingTiers.tsx", 88], - ["src/views/pricing/components/PricingTiers.tsx", 263] + [ + "src/views/pricing/components/PricingTiers.tsx", + 66 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 88 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 263 + ] ], "translation": "14 Tage kostenlose Testversion · Jederzeit Plan wechseln oder kündigen" }, @@ -159,21 +288,48 @@ "message": "404 - Page Not Found | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 11]], + "origin": [ + [ + "src/pages/404.tsx", + 11 + ] + ], "translation": "404 - Seite nicht gefunden | kan.bn" }, + "Ws1I0u": { + "message": "A card was updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 54 + ] + ], + "translation": "" + }, "/rn4RE": { "message": "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 71]], + "origin": [ + [ + "src/views/home/index.tsx", + 71 + ] + ], "translation": "Eine leistungsstarke, flexible Kanban-App, die dir hilft, Arbeit zu organisieren, Fortschritte zu verfolgen und Ergebnisse zu liefern – alles an einem Ort." }, "AeXO77": { "message": "Account", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 41]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 41 + ] + ], "translation": "Konto" }, "TKFUnX": { @@ -181,7 +337,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 27 + ] ], "translation": "Konto gelöscht" }, @@ -190,7 +349,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 283] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 283 + ] ], "translation": "Account-Manager" }, @@ -198,7 +360,12 @@ "message": "Actions", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 56]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 56 + ] + ], "translation": "Aktionen" }, "F6pfE9": { @@ -206,9 +373,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 26], - ["src/views/settings/components/NewWebhookModal.tsx", 293], - ["src/views/settings/components/WebhookList.tsx", 106] + [ + "src/views/boards/index.tsx", + 26 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 293 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] ], "translation": "Aktiv" }, @@ -217,8 +393,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 455], - ["src/views/public/board/CardModal.tsx", 200] + [ + "src/views/card/index.tsx", + 502 + ], + [ + "src/views/public/board/CardModal.tsx", + 200 + ] ], "translation": "Aktivität" }, @@ -227,7 +409,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 148] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 148 + ] ], "translation": "Aktivitätsprotokoll" }, @@ -235,35 +420,60 @@ "message": "Activity logs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 110]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 110 + ] + ], "translation": "Aktivitätsprotokolle" }, "UGCIzB": { "message": "Add / edit label", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 50]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 50 + ] + ], "translation": "Label hinzufügen / bearbeiten" }, "B3xxao": { "message": "Add a card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 136]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 136 + ] + ], "translation": "Karte hinzufügen" }, "qtE5nt": { "message": "Add an item...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 141]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 141 + ] + ], "translation": "Element hinzufügen..." }, "Gxxi5J": { "message": "Add checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 65]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 65 + ] + ], "translation": "Checkliste hinzufügen" }, "ngBZOd": { @@ -271,8 +481,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/Comment.tsx", 185], - ["src/views/card/components/NewCommentForm.tsx", 68] + [ + "src/views/card/components/Comment.tsx", + 185 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 68 + ] ], "translation": "Kommentar hinzufügen... (‚/' für Befehle oder ‚@' zum Erwähnen eingeben)" }, @@ -280,14 +496,24 @@ "message": "Add description... (type '/' to open commands or '@' to mention)", "placeholders": {}, "comments": [], - "origin": [["src/components/Editor.tsx", 482]], + "origin": [ + [ + "src/components/Editor.tsx", + 482 + ] + ], "translation": "Beschreibung hinzufügen... (‚/' für Befehle oder ‚@' zum Erwähnen eingeben)" }, "abUZlY": { "message": "Add details...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 189 + ] + ], "translation": "Details hinzufügen..." }, "lyqwgn": { @@ -295,8 +521,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/LabelSelector.tsx", 114], - ["src/views/card/components/LabelSelector.tsx", 119] + [ + "src/views/card/components/LabelSelector.tsx", + 114 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 119 + ] ], "translation": "Label hinzufügen" }, @@ -305,8 +537,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 135], - ["src/views/members/components/InviteMemberForm.tsx", 257] + [ + "src/views/card/components/MemberSelector.tsx", + 135 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 257 + ] ], "translation": "Mitglied hinzufügen" }, @@ -314,126 +552,222 @@ "message": "Add to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 122]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 122 + ] + ], "translation": "Zu Favoriten hinzufügen" }, "cWXW+7": { "message": "Add webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 36 + ] + ], "translation": "Webhook hinzufügen" }, "bmXKoX": { "message": "added {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 102]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 102 + ] + ], "translation": "hat {0} Labels hinzugefügt: <0>{labelList}" }, "h4VV67": { "message": "added a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 132]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 132 + ] + ], "translation": "hat eine Checkliste hinzugefügt" }, "O83K21": { "message": "added a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 135]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 135 + ] + ], "translation": "hat ein Checklisten-Element hinzugefügt" }, "T21jY/": { "message": "added a label to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 128]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 128 + ] + ], "translation": "hat ein Label zur Karte hinzugefügt" }, "rs7L54": { "message": "added a member to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 130]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 130 + ] + ], "translation": "hat ein Mitglied zur Karte hinzugefügt" }, "5y6qY8": { "message": "added an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 140]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 140 + ] + ], "translation": "hat einen Anhang hinzugefügt" }, "CujNX4": { "message": "added an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 278]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 278 + ] + ], "translation": "hat einen Anhang hinzugefügt <0>{0}" }, "wakO3W": { "message": "added checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 208]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 208 + ] + ], "translation": "hat Checkliste <0>{0} hinzugefügt" }, "E0t3jO": { "message": "added checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 232]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 232 + ] + ], "translation": "hat Checklisten-Element <0>{0} hinzugefügt" }, "b5FKyH": { "message": "added label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 192]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 192 + ] + ], "translation": "hat Label <0>{0} hinzugefügt" }, "pL78ec": { "message": "Added to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 53]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 53 + ] + ], "translation": "Zu Favoriten hinzugefügt" }, "14Xi3Z": { "message": "Adding a new member will cost an additional {price} ({billingType}) per seat.", "placeholders": { - "price": ["price"], - "billingType": ["billingType"] + "price": [ + "price" + ], + "billingType": [ + "billingType" + ] }, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 327]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 327 + ] + ], "translation": "Das Hinzufügen eines neuen Mitglieds kostet zusätzlich {price} ({billingType}) pro Platz." }, "D7/JvJ": { "message": "Adjust the square crop to fit your avatar.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 256]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 256 + ] + ], "translation": "Passen Sie den quadratischen Zuschnitt an Ihren Avatar an." }, "U3pytU": { "message": "Admin", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 201]], + "origin": [ + [ + "src/views/members/index.tsx", + 201 + ] + ], "translation": "Administrator" }, "3pIq39": { @@ -441,19 +775,39 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 264], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 265], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 266], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 267], - ["src/views/pricing/components/Pricing.tsx", 55] - ], - "translation": "Administrator-Rollen" - }, + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 264 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 265 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 266 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 267 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 55 + ] + ], + "translation": "Administrator-Rollen" + }, "Kec+/t": { "message": "Advanced admin controls", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 103]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 103 + ] + ], "translation": "Erweiterte Administrator-Steuerung" }, "/jd3aj": { @@ -461,7 +815,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 268] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 268 + ] ], "translation": "Erweiterte Administrator-Rollen" }, @@ -469,42 +826,72 @@ "message": "Advanced security, compliance, and dedicated support for large organizations.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 97 + ] + ], "translation": "Erweiterte Sicherheit, Compliance und dedizierter Support für große Organisationen." }, "h2ztFt": { "message": "All Free features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 56]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 56 + ] + ], "translation": "Alle Free-Features +" }, "nryrgW": { "message": "All member permission overrides have been reset to their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 26 + ] + ], "translation": "Alle individuellen Berechtigungsüberschreibungen der Mitglieder wurden auf ihre Rollenstandards zurückgesetzt." }, "ZAs2NN": { "message": "All Pro features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 101]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 101 + ] + ], "translation": "Alle Pro-Features +" }, "UQbwrz": { "message": "All systems operational", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 18]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 18 + ] + ], "translation": "Alle Systeme betriebsbereit" }, "EII/X8": { "message": "All Teams features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 79]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 79 + ] + ], "translation": "Alle Teams-Features +" }, "Z3krJD": { @@ -523,28 +910,48 @@ "message": "Already have an account? <0><1>Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 90]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 90 + ] + ], "translation": "Haben Sie bereits ein Konto? <0><1>Anmelden" }, "j1+HPc": { "message": "An error occurred while connecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 107]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 107 + ] + ], "translation": "Beim Verbinden Ihres GitHub-Kontos ist ein Fehler aufgetreten." }, "Dz63YI": { "message": "An error occurred while disconnecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 130]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 130 + ] + ], "translation": "Beim Trennen Ihres GitHub-Kontos ist ein Fehler aufgetreten." }, "WmPhYW": { "message": "An error occurred while disconnecting your Trello account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 87]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 87 + ] + ], "translation": "Beim Trennen Ihres Trello-Kontos ist ein Fehler aufgetreten." }, "ZXSPJt": { @@ -552,7 +959,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 90] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 90 + ] ], "translation": "Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es später erneut." }, @@ -560,14 +970,24 @@ "message": "Annual", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 63]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 63 + ] + ], "translation": "Jährlich" }, "3bqt9U": { "message": "Anyone with this link can join your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 311]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 311 + ] + ], "translation": "Jeder mit diesem Link kann Ihrem Workspace beitreten" }, "OZtEcz": { @@ -575,8 +995,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 65], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 237] + [ + "src/components/SettingsLayout.tsx", + 65 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 237 + ] ], "translation": "API" }, @@ -584,119 +1010,196 @@ "message": "API key created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 91]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 91 + ] + ], "translation": "API-Schlüssel erstellt" }, "pFKC6A": { "message": "API key name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 161]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 161 + ] + ], "translation": "API-Schlüsselname" }, "nq7q3Z": { "message": "API key name cannot exceed 30 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 25 + ] + ], "translation": "API-Schlüsselname darf 30 Zeichen nicht überschreiten" }, "vbskQn": { "message": "API key name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 24 + ] + ], "translation": "API-Schlüsselname ist erforderlich" }, "5h8ooz": { "message": "API keys", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 22]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 22 + ] + ], "translation": "API-Schlüssel" }, "j2+d/o": { "message": "API Reference", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 31]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 31 + ] + ], "translation": "API-Referenz" }, "bJZm1W": { "message": "Applicants", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 75]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 75 + ] + ], "translation": "Bewerber" }, "yb/fjw": { "message": "Approval", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 46]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 46 + ] + ], "translation": "Genehmigung" }, "aKJHG+": { "message": "Archive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Board archivieren" }, "TdfEV7": { "message": "Archived", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 27]], + "origin": [ + [ + "src/views/boards/index.tsx", + 27 + ] + ], "translation": "Archiviert" }, "lo8xBK": { "message": "Are you sure want to remove {entityLabel}?", "placeholders": { - "entityLabel": ["entityLabel"] + "entityLabel": [ + "entityLabel" + ] }, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 47] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 47 + ] ], "translation": "Möchten Sie {entityLabel} wirklich entfernen?" }, "Ypy5pZ": { "message": "Are you sure you want to delete the webhook \"{webhookName}\"? This action cannot be undone.", "placeholders": { - "webhookName": ["webhookName"] + "webhookName": [ + "webhookName" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 60 + ] ], "translation": "Möchten Sie den Webhook \"{webhookName}\" wirklich löschen? Diese Aktion kann nicht rückgängig gemacht werden." }, "BhDZlc": { "message": "Are you sure you want to delete the workspace {0}?", "placeholders": { - "0": ["workspace.name"] + "0": [ + "workspace.name" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 62] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 62 + ] ], "translation": "Möchten Sie den Workspace {0} wirklich löschen?" }, "DMeWZD": { "message": "Are you sure you want to delete this {0}?", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/DeleteBoardConfirmation.tsx", 36]], + "origin": [ + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 36 + ] + ], "translation": "Möchten Sie {0} wirklich löschen?" }, "ZT4Khw": { "message": "Are you sure you want to delete this card?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 75]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 75 + ] + ], "translation": "Möchten Sie diese Karte wirklich löschen?" }, "Fpci8b": { @@ -704,7 +1207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 56] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 56 + ] ], "translation": "Möchten Sie diese Checkliste wirklich löschen?" }, @@ -712,14 +1218,24 @@ "message": "Are you sure you want to delete this comment?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 66]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 66 + ] + ], "translation": "Möchten Sie diesen Kommentar wirklich löschen?" }, "kECVpo": { "message": "Are you sure you want to delete this label?", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 41]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 41 + ] + ], "translation": "Möchten Sie dieses Label wirklich löschen?" }, "74F7N/": { @@ -727,17 +1243,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 54] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 54 + ] ], "translation": "Möchten Sie Ihr Konto wirklich löschen?" }, "PyYD/v": { "message": "assigned <0>{0} to the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 172]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 172 + ] + ], "translation": "hat <0>{0} der Karte zugewiesen" }, "JUce1S": { @@ -745,7 +1271,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 199] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 199 + ] ], "translation": "Zugewiesene Personen" }, @@ -753,91 +1282,156 @@ "message": "Attachment uploaded", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 45]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 45 + ] + ], "translation": "Anhang hochgeladen" }, "1rWxEw": { "message": "Awaiting Customer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 59]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 59 + ] + ], "translation": "Wartet auf Kunden" }, "iH8pgl": { "message": "Back", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 275]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 275 + ] + ], "translation": "Zurück" }, "KNKCTb": { "message": "Backlog", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Backlog" }, "Vt50G1": { "message": "Basic Kanban", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 16]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 16 + ] + ], "translation": "Basis-Kanban" }, "Pat4r8": { "message": "Basic Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 28]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 28 + ] + ], "translation": "Basis-Roadmap" }, "Cd4sTD": { "message": "Best for individuals and solo creators getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 32]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 32 + ] + ], "translation": "Ideal für Einzelpersonen und Solo-Kreative, die gerade anfangen" }, "wsy94z": { "message": "Best for large organizations with advanced needs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 98 + ] + ], "translation": "Ideal für große Organisationen mit erweiterten Anforderungen" }, "UoSI+i": { "message": "Best for small and growing teams that need collaboration", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 53]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 53 + ] + ], "translation": "Ideal für kleine und wachsende Teams, die zusammenarbeiten müssen" }, "zt/6cS": { "message": "Best for small teams who want to collaborate and move faster together.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 86]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 86 + ] + ], "translation": "Ideal für kleine Teams, die gemeinsam arbeiten und schneller vorankommen möchten." }, "qaS+1/": { "message": "Best for teams that want to scale without limits", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 76]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 76 + ] + ], "translation": "Ideal für Teams, die grenzenlos skalieren möchten" }, "ARvBT/": { "message": "billed annually", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "jährlich abgerechnet" }, "+VoTOr": { "message": "billed monthly", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "monatlich abgerechnet" }, "R+w/Va": { @@ -845,9 +1439,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 58], - ["src/views/boards/components/TemplateBoards.tsx", 68], - ["src/views/settings/BillingSettings.tsx", 39] + [ + "src/components/SettingsLayout.tsx", + 58 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 68 + ], + [ + "src/views/settings/BillingSettings.tsx", + 39 + ] ], "translation": "Abrechnung" }, @@ -855,14 +1458,24 @@ "message": "Billing portal", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 49 + ] + ], "translation": "Abrechnungsportal" }, "4RoY9J": { "message": "Blog Post", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Blogbeitrag" }, "QD8opX": { @@ -870,9 +1483,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/card/index.tsx", 317], - ["src/views/public/board/index.tsx", 125] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/card/index.tsx", + 364 + ], + [ + "src/views/public/board/index.tsx", + 125 + ] ], "translation": "Board" }, @@ -881,8 +1503,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 314], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 85] + [ + "src/components/NewWorkspaceForm.tsx", + 314 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 85 + ] ], "translation": "Board-Analyse" }, @@ -890,28 +1518,48 @@ "message": "Board archived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Board archiviert" }, "wewm3j": { "message": "Board name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 23 + ] + ], "translation": "Board-Name darf 100 Zeichen nicht überschreiten" }, "R1c3Mq": { "message": "Board name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 22 + ] + ], "translation": "Board-Name ist erforderlich" }, "jwI32v": { "message": "Board not found", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 181]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 181 + ] + ], "translation": "Board nicht gefunden" }, "XNxYxq": { @@ -919,7 +1567,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 116] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 116 + ] ], "translation": "Board-Vorlagen" }, @@ -927,21 +1578,36 @@ "message": "Board unarchived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Board wiederhergestellt" }, "Xid3K6": { "message": "Board URL can only contain letters, numbers, and hyphens", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 46]], - "translation": "Board-URL darf nur Buchstaben, Zahlen und Bindestriche enthalten" - }, - "gv5kbo": { + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 46 + ] + ], + "translation": "Board-URL darf nur Buchstaben, Zahlen und Bindestriche enthalten" + }, + "gv5kbo": { "message": "Board URL cannot exceed 60 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 44]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 44 + ] + ], "translation": "Board-URL darf 60 Zeichen nicht überschreiten" }, "8+BY11": { @@ -949,8 +1615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 82], - ["src/views/public/board/index.tsx", 79] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 82 + ], + [ + "src/views/public/board/index.tsx", + 79 + ] ], "translation": "Board-URL in Zwischenablage kopiert" }, @@ -958,7 +1630,12 @@ "message": "Board URL must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 42]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 42 + ] + ], "translation": "Board-URL muss mindestens 3 Zeichen lang sein" }, "qzdST2": { @@ -966,8 +1643,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 85], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 132] + [ + "src/views/home/components/Features.tsx", + 85 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 132 + ] ], "translation": "Board-Sichtbarkeit" }, @@ -975,7 +1658,12 @@ "message": "Board visibility updated", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 49]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 49 + ] + ], "translation": "Board-Sichtbarkeit aktualisiert" }, "8TveY+": { @@ -983,8 +1671,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 99], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 73] + [ + "src/components/SideNavigation.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 73 + ] ], "translation": "Boards" }, @@ -992,28 +1686,48 @@ "message": "Boards you archive will appear here.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Boards, die du archivierst, werden hier angezeigt." }, "ZDo4HN": { "message": "Brainstorming", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 42]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 42 + ] + ], "translation": "Brainstorming" }, "vXemf6": { "message": "Bug", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 24]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ] + ], "translation": "Bug" }, "/asTmx": { "message": "Bug Report", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 64]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 64 + ] + ], "translation": "Bug-Report" }, "t6FvJH": { @@ -1021,8 +1735,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 146], - ["src/views/settings/components/RolePermissions.tsx", 35] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 146 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 35 + ] ], "translation": "Kann Kommentare hinzufügen" }, @@ -1031,8 +1751,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 131], - ["src/views/settings/components/RolePermissions.tsx", 20] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 131 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 20 + ] ], "translation": "Kann Boards erstellen" }, @@ -1041,8 +1767,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 141], - ["src/views/settings/components/RolePermissions.tsx", 30] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 141 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 30 + ] ], "translation": "Kann Karten erstellen" }, @@ -1051,8 +1783,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 136], - ["src/views/settings/components/RolePermissions.tsx", 25] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 136 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 25 + ] ], "translation": "Kann Listen erstellen" }, @@ -1061,8 +1799,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 133], - ["src/views/settings/components/RolePermissions.tsx", 22] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 133 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 22 + ] ], "translation": "Kann Boards löschen" }, @@ -1071,8 +1815,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 143], - ["src/views/settings/components/RolePermissions.tsx", 32] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 143 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 32 + ] ], "translation": "Kann Karten löschen" }, @@ -1081,8 +1831,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 148], - ["src/views/settings/components/RolePermissions.tsx", 37] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 148 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 37 + ] ], "translation": "Kann Kommentare löschen" }, @@ -1091,8 +1847,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 138], - ["src/views/settings/components/RolePermissions.tsx", 27] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 138 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 27 + ] ], "translation": "Kann Listen löschen" }, @@ -1101,8 +1863,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 127], - ["src/views/settings/components/RolePermissions.tsx", 16] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 127 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 16 + ] ], "translation": "Kann Workspace löschen" }, @@ -1111,8 +1879,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 132], - ["src/views/settings/components/RolePermissions.tsx", 21] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 132 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 21 + ] ], "translation": "Kann Boards bearbeiten" }, @@ -1121,8 +1895,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 142], - ["src/views/settings/components/RolePermissions.tsx", 31] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 142 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 31 + ] ], "translation": "Kann Karten bearbeiten" }, @@ -1131,8 +1911,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 147], - ["src/views/settings/components/RolePermissions.tsx", 36] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 147 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 36 + ] ], "translation": "Kann Kommentare bearbeiten" }, @@ -1141,8 +1927,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 137], - ["src/views/settings/components/RolePermissions.tsx", 26] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 137 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 26 + ] ], "translation": "Kann Listen bearbeiten" }, @@ -1151,8 +1943,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 152], - ["src/views/settings/components/RolePermissions.tsx", 41] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 152 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 41 + ] ], "translation": "Kann Mitgliederrollen und Berechtigungen bearbeiten" }, @@ -1161,8 +1959,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 126], - ["src/views/settings/components/RolePermissions.tsx", 15] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 126 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 15 + ] ], "translation": "Kann Workspace bearbeiten" }, @@ -1171,8 +1975,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 151], - ["src/views/settings/components/RolePermissions.tsx", 40] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 151 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 40 + ] ], "translation": "Kann Mitglieder einladen" }, @@ -1181,8 +1991,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 128], - ["src/views/settings/components/RolePermissions.tsx", 17] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 128 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 17 + ] ], "translation": "Kann Workspace-Einstellungen verwalten" }, @@ -1191,8 +2007,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 153], - ["src/views/settings/components/RolePermissions.tsx", 42] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 153 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 42 + ] ], "translation": "Kann Mitglieder entfernen" }, @@ -1201,8 +2023,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 130], - ["src/views/settings/components/RolePermissions.tsx", 19] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 130 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 19 + ] ], "translation": "Kann Boards ansehen" }, @@ -1211,8 +2039,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 140], - ["src/views/settings/components/RolePermissions.tsx", 29] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 140 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 29 + ] ], "translation": "Kann Karten ansehen" }, @@ -1221,8 +2055,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 145], - ["src/views/settings/components/RolePermissions.tsx", 34] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 145 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 34 + ] ], "translation": "Kann Kommentare ansehen" }, @@ -1231,8 +2071,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 135], - ["src/views/settings/components/RolePermissions.tsx", 24] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 135 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 24 + ] ], "translation": "Kann Listen ansehen" }, @@ -1241,8 +2087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 150], - ["src/views/settings/components/RolePermissions.tsx", 39] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 150 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 39 + ] ], "translation": "Kann Mitglieder ansehen" }, @@ -1251,8 +2103,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 125], - ["src/views/settings/components/RolePermissions.tsx", 14] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 125 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 14 + ] ], "translation": "Kann Workspace ansehen" }, @@ -1261,26 +2119,74 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 49], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 176], - ["src/views/board/components/CardContextDuplicateModal.tsx", 267], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 44], - ["src/views/card/components/Comment.tsx", 195], - ["src/views/card/components/DeleteCardConfirmation.tsx", 86], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 64], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 77], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 55], - ["src/views/onboarding/select-plan/index.tsx", 209], - ["src/views/settings/components/Avatar.tsx", 287], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 168], + [ + "src/components/DeleteLabelConfirmation.tsx", + 49 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 176 + ], + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 267 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 44 + ], + [ + "src/views/card/components/Comment.tsx", + 195 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 86 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 64 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 77 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 55 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 209 + ], + [ + "src/views/settings/components/Avatar.tsx", + 287 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 168 + ], [ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 40 ], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 88], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 108] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 88 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 66 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 98 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 108 + ] ], "translation": "Abbrechen" }, @@ -1288,7 +2194,12 @@ "message": "Card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 317]], + "origin": [ + [ + "src/views/card/index.tsx", + 364 + ] + ], "translation": "Karte" }, "sU2uWc": { @@ -1296,7 +2207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 67] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 67 + ] ], "translation": "Karte dupliziert" }, @@ -1305,8 +2219,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 363], - ["src/views/card/index.tsx", 400] + [ + "src/views/card/index.tsx", + 410 + ], + [ + "src/views/card/index.tsx", + 447 + ] ], "translation": "Karte nicht gefunden" }, @@ -1314,17 +2234,43 @@ "message": "Card title", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 321]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 321 + ] + ], "translation": "Kartentitel" }, + "4630Pc": { + "message": "Card updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 53 + ] + ], + "translation": "" + }, "rQXTmd": { "message": "Card URL copied to clipboard", "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 308], - ["src/views/card/components/Dropdown.tsx", 44], - ["src/views/public/board/CardModal.tsx", 38] + [ + "src/views/board/index.tsx", + 312 + ], + [ + "src/views/card/components/Dropdown.tsx", + 44 + ], + [ + "src/views/public/board/CardModal.tsx", + 38 + ] ], "translation": "Karten-URL in Zwischenablage kopiert" }, @@ -1333,10 +2279,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 88], - ["src/views/settings/AccountSettings.tsx", 98], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 109], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 178] + [ + "src/views/settings/AccountSettings.tsx", + 88 + ], + [ + "src/views/settings/AccountSettings.tsx", + 98 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 109 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 178 + ] ], "translation": "Passwort ändern" }, @@ -1344,25 +2302,43 @@ "message": "Change the application font size.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 63]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 63 + ] + ], "translation": "Schriftgröße der Anwendung ändern." }, "yD3ZSw": { "message": "Change your language preferences.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 53 + ] + ], "translation": "Ändern Sie Ihre Spracheinstellungen." }, "gZxH/p": { "message": "changed the due date to <0>{formattedDate}", "placeholders": { - "formattedDate": ["formattedDate"] + "formattedDate": [ + "formattedDate" + ] }, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 303], - ["src/views/card/components/ActivityList.tsx", 317] + [ + "src/views/card/components/ActivityList.tsx", + 303 + ], + [ + "src/views/card/components/ActivityList.tsx", + 317 + ] ], "translation": "hat das Fälligkeitsdatum auf <0>{formattedDate} geändert" }, @@ -1370,7 +2346,12 @@ "message": "Check out some of our favorite open source projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 61]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 61 + ] + ], "translation": "Schauen Sie sich einige unserer bevorzugten Open-Source-Projekte an." }, "5IXWmO": { @@ -1378,8 +2359,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 43], - ["src/views/auth/signup/index.tsx", 71] + [ + "src/views/auth/login/index.tsx", + 43 + ], + [ + "src/views/auth/signup/index.tsx", + 71 + ] ], "translation": "Überprüfen Sie Ihren Posteingang" }, @@ -1387,7 +2374,12 @@ "message": "Checklist name", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 119]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 119 + ] + ], "translation": "Checklistenname" }, "EH8IL3": { @@ -1395,8 +2387,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 108], - ["src/views/pricing/components/PricingTiers.tsx", 39] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 108 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 39 + ] ], "translation": "Checklisten" }, @@ -1404,7 +2402,12 @@ "message": "Choose a plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 122]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 122 + ] + ], "translation": "Tarif wählen" }, "VHS0aJ": { @@ -1423,7 +2426,12 @@ "message": "Clear any custom member permissions so that all members only inherit permissions from their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 67]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 67 + ] + ], "translation": "Löschen Sie alle benutzerdefinierten Mitgliederberechtigungen, sodass alle Mitglieder nur Berechtigungen von ihren Rollenstandardwerten erben." }, "jL82rC": { @@ -1435,7 +2443,10 @@ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 48 ], - ["src/views/settings/PermissionsSettings.tsx", 80] + [ + "src/views/settings/PermissionsSettings.tsx", + 80 + ] ], "translation": "Benutzerdefinierte Berechtigungen löschen" }, @@ -1443,18 +2454,31 @@ "message": "Clear filters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 227]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 227 + ] + ], "translation": "Filter löschen" }, "RRn9jf": { "message": "Click on the link we've sent to {magicLinkRecipient} to sign in.", "placeholders": { - "magicLinkRecipient": ["magicLinkRecipient"] + "magicLinkRecipient": [ + "magicLinkRecipient" + ] }, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 48], - ["src/views/auth/signup/index.tsx", 76] + [ + "src/views/auth/login/index.tsx", + 48 + ], + [ + "src/views/auth/signup/index.tsx", + 76 + ] ], "translation": "Klicken Sie auf den Link, den wir an {magicLinkRecipient} gesendet haben, um sich anzumelden." }, @@ -1463,9 +2487,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 354], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 172], - ["src/views/settings/components/NewApiKeyModal.tsx", 136] + [ + "src/views/card/index.tsx", + 401 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 172 + ], + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 136 + ] ], "translation": "Schließen" }, @@ -1473,14 +2506,24 @@ "message": "Code Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Code-Review" }, "EvArWh": { "message": "Collaborate seamlessly with your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 91 + ] + ], "translation": "Arbeiten Sie nahtlos mit Ihrem Team zusammen." }, "dtQIWT": { @@ -1488,7 +2531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 309] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 309 + ] ], "translation": "Zusammenarbeit" }, @@ -1497,9 +2543,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 317], - ["src/views/home/components/Features.tsx", 67], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 88] + [ + "src/components/NewWorkspaceForm.tsx", + 317 + ], + [ + "src/views/home/components/Features.tsx", + 67 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 88 + ] ], "translation": "Demnächst verfügbar" }, @@ -1508,8 +2563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 105], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 156] + [ + "src/views/home/components/Features.tsx", + 105 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 156 + ] ], "translation": "Kommentare" }, @@ -1517,65 +2578,112 @@ "message": "Company", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 95 + ] + ], "translation": "Unternehmen" }, "bD8I7O": { "message": "Complete", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 94]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 94 + ] + ], "translation": "Abschließen" }, "cAgBMh": { "message": "Complete control and ownership:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 70]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 70 + ] + ], "translation": "Vollständige Kontrolle und Eigentümerschaft:" }, "Lt+ZP3": { "message": "completed a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 137]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 137 + ] + ], "translation": "hat einen Checklistenpunkt abgeschlossen" }, "29sSki": { "message": "completed checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 249]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 249 + ] + ], "translation": "hat Checklistenpunkt <0>{0} abgeschlossen" }, "tOZp9v": { "message": "Configurable user roles and permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 82]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 82 + ] + ], "translation": "Konfigurierbare Benutzerrollen und Berechtigungen" }, "t0dTPm": { "message": "Configure webhooks to receive notifications when cards are created, updated, moved, or deleted.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 31]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 31 + ] + ], "translation": "Konfigurieren Sie Webhooks, um Benachrichtigungen zu erhalten, wenn Karten erstellt, aktualisiert, verschoben oder gelöscht werden." }, "/f3t6v": { "message": "Configure which actions are allowed for each workspace role. These permissions apply to all members with that role.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 56]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 56 + ] + ], "translation": "Konfigurieren Sie, welche Aktionen für jede Workspace-Rolle erlaubt sind. Diese Berechtigungen gelten für alle Mitglieder mit dieser Rolle." }, "86XI28": { "message": "Confirm your email preferences:", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 81]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 81 + ] + ], "translation": "Bestätigen Sie Ihre E-Mail-Einstellungen:" }, "479pdJ": { @@ -1583,7 +2691,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 150] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 150 + ] ], "translation": "Bestätigen Sie Ihr neues Passwort" }, @@ -1591,42 +2702,72 @@ "message": "Connect", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Verbinden" }, "3jod3l": { "message": "Connect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 212]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 212 + ] + ], "translation": "GitHub verbinden" }, "nk7caK": { "message": "Connect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 162]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 162 + ] + ], "translation": "Trello verbinden" }, "sDLCvT": { "message": "Connect your favorite tools to streamline your workflow.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 122]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 122 + ] + ], "translation": "Verbinden Sie Ihre bevorzugten Tools, um Ihren Workflow zu optimieren." }, "MCIXdZ": { "message": "Connect your GitHub account to import projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 191]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 191 + ] + ], "translation": "Verbinden Sie Ihr GitHub-Konto, um Projekte zu importieren." }, "5eZwRW": { "message": "Connect your Trello account to import boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 149]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 149 + ] + ], "translation": "Verbinden Sie Ihr Trello-Konto, um Boards zu importieren." }, "jfC/xh": { @@ -1634,8 +2775,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 38], - ["src/views/home/components/Header.tsx", 42] + [ + "src/views/home/components/Footer.tsx", + 38 + ], + [ + "src/views/home/components/Header.tsx", + 42 + ] ], "translation": "Kontakt" }, @@ -1643,7 +2790,12 @@ "message": "Contact Sales", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 95]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 95 + ] + ], "translation": "Vertrieb kontaktieren" }, "Bhgd0l": { @@ -1651,9 +2803,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 96], - ["src/views/pricing/components/PricingTiers.tsx", 96] + [ + "src/components/FeedbackModal.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ] ], "translation": "Kontaktieren Sie uns" }, @@ -1661,7 +2822,12 @@ "message": "Content Creation", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 40]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 40 + ] + ], "translation": "Content-Erstellung" }, "xGVfLh": { @@ -1669,8 +2835,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 212], - ["src/views/onboarding/workspace-details/index.tsx", 291] + [ + "src/views/onboarding/select-plan/index.tsx", + 212 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 291 + ] ], "translation": "Weiter" }, @@ -1678,44 +2850,76 @@ "message": "Continue with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "Weiter mit " }, "gkzAEM": { "message": "Continue with {0}", "placeholders": { - "0": ["key === \"oidc\" ? oidcProviderName : provider.name"] + "0": [ + "key === \"oidc\" ? oidcProviderName : provider.name" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 355]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 355 + ] + ], "translation": "Weiter mit {0}" }, "va/3u1": { "message": "Control who can view and edit your boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 86 + ] + ], "translation": "Legen Sie fest, wer Ihre Boards ansehen und bearbeiten kann." }, "zQPhSa": { "message": "Convert to link", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 47]], + "origin": [ + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 47 + ] + ], "translation": "In Link umwandeln" }, "5RkSzq": { "message": "Copy board link", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugButton.tsx", 87]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 87 + ] + ], "translation": "Board-Link kopieren" }, "F0YmUY": { "message": "Copy card link", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 58]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 58 + ] + ], "translation": "Karten-Link kopieren" }, "0utuU6": { @@ -1723,7 +2927,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 257] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 257 + ] ], "translation": "Checklisten kopieren" }, @@ -1732,7 +2939,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 221] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 221 + ] ], "translation": "Labels kopieren" }, @@ -1740,7 +2950,12 @@ "message": "Copy link to card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 62]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 62 + ] + ], "translation": "Link zur Karte kopieren" }, "uvH2xS": { @@ -1748,7 +2963,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 239] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 239 + ] ], "translation": "Mitglieder kopieren" }, @@ -1757,17 +2975,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 305] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 305 + ] ], "translation": "Kernfunktionen" }, "b9XOHo": { "message": "Create {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 166]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 166 + ] + ], "translation": "{0} erstellen" }, "vgdzLf": { @@ -1775,9 +3003,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 213], - ["src/views/board/components/NewCardForm.tsx", 520], - ["src/views/board/components/NewListForm.tsx", 141] + [ + "src/components/LabelForm.tsx", + 213 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 520 + ], + [ + "src/views/board/components/NewListForm.tsx", + 141 + ] ], "translation": "Weitere erstellen" }, @@ -1785,53 +3022,91 @@ "message": "Create API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 175]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 175 + ] + ], "translation": "API-Schlüssel erstellen" }, "dsLT3m": { "message": "Create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 530]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 530 + ] + ], "translation": "Karte erstellen" }, "d33Usy": { "message": "Create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 135]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 135 + ] + ], "translation": "Checkliste erstellen" }, "zKY5xi": { "message": "Create invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 349]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 349 + ] + ], "translation": "Einladungslink erstellen" }, "QtACvI": { "message": "Create label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Label erstellen" }, "XTKtey": { "message": "Create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 153]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 153 + ] + ], "translation": "Liste erstellen" }, "VKoDQD": { "message": "Create new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], "origin": [ - ["src/views/boards/components/BoardsList.tsx", 80], - ["src/views/boards/index.tsx", 41] + [ + "src/views/boards/components/BoardsList.tsx", + 80 + ], + [ + "src/views/boards/index.tsx", + 41 + ] ], "translation": "Neue {0} erstellen" }, @@ -1839,7 +3114,12 @@ "message": "Create new key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 30 + ] + ], "translation": "Neuen Schlüssel erstellen" }, "0+0/3e": { @@ -1847,8 +3127,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewCardForm.tsx", 417], - ["src/views/card/components/LabelSelector.tsx", 101] + [ + "src/views/board/components/NewCardForm.tsx", + 417 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 101 + ] ], "translation": "Neues Label erstellen" }, @@ -1857,8 +3143,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 92], - ["src/views/board/index.tsx", 671] + [ + "src/views/board/index.tsx", + 94 + ], + [ + "src/views/board/index.tsx", + 676 + ] ], "translation": "Neue Liste erstellen" }, @@ -1866,14 +3158,24 @@ "message": "Create template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 132]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 132 + ] + ], "translation": "Vorlage erstellen" }, "SiPp29": { "message": "Create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Webhook erstellen" }, "FdtSNC": { @@ -1881,8 +3183,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 352], - ["src/components/WorkspaceMenu.tsx", 160] + [ + "src/components/NewWorkspaceForm.tsx", + 352 + ], + [ + "src/components/WorkspaceMenu.tsx", + 160 + ] ], "translation": "Workspace erstellen" }, @@ -1890,14 +3198,24 @@ "message": "Created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 236]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 236 + ] + ], "translation": "Erstellt" }, "f8lDFq": { "message": "created the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 124]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 124 + ] + ], "translation": "hat die Karte erstellt" }, "J5nbej": { @@ -1905,9 +3223,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Kritisch" }, @@ -1915,7 +3242,12 @@ "message": "Crop your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 253]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 253 + ] + ], "translation": "Avatar zuschneiden" }, "D3C4Yx": { @@ -1923,7 +3255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 19] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 19 + ] ], "translation": "Aktuelles Passwort ist erforderlich" }, @@ -1931,7 +3266,12 @@ "message": "Custom board templates", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 38 + ] + ], "translation": "Benutzerdefinierte Board-Vorlagen" }, "A42Dqn": { @@ -1939,8 +3279,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 172], - ["src/views/pricing/components/PricingTiers.tsx", 83] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 172 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 83 + ] ], "translation": "Individuelles Branding" }, @@ -1948,28 +3294,48 @@ "message": "Custom domain", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 74]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 74 + ] + ], "translation": "Benutzerdefinierte Domain" }, "2M84k3": { "message": "Custom permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 64]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 64 + ] + ], "translation": "Benutzerdefinierte Berechtigungen" }, "UirJfL": { "message": "Custom SLA", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 105]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 105 + ] + ], "translation": "Benutzerdefiniertes SLA" }, "u2+JIh": { "message": "Custom URLs require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 283]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 283 + ] + ], "translation": "Benutzerdefinierte URLs erfordern ein Upgrade auf einen Pro-Plan" }, "7RpHg/": { @@ -1977,8 +3343,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 100], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 101] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 101 + ] ], "translation": "Benutzerdefinierter Benutzername" }, @@ -1986,7 +3358,12 @@ "message": "Custom usernames require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 220]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 220 + ] + ], "translation": "Benutzerdefinierte Benutzernamen erfordern ein Upgrade auf einen Pro-Tarif" }, "j9IZZ0": { @@ -1994,8 +3371,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 307], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 78] + [ + "src/components/NewWorkspaceForm.tsx", + 307 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 78 + ] ], "translation": "Benutzerdefinierte Workspace-URL" }, @@ -2003,35 +3386,60 @@ "message": "Custom workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 81]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 81 + ] + ], "translation": "Benutzerdefinierter Workspace-Benutzername" }, "n+xLOH": { "message": "Customer Support", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 54]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 54 + ] + ], "translation": "Kundensupport" }, "pvnfJD": { "message": "Dark", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 158]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 158 + ] + ], "translation": "Dunkel" }, "cp1rsD": { "message": "Deactivate invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 348]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 348 + ] + ], "translation": "Einladungslink deaktivieren" }, "bKzM8L": { "message": "Dedicated account manager", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 104]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 104 + ] + ], "translation": "Dedizierter Account-Manager" }, "P8Cunr": { @@ -2039,8 +3447,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 98], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 99] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 98 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 99 + ] ], "translation": "Standard-Benutzername" }, @@ -2049,15 +3463,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 51], - ["src/components/LabelForm.tsx", 228], - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 52], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 47], - ["src/views/card/components/DeleteCardConfirmation.tsx", 92], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 67], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 83], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 73], - ["src/views/settings/components/WebhookList.tsx", 140] + [ + "src/components/DeleteLabelConfirmation.tsx", + 51 + ], + [ + "src/components/LabelForm.tsx", + 228 + ], + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 52 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 47 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 92 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 67 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 83 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 73 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 140 + ] ], "translation": "Löschen" }, @@ -2066,9 +3507,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 70], - ["src/views/settings/AccountSettings.tsx", 80], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 96] + [ + "src/views/settings/AccountSettings.tsx", + 70 + ], + [ + "src/views/settings/AccountSettings.tsx", + 80 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 96 + ] ], "translation": "Account löschen" }, @@ -2076,7 +3526,12 @@ "message": "Delete board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Board löschen" }, "nabda1": { @@ -2084,8 +3539,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMenu.tsx", 74], - ["src/views/card/components/Dropdown.tsx", 76] + [ + "src/views/board/components/CardContextMenu.tsx", + 74 + ], + [ + "src/views/card/components/Dropdown.tsx", + 76 + ] ], "translation": "Karte löschen" }, @@ -2093,21 +3554,36 @@ "message": "Delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 120]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 120 + ] + ], "translation": "Kommentar löschen" }, "lYT7pQ": { "message": "Delete list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 147]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 147 + ] + ], "translation": "Liste löschen" }, "DFjdv0": { "message": "Delete template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Vorlage löschen" }, "snMaH4": { @@ -2115,7 +3591,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 46] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 46 + ] ], "translation": "Webhook löschen" }, @@ -2124,9 +3603,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 106], - ["src/views/settings/WorkspaceSettings.tsx", 125], - ["src/views/settings/WorkspaceSettings.tsx", 136] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 106 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 125 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 136 + ] ], "translation": "Workspace löschen" }, @@ -2134,116 +3622,200 @@ "message": "deleted a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 134]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 134 + ] + ], "translation": "hat eine Checkliste gelöscht" }, "W5r8Qh": { "message": "deleted a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 139]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 139 + ] + ], "translation": "hat ein Checklisten-Element gelöscht" }, "BMkVQ3": { "message": "deleted checklist <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 224]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 224 + ] + ], "translation": "hat Checkliste <0>{0} gelöscht" }, "CHZ1jC": { "message": "deleted checklist item <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 267]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 267 + ] + ], "translation": "hat Checklisten-Element <0>{0} gelöscht" }, "f8fH8W": { "message": "Design", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 45]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 45 + ] + ], "translation": "Design" }, "Odv3J6": { "message": "Disconnect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 223]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 223 + ] + ], "translation": "GitHub trennen" }, "YBBifR": { "message": "Disconnect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 177]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 177 + ] + ], "translation": "Trello trennen" }, "1sRmLC": { "message": "Discuss and collaborate on cards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 106]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 106 + ] + ], "translation": "Diskutieren und arbeiten Sie an Karten zusammen." }, "pfa8F0": { "message": "Display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 36 + ] + ], "translation": "Anzeigename" }, "MlyjJu": { "message": "Display name cannot exceed 280 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 22]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 22 + ] + ], "translation": "Anzeigename darf 280 Zeichen nicht überschreiten" }, "KFJgmZ": { "message": "Display name must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 19 + ] + ], "translation": "Anzeigename muss mindestens 3 Zeichen lang sein" }, "x8GeCD": { "message": "Display name updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 41]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 41 + ] + ], "translation": "Anzeigename aktualisiert" }, "evj0lK": { "message": "Do you offer a free plan?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 83]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 83 + ] + ], "translation": "Bieten Sie einen kostenlosen Plan an?" }, "jDRt4n": { "message": "Do you want to unsubscribe?", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 78]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 78 + ] + ], "translation": "Möchten Sie das Abonnement kündigen?" }, "JyXBgS": { "message": "docs", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 109]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 109 + ] + ], "translation": "Docs" }, "TbjyhA": { "message": "Docs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 20]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 20 + ] + ], "translation": "Docs" }, "TvY/XA": { @@ -2251,12 +3823,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 209], - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36], - ["src/views/home/components/Footer.tsx", 78], - ["src/views/home/components/Header.tsx", 36] + [ + "src/components/UserMenu.tsx", + 209 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ], + [ + "src/views/home/components/Footer.tsx", + 78 + ], + [ + "src/views/home/components/Header.tsx", + 36 + ] ], "translation": "Dokumentation" }, @@ -2264,7 +3854,12 @@ "message": "Don't have an account? <0><1>Sign up", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 63]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 63 + ] + ], "translation": "Noch kein Konto? <0><1>Registrieren" }, "DPfwMq": { @@ -2272,15 +3867,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 36], - ["src/views/board/components/CardContextLabelsModal.tsx", 48], - ["src/views/board/components/CardContextMembersModal.tsx", 68], - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 48], - ["src/views/boards/components/TemplateBoards.tsx", 61] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 36 + ], + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 48 + ], + [ + "src/views/board/components/CardContextMembersModal.tsx", + 68 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 48 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 61 + ] ], "translation": "Fertig" }, @@ -2288,7 +3910,12 @@ "message": "Download failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 142]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 142 + ] + ], "translation": "Download fehlgeschlagen" }, "XicmhT": { @@ -2296,9 +3923,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/Filters.tsx", 171], - ["src/views/board/components/NewCardForm.tsx", 472], - ["src/views/card/index.tsx", 153] + [ + "src/views/board/components/Filters.tsx", + 171 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 472 + ], + [ + "src/views/card/index.tsx", + 155 + ] ], "translation": "Fälligkeitsdatum" }, @@ -2306,28 +3942,48 @@ "message": "Due next month", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 132]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 132 + ] + ], "translation": "Fällig nächsten Monat" }, "iHcdea": { "message": "Due next week", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 127]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 127 + ] + ], "translation": "Fällig nächste Woche" }, "1iShX0": { "message": "Due today", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 117]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 117 + ] + ], "translation": "Heute fällig" }, "zxKs+y": { "message": "Due tomorrow", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 122]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 122 + ] + ], "translation": "Morgen fällig" }, "euc6Ns": { @@ -2335,7 +3991,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Duplizieren" }, @@ -2344,8 +4003,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 111], - ["src/views/board/components/CardContextMenu.tsx", 68] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 111 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 68 + ] ], "translation": "Karte duplizieren" }, @@ -2354,7 +4019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Wird dupliziert…" }, @@ -2363,8 +4031,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 42], - ["src/views/settings/components/WebhookList.tsx", 132] + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 42 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 132 + ] ], "translation": "Bearbeiten" }, @@ -2373,8 +4047,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/BoardDropdown.tsx", 102], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 116] + [ + "src/views/board/components/BoardDropdown.tsx", + 102 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 116 + ] ], "translation": "Board-URL bearbeiten" }, @@ -2382,14 +4062,24 @@ "message": "Edit comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 111]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 111 + ] + ], "translation": "Kommentar bearbeiten" }, "dgr4Kq": { "message": "Edit label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Label bearbeiten" }, "TCOMOO": { @@ -2397,8 +4087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 162], - ["src/views/members/index.tsx", 224] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 162 + ], + [ + "src/views/members/index.tsx", + 224 + ] ], "translation": "Berechtigungen bearbeiten" }, @@ -2406,35 +4102,60 @@ "message": "Edit webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Webhook bearbeiten" }, "klpSmb": { "message": "Edit workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 162]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 162 + ] + ], "translation": "Workspace-URL bearbeiten" }, "PRofO0": { "message": "Edit YouTube Video", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 108]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 108 + ] + ], "translation": "YouTube-Video bearbeiten" }, "gGx5tM": { "message": "Editing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 44]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 44 + ] + ], "translation": "Bearbeitung" }, "b/LfJo": { "message": "email", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "E-Mail" }, "O3oNi5": { @@ -2442,8 +4163,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 272], - ["src/views/settings/AccountSettings.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 272 + ], + [ + "src/views/settings/AccountSettings.tsx", + 43 + ] ], "translation": "E-Mail" }, @@ -2452,7 +4179,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 191] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 191 + ] ], "translation": "E-Mail-Benachrichtigungen" }, @@ -2460,14 +4190,24 @@ "message": "Email notifications for mentions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 60]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 60 + ] + ], "translation": "E-Mail-Benachrichtigungen für Erwähnungen" }, "IqjpYe": { "message": "Email visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 100 + ] + ], "translation": "E-Mail-Sichtbarkeit" }, "bFREhu": { @@ -2475,7 +4215,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 200] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 200 + ] ], "translation": "Ende der Liste" }, @@ -2483,7 +4226,12 @@ "message": "Engineering", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Technik" }, "0+ewPp": { @@ -2491,9 +4239,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Verbesserung" }, @@ -2501,14 +4258,24 @@ "message": "Enter a custom title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 131]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 131 + ] + ], "translation": "Benutzerdefinierten Titel eingeben" }, "rQRXo8": { "message": "Enter new secret to update", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "Neues Secret eingeben, um zu aktualisieren" }, "fR9laE": { @@ -2516,7 +4283,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 122] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 122 + ] ], "translation": "Geben Sie Ihr aktuelles Passwort ein" }, @@ -2525,7 +4295,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 111] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 111 + ] ], "translation": "Geben Sie Ihr aktuelles Passwort ein und wählen Sie ein neues sicheres Passwort." }, @@ -2533,14 +4306,24 @@ "message": "Enter your email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 402]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 402 + ] + ], "translation": "Geben Sie Ihre E-Mail-Adresse ein" }, "n9V+ps": { "message": "Enter your name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 390]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 390 + ] + ], "translation": "Geben Sie Ihren Namen ein" }, "0StR7t": { @@ -2548,7 +4331,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 136] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 136 + ] ], "translation": "Geben Sie Ihr neues Passwort ein" }, @@ -2556,7 +4342,12 @@ "message": "Enter your password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 416]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 416 + ] + ], "translation": "Geben Sie Ihr Passwort ein" }, "GpB8YV": { @@ -2564,8 +4355,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 334], - ["src/views/pricing/components/PricingTiers.tsx", 92] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 334 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 92 + ] ], "translation": "Enterprise" }, @@ -2574,9 +4371,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 77], - ["src/views/boards/components/NewBoardForm.tsx", 92], - ["src/views/members/components/InviteMemberForm.tsx", 215] + [ + "src/views/boards/components/NewBoardForm.tsx", + 77 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 92 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 215 + ] ], "translation": "Fehler" }, @@ -2585,7 +4391,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 89] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 89 + ] ], "translation": "Fehler beim Ändern des Passworts" }, @@ -2593,21 +4402,36 @@ "message": "Error connecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 106]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 106 + ] + ], "translation": "Fehler beim Verbinden von GitHub" }, "cji2nM": { "message": "Error creating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 128]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 128 + ] + ], "translation": "Fehler beim Erstellen des Einladungslinks" }, "USVCGU": { "message": "Error deactivating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 144]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 144 + ] + ], "translation": "Fehler beim Deaktivieren des Einladungslinks" }, "bqAQaT": { @@ -2615,7 +4439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 39] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 39 + ] ], "translation": "Fehler beim Löschen des Kontos" }, @@ -2623,7 +4450,12 @@ "message": "Error deleting label", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 25]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 25 + ] + ], "translation": "Fehler beim Löschen des Labels" }, "9s9O5h": { @@ -2631,7 +4463,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 45] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 45 + ] ], "translation": "Fehler beim Löschen des Arbeitsbereichs" }, @@ -2639,14 +4474,24 @@ "message": "Error disconnecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 129]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 129 + ] + ], "translation": "Fehler beim Trennen von GitHub" }, "lKAvEd": { "message": "Error disconnecting Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 86 + ] + ], "translation": "Fehler beim Trennen von Trello" }, "rarRW/": { @@ -2654,8 +4499,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 97], - ["src/views/members/components/InviteMemberForm.tsx", 103] + [ + "src/views/members/components/InviteMemberForm.tsx", + 97 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 103 + ] ], "translation": "Fehler beim Einladen des Mitglieds" }, @@ -2663,7 +4514,12 @@ "message": "Error updating display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 54]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 54 + ] + ], "translation": "Fehler beim Aktualisieren des Anzeigenamens" }, "CkVV1t": { @@ -2671,7 +4527,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 63 + ] ], "translation": "Fehler beim Aktualisieren der Workspace-Beschreibung" }, @@ -2680,7 +4539,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 58] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 58 + ] ], "translation": "Fehler beim Aktualisieren des Workspace-Namens" }, @@ -2689,7 +4551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 75] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 75 + ] ], "translation": "Fehler beim Aktualisieren der Workspace-URL" }, @@ -2698,8 +4563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 240 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 43 + ] ], "translation": "Fehler beim Upgrade des Abonnements" }, @@ -2707,7 +4578,12 @@ "message": "Error upgrading to Pro", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 146]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 146 + ] + ], "translation": "Fehler beim Upgrade auf Pro", "obsolete": true }, @@ -2716,8 +4592,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/Avatar.tsx", 69], - ["src/views/settings/components/Avatar.tsx", 199] + [ + "src/views/settings/components/Avatar.tsx", + 69 + ], + [ + "src/views/settings/components/Avatar.tsx", + 199 + ] ], "translation": "Fehler beim Hochladen des Profilbilds" }, @@ -2726,8 +4608,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 245], - ["src/views/settings/components/WebhookList.tsx", 224] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 245 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 224 + ] ], "translation": "Ereignisse" }, @@ -2735,42 +4623,72 @@ "message": "Everything in the free plan, plus:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 52 + ] + ], "translation": "Alles aus dem kostenlosen Plan, plus:" }, "ANyn0x": { "message": "Everything you need, free forever. Unlimited boards, unlimited lists, unlimited cards. Upgrade any time.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 33]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 33 + ] + ], "translation": "Alles, was Sie brauchen, für immer kostenlos. Unbegrenzte Boards, unbegrenzte Listen, unbegrenzte Karten. Jederzeit upgraden." }, "t+R8+P": { "message": "Execution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 91]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 91 + ] + ], "translation": "Ausführung" }, "GwNIE2": { "message": "Extended Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 34]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 34 + ] + ], "translation": "Erweiterte Roadmap" }, "HYV6Lq": { "message": "Failed to accept invitation. Please try again later, or contact customer support.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 41]], + "origin": [ + [ + "src/views/invite/index.tsx", + 41 + ] + ], "translation": "Einladung konnte nicht angenommen werden. Bitte versuchen Sie es später erneut oder kontaktieren Sie den Kundensupport." }, "lXvXNI": { "message": "Failed to copy invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 216]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 216 + ] + ], "translation": "Einladungslink konnte nicht kopiert werden" }, "53QYh8": { @@ -2778,8 +4696,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 78], - ["src/views/boards/components/NewBoardForm.tsx", 93] + [ + "src/views/boards/components/NewBoardForm.tsx", + 78 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 93 + ] ], "translation": "Board konnte nicht erstellt werden" }, @@ -2787,7 +4711,12 @@ "message": "Failed to create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 109]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 109 + ] + ], "translation": "Webhook konnte nicht erstellt werden" }, "9YPBHv": { @@ -2795,7 +4724,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 28 + ] ], "translation": "Webhook konnte nicht gelöscht werden" }, @@ -2803,16 +4735,28 @@ "message": "Failed to fetch video information", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 82]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 82 + ] + ], "translation": "Videoinformationen konnten nicht abgerufen werden" }, "YtUfwW": { "message": "Failed to login with {0}. Please try again.", "placeholders": { - "0": ["provider.at(0)?.toUpperCase() + provider.slice(1)"] + "0": [ + "provider.at(0)?.toUpperCase() + provider.slice(1)" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 291]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 291 + ] + ], "translation": "Anmeldung mit {0} fehlgeschlagen. Bitte versuchen Sie es erneut." }, "5ntVtp": { @@ -2820,8 +4764,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 143], - ["src/views/settings/components/WebhookList.tsx", 184] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 143 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 184 + ] ], "translation": "Webhook konnte nicht getestet werden" }, @@ -2829,21 +4779,36 @@ "message": "Failed to update webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 123]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 123 + ] + ], "translation": "Webhook konnte nicht aktualisiert werden" }, "ZL1A+p": { "message": "Failed to upload attachment. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 52]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 52 + ] + ], "translation": "Anhang konnte nicht hochgeladen werden. Bitte versuchen Sie es erneut." }, "/lDBHm": { "message": "FAQ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 41 + ] + ], "translation": "FAQ" }, "aJ4pMe": { @@ -2851,8 +4816,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Faqs.tsx", 143], - ["src/views/home/components/Footer.tsx", 52] + [ + "src/views/home/components/Faqs.tsx", + 143 + ], + [ + "src/views/home/components/Footer.tsx", + 52 + ] ], "translation": "FAQs" }, @@ -2861,9 +4832,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Feature" }, @@ -2871,7 +4851,12 @@ "message": "Feature Request", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 65]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 65 + ] + ], "translation": "Feature-Anfrage" }, "PpZkda": { @@ -2879,10 +4864,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 132], - ["src/views/home/components/Footer.tsx", 50], - ["src/views/home/components/Header.tsx", 17], - ["src/views/home/components/Header.tsx", 33] + [ + "src/views/home/components/Features.tsx", + 132 + ], + [ + "src/views/home/components/Footer.tsx", + 50 + ], + [ + "src/views/home/components/Header.tsx", + 17 + ], + [ + "src/views/home/components/Header.tsx", + 33 + ] ], "translation": "Features" }, @@ -2891,8 +4888,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 59], - ["src/components/UserMenu.tsx", 217] + [ + "src/components/FeedbackModal.tsx", + 59 + ], + [ + "src/components/UserMenu.tsx", + 217 + ] ], "translation": "Feedback" }, @@ -2900,42 +4903,72 @@ "message": "Feedback sent", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 33]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 33 + ] + ], "translation": "Feedback gesendet" }, "F6m23G": { "message": "File uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 89]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 89 + ] + ], "translation": "Datei-Uploads" }, "o7J4JM": { "message": "Filter", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 221]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 221 + ] + ], "translation": "Filter" }, "l31EoQ": { "message": "Find answers to common questions about Kan. Can't find what you're looking for? Feel free to <0>contact us.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 150]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 150 + ] + ], "translation": "Finden Sie Antworten auf häufig gestellte Fragen zu Kan. Können Sie nicht finden, wonach Sie suchen? <0>Kontaktieren Sie uns gerne." }, "q3il6U": { "message": "Font size", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 60]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 60 + ] + ], "translation": "Schriftgröße" }, "+3TYXa": { "message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 41 + ] + ], "translation": "Für langfristige Nachhaltigkeit erkennen wir an, dass alle guten Open-Source-Projekte eine Einnahmequelle benötigen. Unsere stammt aus dem kostenpflichtigen Cloud-Angebot für Workspaces mit mehreren Benutzern und für benutzerdefinierte Workspace-Slugs. Es besteht keine Verpflichtung zur Nutzung, und Sie können die Software kostenlos auf Ihrer eigenen Infrastruktur selbst hosten." }, "2POOFK": { @@ -2943,12 +4976,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 77], - ["src/views/onboarding/select-plan/index.tsx", 78], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 331], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/PricingTiers.tsx", 26] + [ + "src/views/onboarding/select-plan/index.tsx", + 77 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 78 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 331 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 26 + ] ], "translation": "Kostenlos" }, @@ -2956,7 +5007,12 @@ "message": "Free for everyone", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 31]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 31 + ] + ], "translation": "Kostenlos für alle" }, "W/nQk1": { @@ -2964,8 +5020,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 333], - ["src/views/members/index.tsx", 293] + [ + "src/views/members/components/InviteMemberForm.tsx", + 333 + ], + [ + "src/views/members/index.tsx", + 293 + ] ], "translation": "Kostenloser Plan" }, @@ -2973,7 +5035,12 @@ "message": "Free, forever", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 34]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 34 + ] + ], "translation": "Kostenlos, für immer" }, "6uBU1F": { @@ -2981,9 +5048,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 239], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 240], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 241] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 239 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 240 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 241 + ] ], "translation": "Vollständiger API-Zugriff" }, @@ -2991,21 +5067,36 @@ "message": "Full-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Vollzeit" }, "rmN315": { "message": "Fun", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Spaß" }, "Weq9zb": { "message": "General", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 54]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 54 + ] + ], "translation": "Allgemein" }, "ZDIydz": { @@ -3013,12 +5104,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 71], - ["src/views/home/components/Cta.tsx", 61], - ["src/views/home/components/Header.tsx", 106], - ["src/views/pricing/components/PricingTiers.tsx", 29], - ["src/views/pricing/components/PricingTiers.tsx", 50], - ["src/views/pricing/components/PricingTiers.tsx", 73] + [ + "src/views/auth/signup/index.tsx", + 71 + ], + [ + "src/views/home/components/Cta.tsx", + 61 + ], + [ + "src/views/home/components/Header.tsx", + 106 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 29 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 50 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 73 + ] ], "translation": "Loslegen" }, @@ -3027,53 +5136,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 31], - ["src/views/pricing/components/Pricing.tsx", 49] + [ + "src/views/pricing/components/Pricing.tsx", + 31 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 49 + ] ], "translation": "Jetzt starten" }, "6FsGbN": { "message": "Get started by creating a new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Legen Sie los, indem Sie ein neues {0} erstellen" }, "zC8Whw": { "message": "Get started by creating a new list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 656]], + "origin": [ + [ + "src/views/board/index.tsx", + 661 + ] + ], "translation": "Legen Sie los, indem Sie eine neue Liste erstellen" }, "oW13KZ": { "message": "Get started for free today", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 54]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 54 + ] + ], "translation": "Starten Sie noch heute kostenlos" }, "+OhFss": { "message": "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 92]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 92 + ] + ], "translation": "Starten Sie kostenlos ohne Nutzungsbeschränkungen. Für die Zusammenarbeit upgraden Sie auf einen Plan, der zur Größe Ihres Teams passt." }, "rD6UIt": { "message": "Get started on Cloud", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 75]], + "origin": [ + [ + "src/views/home/index.tsx", + 75 + ] + ], "translation": "In der Cloud starten" }, "7hktsm": { "message": "Getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 25 + ] + ], "translation": "Erste Schritte" }, "RkXlPZ": { @@ -3081,8 +5228,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 37], - ["src/views/settings/IntegrationsSettings.tsx", 186] + [ + "src/views/home/components/Footer.tsx", + 37 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 186 + ] ], "translation": "GitHub" }, @@ -3090,21 +5243,36 @@ "message": "GitHub connected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 99]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 99 + ] + ], "translation": "GitHub verbunden" }, "/bBVaD": { "message": "GitHub disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 122]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 122 + ] + ], "translation": "GitHub getrennt" }, "7eMo+U": { "message": "Go Home", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 113]], + "origin": [ + [ + "src/views/invite/index.tsx", + 113 + ] + ], "translation": "Zur Startseite" }, "UveK6V": { @@ -3112,8 +5280,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Header.tsx", 100], - ["src/views/invite/index.tsx", 144] + [ + "src/views/home/components/Header.tsx", + 100 + ], + [ + "src/views/invite/index.tsx", + 144 + ] ], "translation": "Zur App" }, @@ -3122,8 +5296,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 107], - ["src/pages/404.tsx", 44] + [ + "src/components/SideNavigation.tsx", + 108 + ], + [ + "src/pages/404.tsx", + 44 + ] ], "translation": "Zu den Boards" }, @@ -3131,35 +5311,60 @@ "message": "Go to homepage", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 38]], + "origin": [ + [ + "src/pages/404.tsx", + 38 + ] + ], "translation": "Zur Startseite" }, "KAsRdK": { "message": "Go to members", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 131]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 132 + ] + ], "translation": "Zu den Mitgliedern" }, "1WuwiM": { "message": "Go to settings", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 143]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 144 + ] + ], "translation": "Zu den Einstellungen" }, "csFbe+": { "message": "Go to templates", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 119]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 120 + ] + ], "translation": "Zu Vorlagen gehen" }, "SUvm1Y": { "message": "Good for individuals starting out who just need the essentials.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 79]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 79 + ] + ], "translation": "Gut geeignet für Einsteiger, die nur die wichtigsten Funktionen benötigen." }, "cdyS7J": { @@ -3167,9 +5372,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 257], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 258], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 259] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 257 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 258 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 259 + ] ], "translation": "Google SSO" }, @@ -3178,7 +5392,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 260] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 260 + ] ], "translation": "Google SSO + SAML" }, @@ -3186,77 +5403,132 @@ "message": "Guest", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 203]], + "origin": [ + [ + "src/views/members/index.tsx", + 203 + ] + ], "translation": "Gast" }, "CB/NpV": { "message": "High Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Hohe Priorität" }, "XXbgHS": { "message": "Hired", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 80]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 80 + ] + ], "translation": "Eingestellt" }, "SRvxId": { "message": "HMAC secret for signature verification", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "HMAC-Secret zur Signaturverifizierung" }, "LrcnbT": { "message": "Host Kan on your own infrastructure. Ideal for organisations that need complete control over their data.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 69]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 69 + ] + ], "translation": "Hosten Sie Kan auf Ihrer eigenen Infrastruktur. Ideal für Organisationen, die vollständige Kontrolle über ihre Daten benötigen." }, "WI4eGo": { "message": "How do I get a custom URL?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 64]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 64 + ] + ], "translation": "Wie erhalte ich eine benutzerdefinierte URL?" }, "yV7o5I": { "message": "How do I import my Trello boards?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 46]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 46 + ] + ], "translation": "Wie importiere ich meine Trello-Boards?" }, "nol/Fb": { "message": "How do I invite team members?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 108]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 108 + ] + ], "translation": "Wie lade ich Teammitglieder ein?" }, "KuSt9W": { "message": "How do I self-host?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 124]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 124 + ] + ], "translation": "Wie hoste ich selbst?" }, "UeDFpo": { "message": "How is the project funded?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 38]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 38 + ] + ], "translation": "Wie wird das Projekt finanziert?" }, "6S8zjx": { "message": "https://www.youtube.com/watch?v=...", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 151]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 151 + ] + ], "translation": "https://www.youtube.com/watch?v=..." }, "2liqDZ": { @@ -3264,7 +5536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 82] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 82 + ] ], "translation": "Ich bestätige, dass alle meine Kontodaten dauerhaft gelöscht werden und möchte fortfahren." }, @@ -3273,7 +5548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 92] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 92 + ] ], "translation": "Ich bestätige, dass alle Workspace-Daten dauerhaft gelöscht werden und möchte fortfahren." }, @@ -3281,21 +5559,36 @@ "message": "Ideas", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 88]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 88 + ] + ], "translation": "Ideen" }, "F/vB2g": { "message": "Ideas to improve this page...", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 75]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 75 + ] + ], "translation": "Ideen zur Verbesserung dieser Seite..." }, "l3s5ri": { "message": "Import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 73]], + "origin": [ + [ + "src/views/boards/index.tsx", + 73 + ] + ], "translation": "Importieren" }, "2MPcep": { @@ -3303,8 +5596,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 229], - ["src/views/boards/components/ImportBoardsForm.tsx", 381] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 229 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 381 + ] ], "translation": "Import abgeschlossen" }, @@ -3313,8 +5612,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 242], - ["src/views/boards/components/ImportBoardsForm.tsx", 394] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 242 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 394 + ] ], "translation": "Import fehlgeschlagen" }, @@ -3322,28 +5627,48 @@ "message": "Import your Trello boards and hit the ground running.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 96]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 96 + ] + ], "translation": "Importieren Sie Ihre Trello-Boards und legen Sie direkt los." }, "c/IAuR": { "message": "Important", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Wichtig" }, "xMn+V9": { "message": "Importing from Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 27]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 27 + ] + ], "translation": "Importieren von Trello" }, "g2xBxu": { "message": "Importing your Trello boards into Kan is easy. You can follow our step-by-step guide <0>here.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 49]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 49 + ] + ], "translation": "Das Importieren Ihrer Trello-Boards in Kan ist einfach. Sie können unserer Schritt-für-Schritt-Anleitung <0>hier folgen." }, "02i3WU": { @@ -3351,7 +5676,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 313] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 313 + ] ], "translation": "Imports" }, @@ -3359,7 +5687,12 @@ "message": "in", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 167]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 167 + ] + ], "translation": "in" }, "WbTDwg": { @@ -3367,11 +5700,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 58] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 58 + ] ], "translation": "In Bearbeitung" }, @@ -3379,14 +5727,24 @@ "message": "Inactive", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 106]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] + ], "translation": "Inaktiv" }, "6mbe4b": { "message": "Individuals", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 28]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 28 + ] + ], "translation": "Einzelpersonen" }, "nbfdhU": { @@ -3394,8 +5752,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 77], - ["src/views/home/components/Features.tsx", 121] + [ + "src/components/SettingsLayout.tsx", + 77 + ], + [ + "src/views/home/components/Features.tsx", + 121 + ] ], "translation": "Integrationen" }, @@ -3404,7 +5768,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 140] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 140 + ] ], "translation": "Intelligente Suche" }, @@ -3412,42 +5779,72 @@ "message": "Interviewing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 77]], - "translation": "Interviewing" - }, - "XILg0L": { + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 77 + ] + ], + "translation": "Interviewing" + }, + "XILg0L": { "message": "Invalid email address", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 51]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 51 + ] + ], "translation": "Ungültige E-Mail-Adresse" }, "odFCYX": { "message": "Invalid invitation", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 105]], + "origin": [ + [ + "src/views/invite/index.tsx", + 105 + ] + ], "translation": "Ungültige Einladung" }, "MFKlMB": { "message": "Invite", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 306]], + "origin": [ + [ + "src/views/members/index.tsx", + 306 + ] + ], "translation": "Einladen" }, "KLJ4eD": { "message": "Invite link copied", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 209]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 209 + ] + ], "translation": "Einladungslink kopiert" }, "mZGPxt": { "message": "Invite link copied to clipboard", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 210]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 210 + ] + ], "translation": "Einladungslink in Zwischenablage kopiert" }, "D9ROdV": { @@ -3455,8 +5852,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 207], - ["src/views/pricing/components/PricingTiers.tsx", 58] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 207 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 58 + ] ], "translation": "Einladungslinks" }, @@ -3464,7 +5867,12 @@ "message": "Invite links require a Team or Pro subscription. Please upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 123]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 123 + ] + ], "translation": "Einladungslinks erfordern ein Team- oder Pro-Abonnement. Bitte upgraden Sie Ihren Workspace." }, "+djOzj": { @@ -3472,8 +5880,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 115], - ["src/views/members/components/InviteMemberForm.tsx", 367] + [ + "src/views/card/components/MemberSelector.tsx", + 115 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 367 + ] ], "translation": "Mitglied einladen" }, @@ -3481,7 +5895,12 @@ "message": "Inviting members requires a Team Plan. You'll be redirected to upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 336]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 336 + ] + ], "translation": "Das Einladen von Mitgliedern erfordert einen Team-Plan. Sie werden zur Upgrade-Seite Ihres Workspaces weitergeleitet." }, "c9AJhn": { @@ -3489,8 +5908,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/invite/index.tsx", 79], - ["src/views/invite/index.tsx", 129] + [ + "src/views/invite/index.tsx", + 79 + ], + [ + "src/views/invite/index.tsx", + 129 + ] ], "translation": "Workspace beitreten" }, @@ -3498,28 +5923,48 @@ "message": "Join workspace | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 91]], + "origin": [ + [ + "src/views/invite/index.tsx", + 91 + ] + ], "translation": "Workspace beitreten | kan.bn" }, "wM8xd8": { "message": "Junior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Junior" }, "aWDhU5": { "message": "Kanban is better with a team. Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 51]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 51 + ] + ], "translation": "Kanban ist besser im Team. Perfekt für kleine und wachsende Teams, die zusammenarbeiten möchten." }, "Xjj/kS": { "message": "Kanban reimagined", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 136]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 136 + ] + ], "translation": "Kanban neu gedacht" }, "JbXXUW": { @@ -3527,8 +5972,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 57], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 67] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 57 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 67 + ] ], "translation": "Beachten Sie, dass diese Aktion nicht rückgängig gemacht werden kann." }, @@ -3536,7 +5987,12 @@ "message": "Keyboard Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 321]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 321 + ] + ], "translation": "Tastaturkürzel" }, "h8DugX": { @@ -3544,10 +6000,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextLabelsModal.tsx", 31], - ["src/views/board/components/Filters.tsx", 155], - ["src/views/board/components/NewCardForm.tsx", 421], - ["src/views/card/index.tsx", 133] + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 31 + ], + [ + "src/views/board/components/Filters.tsx", + 155 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 421 + ], + [ + "src/views/card/index.tsx", + 135 + ] ], "translation": "Labels" }, @@ -3556,7 +6024,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 124] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 124 + ] ], "translation": "Labels & Filter" }, @@ -3564,21 +6035,36 @@ "message": "Labels & Filters", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 100]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 100 + ] + ], "translation": "Labels & Filter" }, "vXIe7J": { "message": "Language", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 50]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 50 + ] + ], "translation": "Sprache" }, "k7rCa/": { "message": "Large", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 9]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 9 + ] + ], "translation": "Groß" }, "8Is1ih": { @@ -3586,9 +6072,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 300], - ["src/views/pricing/components/PricingTiers.tsx", 159], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 71] + [ + "src/components/NewWorkspaceForm.tsx", + 300 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 159 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 71 + ] ], "translation": "Launch-Angebot" }, @@ -3596,49 +6091,84 @@ "message": "Launch offer: Get unlimited members with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 276]], + "origin": [ + [ + "src/views/members/index.tsx", + 276 + ] + ], "translation": "Launch-Angebot: Unbegrenzte Mitglieder mit Pro" }, "sDuhfK": { "message": "Launch offer: unlimited seats for just $29/month with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 98 + ] + ], "translation": "Launch-Angebot: Unbegrenzte Plätze für nur 29 $/Monat mit Pro" }, "zwWKhA": { "message": "Learn more", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 110]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 110 + ] + ], "translation": "Mehr erfahren" }, "wqxglO": { "message": "Learning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Lernen" }, "vifyyw": { "message": "Legal", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 131]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 131 + ] + ], "translation": "Rechtliches" }, "iQmbPb": { "message": "License", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 45]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 45 + ] + ], "translation": "Lizenz" }, "1njn7W": { "message": "Light", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 172]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 172 + ] + ], "translation": "Hell" }, "TCt/8K": { @@ -3646,7 +6176,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 238] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 238 + ] ], "translation": "Eingeschränkter API-Zugriff" }, @@ -3655,11 +6188,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 80], - ["src/views/board/index.tsx", 306], - ["src/views/card/components/Dropdown.tsx", 42], - ["src/views/public/board/CardModal.tsx", 36], - ["src/views/public/board/index.tsx", 77] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 80 + ], + [ + "src/views/board/index.tsx", + 310 + ], + [ + "src/views/card/components/Dropdown.tsx", + 42 + ], + [ + "src/views/public/board/CardModal.tsx", + 36 + ], + [ + "src/views/public/board/index.tsx", + 77 + ] ], "translation": "Link kopiert" }, @@ -3668,8 +6216,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 117], - ["src/views/card/index.tsx", 124] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 117 + ], + [ + "src/views/card/index.tsx", + 126 + ] ], "translation": "Liste" }, @@ -3677,21 +6231,36 @@ "message": "List name", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 129]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 129 + ] + ], "translation": "Listenname" }, "h16FyT": { "message": "Lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 163]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 163 + ] + ], "translation": "Listen" }, "1rVAfU": { "message": "Load more activities", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Weitere Aktivitäten laden" }, "0qyZ4b": { @@ -3699,7 +6268,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 180] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 180 + ] ], "translation": "Berechtigungen werden geladen ..." }, @@ -3707,56 +6279,96 @@ "message": "Loading...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Wird geladen ..." }, "N/bcWA": { "message": "Login | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 33]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 33 + ] + ], "translation": "Anmelden | kan.bn" }, "nOhz3x": { "message": "Logout", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 227]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 227 + ] + ], "translation": "Abmelden" }, "vuxdLS": { "message": "Long-term", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Langfristig" }, "RHZu7R": { "message": "Loved by teams worldwide", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 236]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 236 + ] + ], "translation": "Weltweit von Teams geliebt" }, "O9jVbx": { "message": "Low Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Niedrige Priorität" }, "JnWJXY": { "message": "magic link", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "Magic-Link" }, "DbZgsJ": { "message": "Make template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 91]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 91 + ] + ], "translation": "Vorlage erstellen" }, "hB02vO": { @@ -3764,46 +6376,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMembersModal.tsx", 51], - ["src/views/board/components/CardContextMenu.tsx", 38] + [ + "src/views/board/components/CardContextMembersModal.tsx", + 51 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 38 + ] ], "translation": "Mitglieder verwalten" }, + "onllUU": { + "message": "Mark all as read", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 155 + ] + ], + "translation": "" + }, "IDvohQ": { "message": "marked a checklist item as incomplete", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 138]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 138 + ] + ], "translation": "hat ein Checklistenelement als unvollständig markiert" }, "jl3aEJ": { "message": "marked checklist item <0>{0} as incomplete", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 258]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 258 + ] + ], "translation": "hat Checklistenelement <0>{0} als unvollständig markiert" }, "vo2a+a": { "message": "Marketing", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Marketing" }, "agPptk": { "message": "Medium", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 8]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 8 + ] + ], "translation": "Mittel" }, "W/Elkg": { "message": "Medium Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Mittlere Priorität" }, "OvoEq7": { @@ -3811,9 +6468,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 55], - ["src/views/card/components/ActivityList.tsx", 88], - ["src/views/members/index.tsx", 202] + [ + "src/views/card/components/ActivityList.tsx", + 55 + ], + [ + "src/views/card/components/ActivityList.tsx", + 88 + ], + [ + "src/views/members/index.tsx", + 202 + ] ], "translation": "Mitglied" }, @@ -3822,22 +6488,47 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 123], - ["src/views/board/components/Filters.tsx", 147], - ["src/views/board/components/NewCardForm.tsx", 379], - ["src/views/card/index.tsx", 143], - ["src/views/members/index.tsx", 263], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 81] + [ + "src/components/SideNavigation.tsx", + 124 + ], + [ + "src/views/board/components/Filters.tsx", + 147 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 379 + ], + [ + "src/views/card/index.tsx", + 145 + ], + [ + "src/views/members/index.tsx", + 263 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 81 + ] ], "translation": "Mitglieder" }, "9u5BOr": { "message": "Members | {0}", "placeholders": { - "0": ["workspace.name ?? t`Workspace`"] + "0": [ + "workspace.name ?? t`Workspace`" + ] }, "comments": [], - "origin": [["src/views/members/index.tsx", 258]], + "origin": [ + [ + "src/views/members/index.tsx", + 258 + ] + ], "translation": "Mitglieder | {0}" }, "/bZzdR": { @@ -3845,7 +6536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 183] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 183 + ] ], "translation": "Erwähnungen" }, @@ -3854,7 +6548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 53 + ] ], "translation": "Montag" }, @@ -3863,9 +6560,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 62], - ["src/views/pricing/components/Pricing.tsx", 14], - ["src/views/pricing/index.tsx", 20] + [ + "src/views/onboarding/select-plan/index.tsx", + 62 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 14 + ], + [ + "src/views/pricing/index.tsx", + 20 + ] ], "translation": "Monatlich" }, @@ -3873,45 +6579,79 @@ "message": "monthly billing", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 159]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 159 + ] + ], "translation": "Monatliche Abrechnung" }, "51UCsN": { "message": "Move to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 44]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 44 + ] + ], "translation": "In andere Liste verschieben" }, "J4+OTA": { "message": "Move to list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 70]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 70 + ] + ], "translation": "In Liste verschieben" }, "BOqTi5": { "message": "moved the card from <0>{0} to<1>{1}", "placeholders": { - "0": ["truncate(fromList)"], - "1": ["truncate(toList)"] + "0": [ + "truncate(fromList)" + ], + "1": [ + "truncate(toList)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 160]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 160 + ] + ], "translation": "hat die Karte von <0>{0} nach <1>{1} verschoben" }, "T7LJic": { "message": "moved the card to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 127]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 127 + ] + ], "translation": "hat die Karte in eine andere Liste verschoben" }, "uEGGDs": { "message": "My webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 209]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 209 + ] + ], "translation": "Mein Webhook" }, "6YtxFj": { @@ -3919,11 +6659,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 135], - ["src/views/board/components/NewTemplateForm.tsx", 118], - ["src/views/boards/components/NewBoardForm.tsx", 134], - ["src/views/settings/components/NewWebhookModal.tsx", 205], - ["src/views/settings/components/WebhookList.tsx", 212] + [ + "src/components/LabelForm.tsx", + 135 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 118 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 134 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 205 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 212 + ] ], "translation": "Name" }, @@ -3931,14 +6686,24 @@ "message": "Navigation", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 55]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 55 + ] + ], "translation": "Navigation" }, "HBI6nY": { "message": "Need help?", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 95]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 95 + ] + ], "translation": "Benötigen Sie Hilfe?" }, "isRobC": { @@ -3946,53 +6711,115 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 95], - ["src/views/home/components/Features.tsx", 73] + [ + "src/views/boards/index.tsx", + 95 + ], + [ + "src/views/home/components/Features.tsx", + 73 + ] ], "translation": "Neu" }, "6WSYbN": { "message": "New {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 120]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 120 + ] + ], "translation": "Neue {0}" }, "TjREUS": { "message": "New API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 147]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 147 + ] + ], "translation": "Neuer API-Schlüssel" }, "pnrmSP": { "message": "New card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 304]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 304 + ] + ], "translation": "Neue Karte" }, "cWcxrL": { "message": "New checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 103]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 103 + ] + ], "translation": "Neue Checkliste" }, + "7Qqqyu": { + "message": "New comment on", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 49 + ] + ], + "translation": "" + }, + "K4xHKu": { + "message": "New comment on a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 50 + ] + ], + "translation": "" + }, "WYwN1G": { "message": "New import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 513]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 513 + ] + ], "translation": "Neuer Import" }, "n1GRql": { "message": "New label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Neues Label" }, "Sb2gYF": { @@ -4000,17 +6827,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewListForm.tsx", 113], - ["src/views/board/index.tsx", 620] + [ + "src/views/board/components/NewListForm.tsx", + 113 + ], + [ + "src/views/board/index.tsx", + 624 + ] ], "translation": "Neue Liste" }, + "pM1sn/": { + "message": "New notification", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 56 + ] + ], + "translation": "" + }, "+MdEsf": { "message": "New password is required", "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 23] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 23 + ] ], "translation": "Neues Passwort ist erforderlich" }, @@ -4019,7 +6867,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 31] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 31 + ] ], "translation": "Neues Passwort muss sich vom aktuellen Passwort unterscheiden" }, @@ -4027,151 +6878,292 @@ "message": "New template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 104]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 104 + ] + ], "translation": "Neue Vorlage" }, "RJA+sg": { "message": "New Ticket", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 56]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 56 + ] + ], "translation": "Neues Ticket" }, "sbNNyi": { "message": "New webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Neuer Webhook" }, "curoK5": { "message": "New workspace", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 208]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 208 + ] + ], "translation": "Neuer Workspace" }, "5ACX4z": { "message": "Newsletter", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Newsletter" }, "HeFWjW": { "message": "Next Steps", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 93]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 93 + ] + ], "translation": "Nächste Schritte" }, "/glL9Q": { "message": "No {0}", "placeholders": { - "0": ["isTemplate ? \"templates\" : \"boards\""] + "0": [ + "isTemplate ? \"templates\" : \"boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "Keine {0}" }, "tlhgDC": { "message": "No archived boards", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "Keine archivierten Boards" }, "Eg99Sc": { "message": "No authentication methods are currently available", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 369]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 369 + ] + ], "translation": "Derzeit sind keine Authentifizierungsmethoden verfügbar" }, "2Bu8xj": { "message": "No boards found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 432]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 432 + ] + ], "translation": "Keine Boards gefunden" }, "OpNhRn": { "message": "No credit card required", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 85]], + "origin": [ + [ + "src/views/home/index.tsx", + 85 + ] + ], "translation": "Keine Kreditkarte erforderlich" }, "MK16u2": { "message": "No dates", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 137]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 137 + ] + ], "translation": "Keine Daten" }, "sY2lzr": { "message": "No download URL available for this attachment.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 143]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 143 + ] + ], "translation": "Für diesen Anhang ist keine Download-URL verfügbar." }, "TXO5TM": { "message": "No keyboard shortcuts registered.", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 334]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 334 + ] + ], "translation": "Keine Tastenkombinationen registriert." }, "hXMFoN": { "message": "No lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 652]], + "origin": [ + [ + "src/views/board/index.tsx", + 657 + ] + ], "translation": "Keine Listen" }, "fvLNDy": { "message": "No lists have been created yet", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 657]], + "origin": [ + [ + "src/views/board/index.tsx", + 662 + ] + ], "translation": "Es wurden noch keine Listen erstellt" }, + "HbXReU": { + "message": "No notifications yet", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 192 + ] + ], + "translation": "" + }, "i30J2U": { "message": "No projects found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 283]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 283 + ] + ], "translation": "Keine Projekte gefunden" }, "ERpq2P": { "message": "No results found for \"{debouncedQuery}\".", "placeholders": { - "debouncedQuery": ["debouncedQuery"] + "debouncedQuery": [ + "debouncedQuery" + ] }, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 183]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 183 + ] + ], "translation": "Keine Ergebnisse für \"{debouncedQuery}\" gefunden." }, "Q9pQaX": { "message": "No roles found for this workspace yet.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 110]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 110 + ] + ], "translation": "Für diesen Workspace wurden noch keine Rollen gefunden." }, "TX0bT7": { "message": "No webhooks configured. Add a webhook to receive notifications.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 194]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 194 + ] + ], "translation": "Keine Webhooks konfiguriert. Fügen Sie einen Webhook hinzu, um Benachrichtigungen zu erhalten." }, + "iDNBZe": { + "message": "Notifications", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 119 + ], + [ + "src/components/NotificationBell.tsx", + 131 + ], + [ + "src/components/NotificationBell.tsx", + 147 + ] + ], + "translation": "" + }, "9h7RDh": { "message": "Offer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 78]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 78 + ] + ], "translation": "Angebot" }, "QnzD50": { @@ -4179,7 +7171,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 245] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 245 + ] ], "translation": "On-Premise" }, @@ -4187,42 +7182,72 @@ "message": "On-premise deployment option", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 106]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 106 + ] + ], "translation": "On-Premise-Bereitstellungsoption" }, "gukxZ5": { "message": "Onboarding", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 79]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 79 + ] + ], "translation": "Onboarding" }, "usVytm": { "message": "Once you delete your account, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 73]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 73 + ] + ], "translation": "Sobald Sie Ihr Konto löschen, gibt es kein Zurück mehr. Diese Aktion kann nicht rückgängig gemacht werden." }, "dmKdk0": { "message": "Once you delete your workspace, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 128]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 128 + ] + ], "translation": "Sobald Sie Ihren Workspace löschen, gibt es kein Zurück mehr. Diese Aktion kann nicht rückgängig gemacht werden." }, "69b7aE": { "message": "Open command menu", "placeholders": {}, "comments": [], - "origin": [["src/components/WorkspaceMenu.tsx", 34]], + "origin": [ + [ + "src/components/WorkspaceMenu.tsx", + 34 + ] + ], "translation": "Befehlsmenü öffnen" }, "cFQEU/": { "message": "Open keyboard shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 172]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 172 + ] + ], "translation": "Tastenkombinationen öffnen" }, "v+Wp++": { @@ -4230,7 +7255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 229] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 229 + ] ], "translation": "Open Source" }, @@ -4238,21 +7266,36 @@ "message": "Open Source Friends", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 58]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 58 + ] + ], "translation": "Open-Source-Freunde" }, "BzEFor": { "message": "or", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 380]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 380 + ] + ], "translation": "oder" }, "ZqDqbi": { "message": "Organize and find cards quickly with powerful filtering tools.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 101]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 101 + ] + ], "translation": "Organisieren und finden Sie Karten schnell mit leistungsstarken Filterwerkzeugen." }, "Un80BR": { @@ -4260,8 +7303,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 39], - ["src/views/oss-friends/index.tsx", 52] + [ + "src/views/home/components/Footer.tsx", + 39 + ], + [ + "src/views/oss-friends/index.tsx", + 52 + ] ], "translation": "OSS Friends" }, @@ -4269,35 +7318,60 @@ "message": "Overdue", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 112]], - "translation": "Überfällig" - }, - "P6dJdq": { + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 112 + ] + ], + "translation": "Überfällig" + }, + "P6dJdq": { "message": "Overrides cleared", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 25 + ] + ], "translation": "Überschreibungen gelöscht" }, "SPLN9O": { "message": "Own your data", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 73]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 73 + ] + ], "translation": "Behalten Sie die Kontrolle über Ihre Daten" }, "8F1i42": { "message": "Page not found", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 24]], + "origin": [ + [ + "src/pages/404.tsx", + 24 + ] + ], "translation": "Seite nicht gefunden" }, "Uworke": { "message": "Part-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Teilzeit" }, "IrZaAn": { @@ -4305,7 +7379,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 69] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 69 + ] ], "translation": "Passwort geändert" }, @@ -4313,14 +7390,24 @@ "message": "Password is required to login.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 258]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 258 + ] + ], "translation": "Passwort ist für die Anmeldung erforderlich." }, "tTbref": { "message": "Password is required to sign up.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 257]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 257 + ] + ], "translation": "Passwort ist für die Registrierung erforderlich." }, "vwGkYB": { @@ -4328,7 +7415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 22] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 22 + ] ], "translation": "Passwort muss mindestens 8 Zeichen lang sein" }, @@ -4337,7 +7427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 27] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 27 + ] ], "translation": "Passwörter stimmen nicht überein" }, @@ -4345,7 +7438,12 @@ "message": "Paused", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "Pausiert" }, "UbYdrA": { @@ -4353,8 +7451,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 120] + [ + "src/views/pricing/components/Pricing.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 120 + ] ], "translation": "Zahlungshäufigkeit" }, @@ -4362,7 +7466,12 @@ "message": "Pending", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "Ausstehend" }, "oVBq1w": { @@ -4370,10 +7479,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 15], - ["src/views/pricing/components/Pricing.tsx", 20], - ["src/views/pricing/index.tsx", 21], - ["src/views/pricing/index.tsx", 26] + [ + "src/views/pricing/components/Pricing.tsx", + 15 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 20 + ], + [ + "src/views/pricing/index.tsx", + 21 + ], + [ + "src/views/pricing/index.tsx", + 26 + ] ], "translation": "pro Benutzer/Monat" }, @@ -4381,28 +7502,48 @@ "message": "Per-seat pricing", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 83]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 83 + ] + ], "translation": "Preisgestaltung pro Arbeitsplatz" }, "mrhyIB": { "message": "Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 52 + ] + ], "translation": "Perfekt für kleine und wachsende Teams, die zusammenarbeiten möchten." }, "TH3Irz": { "message": "Permission", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 119]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 119 + ] + ], "translation": "Berechtigung" }, "9cDpsw": { "message": "Permissions", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 53]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 53 + ] + ], "translation": "Berechtigungen" }, "Jgaz7E": { @@ -4410,7 +7551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 80] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 80 + ] ], "translation": "Berechtigungen zurückgesetzt" }, @@ -4419,8 +7563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 34], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 57] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 34 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 57 + ] ], "translation": "Berechtigungen aktualisiert" }, @@ -4428,14 +7578,24 @@ "message": "Personal Project", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 86]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 86 + ] + ], "translation": "Persönliches Projekt" }, "Oi+J+N": { "message": "Pick a plan to get started. All paid plans include a 14-day free trial.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 125]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 125 + ] + ], "translation": "Wählen Sie einen Tarif, um loszulegen. Alle kostenpflichtigen Tarife beinhalten eine 14-tägige kostenlose Testphase." }, "Iqh0Uv": { @@ -4443,8 +7603,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Geplant" }, @@ -4452,7 +7618,12 @@ "message": "Planning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 90]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 90 + ] + ], "translation": "Planung" }, "F3bW6y": { @@ -4460,7 +7631,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 317] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 317 + ] ], "translation": "Plattform" }, @@ -4469,7 +7643,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 24] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 24 + ] ], "translation": "Bitte bestätigen Sie Ihr neues Passwort" }, @@ -4477,28 +7654,48 @@ "message": "Please enter a valid email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 406]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 406 + ] + ], "translation": "Bitte geben Sie eine gültige E-Mail-Adresse ein" }, "CJ3zUq": { "message": "Please enter a valid name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 394]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 394 + ] + ], "translation": "Bitte geben Sie einen gültigen Namen ein" }, "7b2yuC": { "message": "Please enter a valid password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 421]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 421 + ] + ], "translation": "Bitte geben Sie ein gültiges Passwort ein" }, "jEw0Mr": { "message": "Please enter a valid URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 24 + ] + ], "translation": "Bitte geben Sie eine gültige URL ein" }, "tmlJN1": { @@ -4506,8 +7703,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 58], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 98] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 58 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 98 + ] ], "translation": "Bitte geben Sie eine gültige YouTube-URL ein" }, @@ -4515,7 +7718,12 @@ "message": "Please select a file to upload.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 70]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 70 + ] + ], "translation": "Bitte wählen Sie eine Datei zum Hochladen aus." }, "tyHiOa": { @@ -4523,56 +7731,206 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 26], - ["src/components/FeedbackModal.tsx", 41], - ["src/components/NewWorkspaceForm.tsx", 123], - ["src/views/board/components/BoardDropdown.tsx", 65], - ["src/views/board/components/NewCardForm.tsx", 186], - ["src/views/board/components/NewListForm.tsx", 79], - ["src/views/board/components/NewTemplateForm.tsx", 61], - ["src/views/board/components/NewTemplateForm.tsx", 77], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 73], - ["src/views/board/components/VisibilityButton.tsx", 57], - ["src/views/board/index.tsx", 218], - ["src/views/board/index.tsx", 274], - ["src/views/boards/components/ImportBoardsForm.tsx", 243], - ["src/views/boards/components/ImportBoardsForm.tsx", 395], - ["src/views/card/components/AttachmentThumbnails.tsx", 74], - ["src/views/card/components/ChecklistItemRow.tsx", 67], - ["src/views/card/components/ChecklistItemRow.tsx", 95], - ["src/views/card/components/ChecklistNameInput.tsx", 47], - ["src/views/card/components/Checklists.tsx", 81], - ["src/views/card/components/Comment.tsx", 93], - ["src/views/card/components/DeleteCardConfirmation.tsx", 52], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 38], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 46], - ["src/views/card/components/DueDateSelector.tsx", 64], - ["src/views/card/components/LabelSelector.tsx", 75], - ["src/views/card/components/ListSelector.tsx", 55], - ["src/views/card/components/MemberSelector.tsx", 82], - ["src/views/card/components/NewChecklistForm.tsx", 71], - ["src/views/card/components/NewChecklistItemForm.tsx", 90], - ["src/views/card/components/NewCommentForm.tsx", 37], - ["src/views/card/index.tsx", 232], - ["src/views/card/index.tsx", 245], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 28], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 42], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 65], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 93], - ["src/views/members/components/InviteMemberForm.tsx", 104], - ["src/views/members/components/InviteMemberForm.tsx", 241], - ["src/views/members/index.tsx", 66], - ["src/views/onboarding/workspace-details/index.tsx", 101], - ["src/views/onboarding/workspace-details/index.tsx", 150], - ["src/views/settings/components/Avatar.tsx", 200], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 40], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 46], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 55], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 44], - ["src/views/settings/PermissionsSettings.tsx", 40] + [ + "src/components/DeleteLabelConfirmation.tsx", + 26 + ], + [ + "src/components/FeedbackModal.tsx", + 41 + ], + [ + "src/components/NewWorkspaceForm.tsx", + 123 + ], + [ + "src/views/board/components/BoardDropdown.tsx", + 65 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 186 + ], + [ + "src/views/board/components/NewListForm.tsx", + 79 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 61 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 77 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 73 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 57 + ], + [ + "src/views/board/index.tsx", + 222 + ], + [ + "src/views/board/index.tsx", + 278 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 243 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 395 + ], + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 74 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 68 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 96 + ], + [ + "src/views/card/components/ChecklistNameInput.tsx", + 47 + ], + [ + "src/views/card/components/Checklists.tsx", + 81 + ], + [ + "src/views/card/components/Comment.tsx", + 93 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 52 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 38 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 46 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 64 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 75 + ], + [ + "src/views/card/components/ListSelector.tsx", + 55 + ], + [ + "src/views/card/components/MemberSelector.tsx", + 82 + ], + [ + "src/views/card/components/NewChecklistForm.tsx", + 71 + ], + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 90 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 37 + ], + [ + "src/views/card/index.tsx", + 274 + ], + [ + "src/views/card/index.tsx", + 287 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 28 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 42 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 65 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 93 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 104 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 241 + ], + [ + "src/views/members/index.tsx", + 66 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 101 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 150 + ], + [ + "src/views/settings/components/Avatar.tsx", + 200 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 40 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 46 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 55 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 64 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 59 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 76 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 44 + ], + [ + "src/views/settings/PermissionsSettings.tsx", + 40 + ] ], "translation": "Bitte versuchen Sie es später erneut oder kontaktieren Sie den Kundensupport." }, @@ -4581,8 +7939,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 129], - ["src/views/members/components/InviteMemberForm.tsx", 145] + [ + "src/views/members/components/InviteMemberForm.tsx", + 129 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 145 + ] ], "translation": "Bitte versuchen Sie es später erneut." }, @@ -4591,12 +7955,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 76], - ["src/views/board/components/CardContextMoveListModal.tsx", 42], - ["src/views/board/index.tsx", 315], - ["src/views/card/components/Dropdown.tsx", 51], - ["src/views/public/board/CardModal.tsx", 45], - ["src/views/public/board/index.tsx", 86] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 76 + ], + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 42 + ], + [ + "src/views/board/index.tsx", + 319 + ], + [ + "src/views/card/components/Dropdown.tsx", + 51 + ], + [ + "src/views/public/board/CardModal.tsx", + 45 + ], + [ + "src/views/public/board/index.tsx", + 86 + ] ], "translation": "Bitte versuchen Sie es erneut." }, @@ -4605,7 +7987,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 193] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 193 + ] ], "translation": "Position in Liste (0 = erste, leer lassen für Ende)" }, @@ -4614,12 +7999,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 51], - ["src/views/home/components/Header.tsx", 18], - ["src/views/home/components/Header.tsx", 34], - ["src/views/pricing/components/Pricing.tsx", 85], - ["src/views/pricing/index.tsx", 34], - ["src/views/pricing/index.tsx", 40] + [ + "src/views/home/components/Footer.tsx", + 51 + ], + [ + "src/views/home/components/Header.tsx", + 18 + ], + [ + "src/views/home/components/Header.tsx", + 34 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 85 + ], + [ + "src/views/pricing/index.tsx", + 34 + ], + [ + "src/views/pricing/index.tsx", + 40 + ] ], "translation": "Preise" }, @@ -4628,10 +8031,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 275], - ["src/views/pricing/components/Pricing.tsx", 56], - ["src/views/pricing/components/PricingTiers.tsx", 61], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 95] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 275 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 56 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 61 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 95 + ] ], "translation": "Priorisierter E-Mail-Support" }, @@ -4639,14 +8054,24 @@ "message": "Privacy policy", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 43]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 43 + ] + ], "translation": "Datenschutzerklärung" }, "zwBp5t": { "message": "Private", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 84]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 84 + ] + ], "translation": "Privat" }, "3fPjUY": { @@ -4654,9 +8079,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 333], - ["src/views/pricing/components/PricingTiers.tsx", 70] + [ + "src/views/onboarding/select-plan/index.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 333 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 70 + ] ], "translation": "Pro" }, @@ -4664,84 +8098,156 @@ "message": "Pro Plan", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 290]], + "origin": [ + [ + "src/views/members/index.tsx", + 290 + ] + ], "translation": "Pro-Plan" }, "Qtzfdk": { "message": "Pro Plan ∞", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 322]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ] + ], "translation": "Pro-Plan ∞" }, "0rPv1T": { "message": "Profile image updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 189]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 189 + ] + ], "translation": "Profilbild aktualisiert" }, "4XF0BB": { "message": "Profile picture", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 30 + ] + ], "translation": "Profilbild" }, "7d1a0d": { "message": "Public", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 79]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 79 + ] + ], "translation": "Öffentlich" }, "ABCjd9": { "message": "Publishing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 47]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 47 + ] + ], "translation": "Veröffentlichung" }, "bfgr/e": { "message": "Question", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 66 + ] + ], "translation": "Frage" }, "1H5u1m": { "message": "Questions?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 147]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 147 + ] + ], "translation": "Fragen?" }, "kfOGMr": { "message": "Quick Win", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Quick Win" }, + "09Tv5j": { + "message": "Reconnecting…", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/ConnectionStatus.tsx", + 30 + ] + ], + "translation": "" + }, "6EWT6T": { "message": "Recruitment", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 73]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 73 + ] + ], "translation": "Recruiting" }, "ekCRTP": { "message": "Rejected", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "Abgelehnt" }, "qlAIQ1": { "message": "Remote", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Remote" }, "t/YqKh": { @@ -4749,7 +8255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 58] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 58 + ] ], "translation": "Entfernen" }, @@ -4757,70 +8266,123 @@ "message": "Remove from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 121]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 121 + ] + ], "translation": "Aus Favoriten entfernen" }, "99VIgC": { "message": "Remove member", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 233]], + "origin": [ + [ + "src/views/members/index.tsx", + 233 + ] + ], "translation": "Mitglied entfernen" }, "BZkYSt": { "message": "removed {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 116]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 116 + ] + ], "translation": "hat {0} Labels entfernt: <0>{labelList}" }, "kQwvU8": { "message": "removed a label from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 129]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 129 + ] + ], "translation": "hat ein Label von der Karte entfernt" }, "uck1tz": { "message": "removed a member from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 131]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 131 + ] + ], "translation": "hat ein Mitglied von der Karte entfernt" }, "KEim/+": { "message": "removed an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 141]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 141 + ] + ], "translation": "hat einen Anhang entfernt" }, "zwTiVn": { "message": "removed an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 288]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 288 + ] + ], "translation": "hat einen Anhang entfernt <0>{0}" }, "Qh7QmR": { "message": "Removed from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 54]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 54 + ] + ], "translation": "Aus Favoriten entfernt" }, "YVT40D": { "message": "removed label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 200]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 200 + ] + ], "translation": "hat Label entfernt <0>{0}" }, "aHRWVI": { @@ -4828,8 +8390,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 144], - ["src/views/card/components/ActivityList.tsx", 324] + [ + "src/views/card/components/ActivityList.tsx", + 144 + ], + [ + "src/views/card/components/ActivityList.tsx", + 324 + ] ], "translation": "hat das Fälligkeitsdatum entfernt" }, @@ -4837,25 +8405,44 @@ "message": "renamed a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 133]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 133 + ] + ], "translation": "hat eine Checkliste umbenannt" }, "3ZjRJY": { "message": "renamed checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 216]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 216 + ] + ], "translation": "hat Checkliste umbenannt <0>{0}" }, "NH54UR": { "message": "renamed checklist item to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 240]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 240 + ] + ], "translation": "hat Checklistenelement umbenannt in <0>{0}" }, "Yx0Ud8": { @@ -4863,8 +8450,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Angefordert" }, @@ -4872,7 +8465,12 @@ "message": "Research", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 89]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 89 + ] + ], "translation": "Recherche" }, "e4hPSt": { @@ -4880,7 +8478,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 245] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 245 + ] ], "translation": "Auf Rollenstandards zurücksetzen" }, @@ -4888,21 +8489,36 @@ "message": "Resolution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 60]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 60 + ] + ], "translation": "Auflösung" }, "s+MGs7": { "message": "Resources", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 114 + ] + ], "translation": "Ressourcen" }, "5k0NLb": { "message": "Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 92]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 92 + ] + ], "translation": "Review" }, "/gaSVU": { @@ -4910,10 +8526,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 36], - ["src/views/home/components/Header.tsx", 13], - ["src/views/home/components/Header.tsx", 28], - ["src/views/onboarding/workspace-details/index.tsx", 161] + [ + "src/views/home/components/Footer.tsx", + 36 + ], + [ + "src/views/home/components/Header.tsx", + 13 + ], + [ + "src/views/home/components/Header.tsx", + 28 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] ], "translation": "Roadmap" }, @@ -4921,14 +8549,24 @@ "message": "Role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 328]], + "origin": [ + [ + "src/views/members/index.tsx", + 328 + ] + ], "translation": "Rolle" }, "jQ6I8X": { "message": "Role updated", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 58]], + "origin": [ + [ + "src/views/members/index.tsx", + 58 + ] + ], "translation": "Rolle aktualisiert" }, "RzxgOE": { @@ -4936,7 +8574,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 164] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 164 + ] ], "translation": "Rollen & Berechtigungen" }, @@ -4944,14 +8585,24 @@ "message": "Run on your own infrastructure", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 72]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 72 + ] + ], "translation": "Auf eigener Infrastruktur betreiben" }, "YEOVrT": { "message": "SAML SSO", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 102]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 102 + ] + ], "translation": "SAML SSO" }, "+5kO8P": { @@ -4959,7 +8610,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 54 + ] ], "translation": "Samstag" }, @@ -4968,9 +8622,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 183], - ["src/views/card/components/Comment.tsx", 202], - ["src/views/settings/components/Avatar.tsx", 290] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 183 + ], + [ + "src/views/card/components/Comment.tsx", + 202 + ], + [ + "src/views/settings/components/Avatar.tsx", + 290 + ] ], "translation": "Speichern" }, @@ -4978,42 +8641,72 @@ "message": "Save changes", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Änderungen speichern" }, "MdwUGG": { "message": "Save time with reusable board templates.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 116]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 116 + ] + ], "translation": "Sparen Sie Zeit mit wiederverwendbaren Board-Vorlagen." }, "cOh+MI": { "message": "Screening", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 76]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 76 + ] + ], "translation": "Screening" }, "SkCNhl": { "message": "Search boards and cards...", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 104]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 104 + ] + ], "translation": "Boards und Karten durchsuchen..." }, "e1v+J3": { "message": "Secret (optional)", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 229]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 229 + ] + ], "translation": "Secret (optional)" }, "OkTY4+": { "message": "Secret cannot exceed 512 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 28]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 28 + ] + ], "translation": "Secret darf 512 Zeichen nicht überschreiten" }, "a3LDKx": { @@ -5021,7 +8714,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 321] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 321 + ] ], "translation": "Sicherheit" }, @@ -5029,7 +8725,12 @@ "message": "See what our users are saying about Kan", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 239]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 239 + ] + ], "translation": "Sehen Sie, was unsere Nutzer über Kan sagen" }, "zYRVNp": { @@ -5037,7 +8738,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 131] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 131 + ] ], "translation": "Liste auswählen" }, @@ -5046,8 +8750,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 315], - ["src/views/boards/components/ImportBoardsForm.tsx", 464] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 315 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 464 + ] ], "translation": "Alle auswählen" }, @@ -5055,56 +8765,96 @@ "message": "Select at least one event", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 32]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 32 + ] + ], "translation": "Wählen Sie mindestens ein Ereignis aus" }, "rYUZIe": { "message": "Select source", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Quelle auswählen" }, "ppaRWv": { "message": "Self Host", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 64]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 64 + ] + ], "translation": "Self-Hosting" }, "l2PIAy": { "message": "Self host with Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 81]], + "origin": [ + [ + "src/views/home/index.tsx", + 81 + ] + ], "translation": "Self-Hosting mit Github" }, "VXk54Y": { "message": "self-assigned the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 169 + ] + ], "translation": "hat sich die Karte selbst zugewiesen" }, "RoafuO": { "message": "Send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 116]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 116 + ] + ], "translation": "Feedback senden" }, "eus61c": { "message": "Send test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 310]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 310 + ] + ], "translation": "Test senden" }, "v3YoMA": { "message": "Senior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Senior" }, "8AbRER": { @@ -5112,9 +8862,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 20], - ["src/views/board/components/CardContextMenu.tsx", 56], - ["src/views/card/components/DueDateSelector.tsx", 121] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 20 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 56 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 121 + ] ], "translation": "Fälligkeitsdatum festlegen" }, @@ -5122,14 +8881,24 @@ "message": "set the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 142]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 142 + ] + ], "translation": "hat das Fälligkeitsdatum festgelegt" }, "JjEJSy": { "message": "Set up your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 179]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 179 + ] + ], "translation": "Richten Sie Ihren Workspace ein" }, "Tz0i8g": { @@ -5137,8 +8906,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 102], - ["src/components/SideNavigation.tsx", 135] + [ + "src/components/SettingsLayout.tsx", + 102 + ], + [ + "src/components/SideNavigation.tsx", + 136 + ] ], "translation": "Einstellungen" }, @@ -5146,70 +8921,120 @@ "message": "Settings | Account", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 26 + ] + ], "translation": "Einstellungen | Konto" }, "iy1wb+": { "message": "Settings | API", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 18]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 18 + ] + ], "translation": "Einstellungen | API" }, "ADEin1": { "message": "Settings | Billing", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 35]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 35 + ] + ], "translation": "Einstellungen | Abrechnung" }, "hYzsXr": { "message": "Settings | Integrations", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 138]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 138 + ] + ], "translation": "Einstellungen | Integrationen" }, "F/FPk/": { "message": "Settings | Permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 49 + ] + ], "translation": "Einstellungen | Berechtigungen" }, "+h2faV": { "message": "Settings | Webhooks", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 24]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 24 + ] + ], "translation": "Einstellungen | Webhooks" }, "Ci/KUX": { "message": "Settings | Workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 59]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 59 + ] + ], "translation": "Einstellungen | Workspace" }, "CTqTgr": { "message": "Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 187]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 187 + ] + ], "translation": "Tastenkombinationen" }, "5lWFkC": { "message": "Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 104]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 104 + ] + ], "translation": "Anmelden" }, "n1ekoW": { "message": "Sign In", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 154]], + "origin": [ + [ + "src/views/invite/index.tsx", + 154 + ] + ], "translation": "Anmelden" }, "fcWrnU": { @@ -5217,8 +9042,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 284], - ["src/views/onboarding/workspace-details/index.tsx", 362] + [ + "src/views/onboarding/select-plan/index.tsx", + 284 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 362 + ] ], "translation": "Abmelden" }, @@ -5226,7 +9057,12 @@ "message": "Sign Up", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 162]], + "origin": [ + [ + "src/views/invite/index.tsx", + 162 + ] + ], "translation": "Registrieren" }, "sUZo7y": { @@ -5234,8 +9070,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 36], - ["src/views/auth/signup/index.tsx", 61] + [ + "src/views/auth/signup/index.tsx", + 36 + ], + [ + "src/views/auth/signup/index.tsx", + 61 + ] ], "translation": "Registrieren | kan.bn" }, @@ -5243,21 +9085,36 @@ "message": "Sign up disabled", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 46]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 46 + ] + ], "translation": "Registrierung deaktiviert" }, "s6iE/c": { "message": "Sign up is currently disabled. Please try again later.", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 49]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 49 + ] + ], "translation": "Die Registrierung ist derzeit deaktiviert. Bitte versuchen Sie es später erneut." }, "6FDocz": { "message": "Sign up with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "Registrieren mit " }, "m2nk0i": { @@ -5265,8 +9122,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 89], - ["src/views/pricing/index.tsx", 44] + [ + "src/views/pricing/components/Pricing.tsx", + 89 + ], + [ + "src/views/pricing/index.tsx", + 44 + ] ], "translation": "Einfache Preisgestaltung" }, @@ -5274,7 +9137,12 @@ "message": "Simple, visual task management that just works. Drag and drop cards, collaborate with your team, and get more done.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 139]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 139 + ] + ], "translation": "Einfaches, visuelles Aufgabenmanagement, das einfach funktioniert. Verschieben Sie Karten per Drag-and-drop, arbeiten Sie mit Ihrem Team zusammen und erledigen Sie mehr." }, "zEcnBA": { @@ -5282,7 +9150,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 291] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 291 + ] ], "translation": "SLA" }, @@ -5290,28 +9161,48 @@ "message": "Small", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 7]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 7 + ] + ], "translation": "Klein" }, "++rVAm": { "message": "Social Media", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Social Media" }, "wIb7Ng": { "message": "Software Development", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 22 + ] + ], "translation": "Softwareentwicklung" }, "6sKjjx": { "message": "Solo", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 76]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 76 + ] + ], "translation": "Solo" }, "vnS6Rf": { @@ -5319,7 +9210,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 256] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 256 + ] ], "translation": "SSO" }, @@ -5327,7 +9221,12 @@ "message": "Star on Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 37]], + "origin": [ + [ + "src/views/home/index.tsx", + 37 + ] + ], "translation": "Auf Github mit Stern markieren" }, "veIDCY": { @@ -5335,8 +9234,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 359], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 113] + [ + "src/views/members/components/InviteMemberForm.tsx", + 359 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 113 + ] ], "translation": "14-tägige kostenlose Testversion starten" }, @@ -5344,21 +9249,36 @@ "message": "Start free. Upgrade as your team grows. No hidden fees, no contracts.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/index.tsx", 47]], + "origin": [ + [ + "src/views/pricing/index.tsx", + 47 + ] + ], "translation": "Kostenlos starten. Upgraden Sie, wenn Ihr Team wächst. Keine versteckten Gebühren, keine Verträge." }, "uAQUqI": { "message": "Status", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 230]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 230 + ] + ], "translation": "Status" }, "WYDptz": { "message": "Subscription Required", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 122]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 122 + ] + ], "translation": "Abonnement erforderlich" }, "zzDlyQ": { @@ -5366,8 +9286,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/AuthForm.tsx", 215], - ["src/components/AuthForm.tsx", 232] + [ + "src/components/AuthForm.tsx", + 215 + ], + [ + "src/components/AuthForm.tsx", + 232 + ] ], "translation": "Erfolg" }, @@ -5376,7 +9302,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 52 + ] ], "translation": "Sonntag" }, @@ -5385,7 +9314,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 59] + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 59 + ] ], "translation": "Optimieren Sie Ihren Workspace für nur 29 $/Monat. Das erhalten Sie:" }, @@ -5394,8 +9326,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 198], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 325] + [ + "src/components/UserMenu.tsx", + 198 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 325 + ] ], "translation": "Support" }, @@ -5403,21 +9341,36 @@ "message": "Support the development of the project", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 57]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 57 + ] + ], "translation": "Unterstützen Sie die Entwicklung des Projekts" }, "D+NlUC": { "message": "System", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 144]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 144 + ] + ], "translation": "System" }, "KM6m8p": { "message": "Team", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 83]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 83 + ] + ], "translation": "Team" }, "bff61F": { @@ -5425,8 +9378,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 322], - ["src/views/members/index.tsx", 292] + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ], + [ + "src/views/members/index.tsx", + 292 + ] ], "translation": "Team-Plan" }, @@ -5435,9 +9394,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 332], - ["src/views/pricing/components/Pricing.tsx", 46], - ["src/views/pricing/components/PricingTiers.tsx", 47] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 332 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 46 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 47 + ] ], "translation": "Teams" }, @@ -5446,8 +9414,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/board/index.tsx", 566] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/board/index.tsx", + 570 + ] ], "translation": "Vorlage" }, @@ -5455,28 +9429,48 @@ "message": "Template created", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 67]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 67 + ] + ], "translation": "Vorlage erstellt" }, "QHhZeE": { "message": "Template created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 68]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 68 + ] + ], "translation": "Vorlage erfolgreich erstellt" }, "notwF1": { "message": "Template name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 19]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 19 + ] + ], "translation": "Der Vorlagenname darf 100 Zeichen nicht überschreiten" }, "6OTo9n": { "message": "Template name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 18]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 18 + ] + ], "translation": "Vorlagenname ist erforderlich" }, "iTylMl": { @@ -5484,8 +9478,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 111], - ["src/views/home/components/Features.tsx", 115] + [ + "src/components/SideNavigation.tsx", + 112 + ], + [ + "src/views/home/components/Features.tsx", + 115 + ] ], "translation": "Vorlagen" }, @@ -5493,14 +9493,24 @@ "message": "Terms of service", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 42]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 42 + ] + ], "translation": "Nutzungsbedingungen" }, "NnH3pK": { "message": "Test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 136]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 136 + ] + ], "translation": "Test" }, "itgYbC": { @@ -5508,8 +9518,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 132], - ["src/views/settings/components/WebhookList.tsx", 174] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 132 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 174 + ] ], "translation": "Test-Webhook erfolgreich gesendet!" }, @@ -5517,28 +9533,48 @@ "message": "Testimonials", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 232]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 232 + ] + ], "translation": "Erfahrungsberichte" }, "nhMhRr": { "message": "Thank you for your feedback!", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 34]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 34 + ] + ], "translation": "Vielen Dank für Ihr Feedback!" }, "NcFrgC": { "message": "The board has been archived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 46]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 46 + ] + ], "translation": "Das Board wurde archiviert." }, "C6gv54": { "message": "The board has been unarchived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 47]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 47 + ] + ], "translation": "Das Board wurde wiederhergestellt." }, "nKBUeF": { @@ -5546,7 +9582,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 69] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 69 + ] ], "translation": "Die Karte wurde dupliziert." }, @@ -5555,7 +9594,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 84] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 84 + ] ], "translation": "Das eingegebene aktuelle Passwort ist falsch." }, @@ -5563,7 +9605,12 @@ "message": "The main difference between Kan and Trello is that Kan is open source, allowing anyone to view, modify, and contribute to our code. Our cloud offering also offers no restrictions on features for individual use, whereas Trello locks basic features such as the number of boards you can create behind a paywall.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 33]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 33 + ] + ], "translation": "Der Hauptunterschied zwischen Kan und Trello besteht darin, dass Kan Open Source ist und es jedem ermöglicht, unseren Code einzusehen, zu ändern und dazu beizutragen. Unser Cloud-Angebot bietet außerdem keine Einschränkungen bei den Funktionen für die individuelle Nutzung, während Trello grundlegende Funktionen wie die Anzahl der Boards, die Sie erstellen können, hinter einer Paywall sperrt." }, "6tDFBe": { @@ -5571,8 +9618,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 35], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 58] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 35 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 58 + ] ], "translation": "Die Berechtigungen des Mitglieds wurden aktualisiert." }, @@ -5580,37 +9633,64 @@ "message": "The member's role has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 59]], + "origin": [ + [ + "src/views/members/index.tsx", + 59 + ] + ], "translation": "Die Rolle des Mitglieds wurde aktualisiert." }, "gUX7b+": { "message": "The open source <0/> alternative to Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 65]], + "origin": [ + [ + "src/views/home/index.tsx", + 65 + ] + ], "translation": "Die Open-Source-<0/>Alternative zu Trello" }, "0xD8Of": { "message": "The page you're looking for doesn't exist or has been moved.", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 29]], + "origin": [ + [ + "src/pages/404.tsx", + 29 + ] + ], "translation": "Die gesuchte Seite existiert nicht oder wurde verschoben." }, "fQCrjt": { "message": "The visibility of your board has been set to {0}.", "placeholders": { - "0": ["isPublic ? \"public\" : \"private\""] + "0": [ + "isPublic ? \"public\" : \"private\"" + ] }, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 50]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 50 + ] + ], "translation": "Die Sichtbarkeit Ihres Boards wurde auf {0} gesetzt." }, "FEr96N": { "message": "Theme", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 131]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 131 + ] + ], "translation": "Design" }, "Yf9FAx": { @@ -5618,7 +9698,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 50] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 50 + ] ], "translation": "Sie können nicht mehr auf diesen Workspace zugreifen." }, @@ -5627,11 +9710,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 44], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 39], - ["src/views/card/components/DeleteCardConfirmation.tsx", 78], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 59], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 69] + [ + "src/components/DeleteLabelConfirmation.tsx", + 44 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 39 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 78 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 59 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 69 + ] ], "translation": "Diese Aktion kann nicht rückgängig gemacht werden." }, @@ -5639,28 +9737,48 @@ "message": "This API key will only be shown once. Please save it in a secure location.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 129]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 129 + ] + ], "translation": "Dieser API-Schlüssel wird nur einmal angezeigt. Bitte speichern Sie ihn an einem sicheren Ort." }, "l4asa1": { "message": "This board is private or does not exist", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 184]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 184 + ] + ], "translation": "Dieses Board ist privat oder existiert nicht" }, "wY+6Ye": { "message": "This board URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 136]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 136 + ] + ], "translation": "Diese Board-URL ist bereits vergeben" }, "mTwGOf": { "message": "This invitation link is invalid or has expired.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 108]], + "origin": [ + [ + "src/views/invite/index.tsx", + 108 + ] + ], "translation": "Dieser Einladungslink ist ungültig oder abgelaufen." }, "vlxQFL": { @@ -5668,7 +9786,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 81] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 81 + ] ], "translation": "Die Berechtigungen dieses Mitglieds wurden auf die Standardwerte seiner Rolle zurückgesetzt." }, @@ -5676,14 +9797,24 @@ "message": "This URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 73]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 73 + ] + ], "translation": "Diese URL ist bereits vergeben" }, "gKmoow": { "message": "This URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 75]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 75 + ] + ], "translation": "Diese URL ist reserviert" }, "OAYToL": { @@ -5703,7 +9834,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 70] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 70 + ] ], "translation": "Dies führt zur dauerhaften Löschung aller mit diesem Workspace verbundenen Daten." }, @@ -5712,7 +9846,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 60 + ] ], "translation": "Dies führt zur dauerhaften Löschung aller mit Ihrem Konto verbundenen Daten." }, @@ -5720,14 +9857,24 @@ "message": "This workspace URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 252]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 252 + ] + ], "translation": "Diese Workspace-URL ist bereits vergeben" }, "bJtM0P": { "message": "This workspace URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 254]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 254 + ] + ], "translation": "Diese Workspace-URL ist reserviert" }, "kp6L3T": { @@ -5735,7 +9882,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 125] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 125 + ] ], "translation": "Dieser Workspace-Benutzername ist bereits vergeben" }, @@ -5743,7 +9893,12 @@ "message": "Title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 127]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 127 + ] + ], "translation": "Titel" }, "wK4OTM": { @@ -5751,7 +9906,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 180] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 180 + ] ], "translation": "Titel (optional)" }, @@ -5760,8 +9918,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] ], "translation": "Zu erledigen" }, @@ -5769,21 +9933,36 @@ "message": "Toggle menu", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 114 + ] + ], "translation": "Menü umschalten" }, "L5WQLg": { "message": "Token is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 19]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 19 + ] + ], "translation": "Token ist erforderlich" }, "eEQyz+": { "message": "Track all card changes with detailed activity history.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 111 + ] + ], "translation": "Verfolgen Sie alle Kartenänderungen mit detailliertem Aktivitätsverlauf." }, "dtbpdR": { @@ -5791,8 +9970,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 218], - ["src/views/settings/IntegrationsSettings.tsx", 142] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 218 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 142 + ] ], "translation": "Trello" }, @@ -5800,56 +9985,96 @@ "message": "Trello disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 79]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 79 + ] + ], "translation": "Trello getrennt" }, "kxEs5t": { "message": "Trello imports", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 95 + ] + ], "translation": "Trello-Importe" }, "HO+uOC": { "message": "Triaging", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 57]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 57 + ] + ], "translation": "Triage" }, "o+JCfN": { "message": "Trusted by fast-moving teams<0/>around the world", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Logos.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Logos.tsx", + 67 + ] + ], "translation": "Vertraut von schnellen Teams<0/>auf der ganzen Welt" }, "bZSICm": { "message": "Unable to add checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 89]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 89 + ] + ], "translation": "Checklistenelement konnte nicht hinzugefügt werden" }, "T7DJ2k": { "message": "Unable to add comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewCommentForm.tsx", 36]], + "origin": [ + [ + "src/views/card/components/NewCommentForm.tsx", + 36 + ] + ], "translation": "Kommentar konnte nicht hinzugefügt werden" }, "2Q871c": { "message": "Unable to add label", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 244]], + "origin": [ + [ + "src/views/card/index.tsx", + 286 + ] + ], "translation": "Label konnte nicht hinzugefügt werden" }, "LeM5RY": { "message": "Unable to clear overrides", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 39]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 39 + ] + ], "translation": "Überschreibungen konnten nicht gelöscht werden" }, "W1ewR0": { @@ -5857,10 +10082,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 313], - ["src/views/card/components/Dropdown.tsx", 49], - ["src/views/public/board/CardModal.tsx", 43], - ["src/views/public/board/index.tsx", 84] + [ + "src/views/board/index.tsx", + 317 + ], + [ + "src/views/card/components/Dropdown.tsx", + 49 + ], + [ + "src/views/public/board/CardModal.tsx", + 43 + ], + [ + "src/views/public/board/index.tsx", + 84 + ] ], "translation": "Link konnte nicht kopiert werden" }, @@ -5868,21 +10105,36 @@ "message": "Unable to create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 183]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 183 + ] + ], "translation": "Karte konnte nicht erstellt werden" }, "mHhffx": { "message": "Unable to create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 70]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 70 + ] + ], "translation": "Checkliste konnte nicht erstellt werden" }, "TztLaN": { "message": "Unable to create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 78]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 78 + ] + ], "translation": "Liste konnte nicht erstellt werden" }, "YcyP2z": { @@ -5890,8 +10142,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewTemplateForm.tsx", 60], - ["src/views/board/components/NewTemplateForm.tsx", 76] + [ + "src/views/board/components/NewTemplateForm.tsx", + 60 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 76 + ] ], "translation": "Vorlage konnte nicht erstellt werden" }, @@ -5900,8 +10158,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 122], - ["src/views/onboarding/workspace-details/index.tsx", 100] + [ + "src/components/NewWorkspaceForm.tsx", + 122 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 100 + ] ], "translation": "Workspace konnte nicht erstellt werden" }, @@ -5909,14 +10173,24 @@ "message": "Unable to delete attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 73]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 73 + ] + ], "translation": "Anhang konnte nicht gelöscht werden" }, "Z6r9z1": { "message": "Unable to delete card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 51]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 51 + ] + ], "translation": "Karte konnte nicht gelöscht werden" }, "DahTzR": { @@ -5924,7 +10198,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 37] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 37 + ] ], "translation": "Checkliste konnte nicht gelöscht werden" }, @@ -5932,14 +10209,24 @@ "message": "Unable to delete checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 95 + ] + ], "translation": "Checklistenelement konnte nicht gelöscht werden" }, "2QGEbi": { "message": "Unable to delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 45]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 45 + ] + ], "translation": "Kommentar konnte nicht gelöscht werden" }, "Oo4E6p": { @@ -5947,7 +10234,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 75] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 75 + ] ], "translation": "Karte konnte nicht dupliziert werden" }, @@ -5955,7 +10245,12 @@ "message": "Unable to move card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 41]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 41 + ] + ], "translation": "Karte konnte nicht verschoben werden" }, "8yFGGF": { @@ -5963,7 +10258,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 27] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 27 + ] ], "translation": "Mitglied konnte nicht entfernt werden" }, @@ -5971,7 +10269,12 @@ "message": "Unable to reorder checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Checklists.tsx", 80]], + "origin": [ + [ + "src/views/card/components/Checklists.tsx", + 80 + ] + ], "translation": "Checklisten-Element konnte nicht neu sortiert werden" }, "vfRdCZ": { @@ -5979,7 +10282,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 92] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 92 + ] ], "translation": "Berechtigungen konnten nicht zurückgesetzt werden" }, @@ -5987,35 +10293,60 @@ "message": "Unable to send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 40]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 40 + ] + ], "translation": "Feedback konnte nicht gesendet werden" }, "Q60WUZ": { "message": "Unable to start checkout", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 149]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 149 + ] + ], "translation": "Checkout kann nicht gestartet werden" }, "T7Mywq": { "message": "Unable to update board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 64]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 64 + ] + ], "translation": "Board konnte nicht aktualisiert werden" }, "XpcjLO": { "message": "Unable to update board URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 72]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 72 + ] + ], "translation": "Board-URL konnte nicht aktualisiert werden" }, "Wy6pcF": { "message": "Unable to update board visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 56]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 56 + ] + ], "translation": "Board-Sichtbarkeit konnte nicht aktualisiert werden" }, "o9WLwO": { @@ -6023,8 +10354,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 273], - ["src/views/card/index.tsx", 231] + [ + "src/views/board/index.tsx", + 277 + ], + [ + "src/views/card/index.tsx", + 273 + ] ], "translation": "Karte konnte nicht aktualisiert werden" }, @@ -6032,35 +10369,60 @@ "message": "Unable to update checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistNameInput.tsx", 46]], + "origin": [ + [ + "src/views/card/components/ChecklistNameInput.tsx", + 46 + ] + ], "translation": "Checkliste konnte nicht aktualisiert werden" }, "WQPDcG": { "message": "Unable to update checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 67 + ] + ], "translation": "Checklisten-Element konnte nicht aktualisiert werden" }, "fYVH36": { "message": "Unable to update comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 92]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 92 + ] + ], "translation": "Kommentar konnte nicht aktualisiert werden" }, "C56tim": { "message": "Unable to update due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DueDateSelector.tsx", 63]], + "origin": [ + [ + "src/views/card/components/DueDateSelector.tsx", + 63 + ] + ], "translation": "Fälligkeitsdatum konnte nicht aktualisiert werden" }, "delOXn": { "message": "Unable to update labels", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/LabelSelector.tsx", 74]], + "origin": [ + [ + "src/views/card/components/LabelSelector.tsx", + 74 + ] + ], "translation": "Labels konnten nicht aktualisiert werden" }, "I0gAKM": { @@ -6068,8 +10430,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 217], - ["src/views/card/components/ListSelector.tsx", 54] + [ + "src/views/board/index.tsx", + 221 + ], + [ + "src/views/card/components/ListSelector.tsx", + 54 + ] ], "translation": "Liste konnte nicht aktualisiert werden" }, @@ -6077,7 +10445,12 @@ "message": "Unable to update members", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/MemberSelector.tsx", 81]], + "origin": [ + [ + "src/views/card/components/MemberSelector.tsx", + 81 + ] + ], "translation": "Mitglieder konnten nicht aktualisiert werden" }, "GYv20o": { @@ -6085,8 +10458,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 41], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 64] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 41 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 64 + ] ], "translation": "Berechtigungen konnten nicht aktualisiert werden" }, @@ -6094,44 +10473,76 @@ "message": "Unable to update role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 65]], + "origin": [ + [ + "src/views/members/index.tsx", + 65 + ] + ], "translation": "Rolle konnte nicht aktualisiert werden" }, "It4/FS": { "message": "Unarchive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Board wiederherstellen" }, "E8zYtd": { "message": "unassigned <0>{0} from the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 183]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 183 + ] + ], "translation": "hat <0>{0} von der Karte entfernt" }, "hAMddS": { "message": "unassigned themselves from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 180]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 180 + ] + ], "translation": "hat sich selbst von der Karte entfernt" }, "9Xigls": { "message": "Under Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "In Prüfung" }, "M9p3Vw": { "message": "Unlimited activity log", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 41]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 41 + ] + ], "translation": "Unbegrenztes Aktivitätsprotokoll" }, "1wCGT0": { @@ -6139,12 +10550,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 74], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 75], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 76], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 77], - ["src/views/pricing/components/Pricing.tsx", 37], - ["src/views/pricing/components/PricingTiers.tsx", 36] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 74 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 75 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 76 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 77 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 37 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 36 + ] ], "translation": "Unbegrenzte Boards" }, @@ -6152,7 +10581,12 @@ "message": "Unlimited boards, unlimited lists, unlimited cards. No credit card required.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 57]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 57 + ] + ], "translation": "Unbegrenzte Boards, unbegrenzte Listen, unbegrenzte Karten. Keine Kreditkarte erforderlich." }, "Zz1qkk": { @@ -6160,8 +10594,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 39], - ["src/views/pricing/components/PricingTiers.tsx", 37] + [ + "src/views/pricing/components/Pricing.tsx", + 39 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 37 + ] ], "translation": "Unbegrenzte Karten" }, @@ -6169,7 +10609,12 @@ "message": "Unlimited comments", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 40]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 40 + ] + ], "translation": "Unbegrenzte Kommentare" }, "86FLn5": { @@ -6177,10 +10622,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 92], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 93], - ["src/views/pricing/components/PricingTiers.tsx", 59] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 92 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 93 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 59 + ] ], "translation": "Unbegrenzte Datei-Uploads" }, @@ -6188,7 +10645,12 @@ "message": "Unlimited lists", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 38 + ] + ], "translation": "Unbegrenzte Listen" }, "mx8+1u": { @@ -6196,11 +10658,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 297], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 84], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 85], - ["src/views/pricing/components/PricingTiers.tsx", 80], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 68] + [ + "src/components/NewWorkspaceForm.tsx", + 297 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 84 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 85 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 80 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 68 + ] ], "translation": "Unbegrenzte Mitglieder" }, @@ -6208,14 +10685,24 @@ "message": "Unlimited members and a custom workspace username for teams ready to scale.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 94]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 94 + ] + ], "translation": "Unbegrenzte Mitglieder und ein individueller Workspace-Benutzername für Teams, die wachsen möchten." }, "Ws+3X+": { "message": "Unlimited seats and advanced features for growing teams.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 75]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 75 + ] + ], "translation": "Unbegrenzte Plätze und erweiterte Funktionen für wachsende Teams." }, "SMaFdc": { @@ -6223,8 +10710,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/pages/unsubscribe/index.tsx", 68], - ["src/pages/unsubscribe/index.tsx", 93] + [ + "src/pages/unsubscribe/index.tsx", + 68 + ], + [ + "src/pages/unsubscribe/index.tsx", + 93 + ] ], "translation": "Abmelden" }, @@ -6233,11 +10726,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugForm.tsx", 175], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 80], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 94], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 89], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 157] + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 175 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 80 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 94 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 89 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 157 + ] ], "translation": "Aktualisieren" }, @@ -6245,44 +10753,76 @@ "message": "Update label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Label aktualisieren" }, "L5ZPjz": { "message": "updated a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 136]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 136 + ] + ], "translation": "hat ein Checklisten-Element aktualisiert" }, "tGwwnq": { "message": "updated the description", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 126]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 126 + ] + ], "translation": "hat die Beschreibung aktualisiert" }, "RfgJqw": { "message": "updated the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 143]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 143 + ] + ], "translation": "hat das Fälligkeitsdatum aktualisiert" }, "V3MPSQ": { "message": "updated the title", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 125]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 125 + ] + ], "translation": "hat den Titel aktualisiert" }, "zERArS": { "message": "updated the title to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 152]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 152 + ] + ], "translation": "hat den Titel zu <0>{0} aktualisiert" }, "IelE1h": { @@ -6290,9 +10830,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 55], - ["src/views/settings/WorkspaceSettings.tsx", 118] + [ + "src/components/SideNavigation.tsx", + 242 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 55 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 118 + ] ], "translation": "Auf Pro upgraden" }, @@ -6301,8 +10850,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 337], - ["src/views/onboarding/workspace-details/index.tsx", 243] + [ + "src/components/NewWorkspaceForm.tsx", + 337 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 243 + ] ], "translation": "Auf Pro upgraden (29 $/Monat)" }, @@ -6310,7 +10865,12 @@ "message": "Upload failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 51]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 51 + ] + ], "translation": "Upload fehlgeschlagen" }, "BBUDfW": { @@ -6318,8 +10878,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 50], - ["src/views/boards/components/TemplateBoards.tsx", 67] + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 67 + ] ], "translation": "Dringend" }, @@ -6328,8 +10894,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 217], - ["src/views/settings/components/WebhookList.tsx", 218] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 217 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 218 + ] ], "translation": "URL" }, @@ -6338,8 +10910,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 38], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 38] + [ + "src/components/NewWorkspaceForm.tsx", + 38 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 38 + ] ], "translation": "URL darf nur Buchstaben, Zahlen und Bindestriche enthalten" }, @@ -6347,7 +10925,12 @@ "message": "URL cannot exceed 2048 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 25 + ] + ], "translation": "URL darf 2048 Zeichen nicht überschreiten" }, "i5rE2/": { @@ -6355,8 +10938,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 36], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 36] + [ + "src/components/NewWorkspaceForm.tsx", + 36 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 36 + ] ], "translation": "URL darf maximal 64 Zeichen lang sein" }, @@ -6365,8 +10954,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 34], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 34] + [ + "src/components/NewWorkspaceForm.tsx", + 34 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 34 + ] ], "translation": "URL muss mindestens 3 Zeichen lang sein" }, @@ -6374,112 +10969,208 @@ "message": "Use template", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 154]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 154 + ] + ], "translation": "Vorlage verwenden" }, "n6EWYz": { "message": "Used to sign webhook payloads for verification. Leave blank to keep existing secret.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 239]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 239 + ] + ], "translation": "Wird verwendet, um Webhook-Payloads zur Verifizierung zu signieren. Leer lassen, um das bestehende Secret beizubehalten." }, "7PzzBU": { "message": "User", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 322]], + "origin": [ + [ + "src/views/members/index.tsx", + 322 + ] + ], "translation": "Benutzer" }, "tYN21H": { "message": "User is already a member of this workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 98]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 98 + ] + ], "translation": "Benutzer ist bereits Mitglied dieses Workspaces" }, "vSJd18": { "message": "Video", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Video" }, "FmfJjN": { "message": "View and manage your API keys.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 25 + ] + ], "translation": "API-Schlüssel anzeigen und verwalten." }, "t2nDzl": { "message": "View and manage your billing and subscription.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 42]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 42 + ] + ], "translation": "Rechnungen und Abonnement anzeigen und verwalten." }, "aiHZVP": { "message": "View docs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 67]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 67 + ] + ], "translation": "Dokumentation anzeigen" }, "F8DaWi": { "message": "View only", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 153]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 153 + ] + ], "translation": "Nur ansehen" }, "fSf2ee": { "message": "View our roadmap.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 154]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 154 + ] + ], "translation": "Roadmap anzeigen." }, "U5dMR6": { "message": "View workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 187]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 187 + ] + ], "translation": "Workspace anzeigen" }, + "V8YRD4": { + "message": "Viewing now: {0}", + "placeholders": { + "0": [ + "viewers.map((v) => v.userName).join(\", \")" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 61 + ] + ], + "translation": "" + }, "2q/Q7x": { "message": "Visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 103]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 103 + ] + ], "translation": "Sichtbarkeit" }, "BJbLe4": { "message": "We are using the <0>AGPL-3.0 license.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 94]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 94 + ] + ], "translation": "Wir verwenden die <0>AGPL-3.0-Lizenz." }, "+EkBs0": { "message": "We couldn't update your preferences. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 63]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 63 + ] + ], "translation": "Wir konnten Ihre Einstellungen nicht aktualisieren. Bitte versuchen Sie es erneut." }, "9y1RcT": { "message": "We're just getting started. ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 152]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 152 + ] + ], "translation": "Wir fangen gerade erst an. " }, "GdWB+V": { "message": "Webhook created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 104]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 104 + ] + ], "translation": "Webhook erfolgreich erstellt" }, "2X4ecw": { @@ -6487,7 +11178,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 23] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 23 + ] ], "translation": "Webhook erfolgreich gelöscht" }, @@ -6495,14 +11189,24 @@ "message": "Webhook name cannot exceed 255 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 20]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 20 + ] + ], "translation": "Webhook-Name darf 255 Zeichen nicht überschreiten" }, "U2+rn0": { "message": "Webhook name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 19 + ] + ], "translation": "Webhook-Name ist erforderlich" }, "8iP9oQ": { @@ -6510,8 +11214,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 135], - ["src/views/settings/components/WebhookList.tsx", 177] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 135 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 177 + ] ], "translation": "Webhook-Test fehlgeschlagen" }, @@ -6519,14 +11229,24 @@ "message": "Webhook updated successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 118]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 118 + ] + ], "translation": "Webhook erfolgreich aktualisiert" }, "Hf1cEZ": { "message": "Webhook URL is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 23]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 23 + ] + ], "translation": "Webhook-URL ist erforderlich" }, "v1kQyJ": { @@ -6534,8 +11254,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 71], - ["src/views/settings/WebhookSettings.tsx", 28] + [ + "src/components/SettingsLayout.tsx", + 71 + ], + [ + "src/views/settings/WebhookSettings.tsx", + 28 + ] ], "translation": "Webhooks" }, @@ -6543,42 +11269,72 @@ "message": "Week start day", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 91 + ] + ], "translation": "Wochenbeginn" }, "9eF5oV": { "message": "Welcome back", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 43]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 43 + ] + ], "translation": "Willkommen zurück" }, "xEbBrW": { "message": "What license are you using?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 91 + ] + ], "translation": "Welche Lizenz verwenden Sie?" }, "H5G+qG": { "message": "What's the difference between Kan and Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 30]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 30 + ] + ], "translation": "Was ist der Unterschied zwischen Kan und Trello?" }, "mVZH9V": { "message": "When Trello launched in 2011, it blew everyone away with its carefully designed simplicity, but over the years it lost its magic and grew into something closer to \"Jira Lite\". This project is our attempt to recapture the original magic of Trello's simplicity, in open source.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 25 + ] + ], "translation": "Als Trello 2011 auf den Markt kam, begeisterte es alle mit seiner sorgfältig gestalteten Einfachheit, aber im Laufe der Jahre verlor es seinen Zauber und entwickelte sich zu etwas, das eher \"Jira Lite\" ähnelt. Dieses Projekt ist unser Versuch, den ursprünglichen Zauber der Einfachheit von Trello in Open Source wiederzubeleben." }, "SFnH1j": { "message": "Why make an open source Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 22]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 22 + ] + ], "translation": "Warum ein Open-Source-Trello erstellen?" }, "pmUArF": { @@ -6586,12 +11342,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 47], - ["src/views/board/index.tsx", 530], - ["src/views/boards/index.tsx", 48], - ["src/views/members/index.tsx", 258], - ["src/views/public/board/index.tsx", 125], - ["src/views/public/boards/index.tsx", 75] + [ + "src/components/SettingsLayout.tsx", + 47 + ], + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/members/index.tsx", + 258 + ], + [ + "src/views/public/board/index.tsx", + 125 + ], + [ + "src/views/public/boards/index.tsx", + 75 + ] ], "translation": "Workspace" }, @@ -6599,7 +11373,12 @@ "message": "Workspace created successfully. You can upgrade later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 147]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 147 + ] + ], "translation": "Workspace erfolgreich erstellt. Sie können später in den Einstellungen upgraden.", "obsolete": true }, @@ -6608,7 +11387,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 26] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 26 + ] ], "translation": "Workspace gelöscht" }, @@ -6617,8 +11399,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 253], - ["src/views/settings/WorkspaceSettings.tsx", 82] + [ + "src/views/onboarding/workspace-details/index.tsx", + 253 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 82 + ] ], "translation": "Workspace-Beschreibung" }, @@ -6627,7 +11415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 30] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 30 + ] ], "translation": "Workspace-Beschreibung darf 280 Zeichen nicht überschreiten" }, @@ -6636,7 +11427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 27] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 27 + ] ], "translation": "Workspace-Beschreibung muss mindestens 3 Zeichen lang sein" }, @@ -6645,7 +11439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 50] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 50 + ] ], "translation": "Workspace-Beschreibung aktualisiert" }, @@ -6654,9 +11451,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 90], - ["src/views/pricing/components/Pricing.tsx", 54], - ["src/views/pricing/components/PricingTiers.tsx", 57] + [ + "src/views/home/components/Features.tsx", + 90 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 54 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 57 + ] ], "translation": "Workspace-Mitglieder" }, @@ -6665,9 +11471,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 227], - ["src/views/onboarding/workspace-details/index.tsx", 188], - ["src/views/settings/WorkspaceSettings.tsx", 63] + [ + "src/components/NewWorkspaceForm.tsx", + 227 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 188 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 63 + ] ], "translation": "Workspace-Name" }, @@ -6676,8 +11491,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 30], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 15] + [ + "src/components/NewWorkspaceForm.tsx", + 30 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 15 + ] ], "translation": "Workspace-Name darf 64 Zeichen nicht überschreiten" }, @@ -6685,7 +11506,12 @@ "message": "Workspace name is required", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 29]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 29 + ] + ], "translation": "Workspace-Name ist erforderlich" }, "jZBHkN": { @@ -6693,7 +11519,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 14] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 14 + ] ], "translation": "Der Workspace-Name muss mindestens 3 Zeichen lang sein" }, @@ -6702,7 +11531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 45] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 45 + ] ], "translation": "Workspace-Name aktualisiert" }, @@ -6710,7 +11542,12 @@ "message": "Workspace permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 53 + ] + ], "translation": "Workspace-Berechtigungen" }, "MN6YzG": { @@ -6718,7 +11555,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 62] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 62 + ] ], "translation": "Workspace-Slug aktualisiert" }, @@ -6726,28 +11566,48 @@ "message": "Workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 72]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 72 + ] + ], "translation": "Workspace-URL" }, "DSGzV+": { "message": "Workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 97 + ] + ], "translation": "Workspace-Benutzername" }, "/8pTF/": { "message": "workspace-url", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 241]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 241 + ] + ], "translation": "workspace-url" }, "4kJRen": { "message": "Writing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 43]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 43 + ] + ], "translation": "Schreiben" }, "zkWmBh": { @@ -6755,8 +11615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 19], - ["src/views/pricing/index.tsx", 25] + [ + "src/views/pricing/components/Pricing.tsx", + 19 + ], + [ + "src/views/pricing/index.tsx", + 25 + ] ], "translation": "Jährlich" }, @@ -6764,42 +11630,72 @@ "message": "Yes, we offer an forever free plan for individual use. No restrictions, no paywalls, no limits.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 86 + ] + ], "translation": "Ja, wir bieten einen dauerhaft kostenlosen Plan für die individuelle Nutzung an. Keine Einschränkungen, keine Paywalls, keine Limits." }, "RtlIYB": { "message": "You are about to change your password.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 91 + ] + ], "translation": "Sie sind dabei, Ihr Passwort zu ändern." }, "3WXdoZ": { "message": "You can always change these later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 182]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 182 + ] + ], "translation": "Sie können diese später jederzeit in den Einstellungen ändern." }, "aelko+": { "message": "You can get a custom workspace URL, like <0>kan.bn/kan, by going into your <1>workspace settings and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 67 + ] + ], "translation": "Sie können eine benutzerdefinierte Workspace-URL wie <0>kan.bn/kan erhalten, indem Sie in Ihre <1>Workspace-Einstellungen gehen und ein Pro-Workspace-Abonnement erwerben. Alle Abonnements helfen bei der Finanzierung der Projektentwicklung!" }, "kSxwQL": { "message": "You can invite team members by clicking the \"Invite\" button in the top right corner of the <0>members page and entering their email address. They will receive an email with a link to join the workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 111 + ] + ], "translation": "Sie können Teammitglieder einladen, indem Sie auf die Schaltfläche \"Einladen\" in der oberen rechten Ecke der <0>Mitgliederseite klicken und deren E-Mail-Adresse eingeben. Sie erhalten eine E-Mail mit einem Link, um dem Workspace beizutreten." }, "vAj6xG": { "message": "You can self-host by following the instructions in our <0>repo.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 127]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 127 + ] + ], "translation": "Sie können selbst hosten, indem Sie den Anweisungen in unserem <0>Repo folgen." }, "h2FKMV": { @@ -6807,14 +11703,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/List.tsx", 117], - ["src/views/board/components/UpdateBoardSlugButton.tsx", 58], - ["src/views/board/components/VisibilityButton.tsx", 72], - ["src/views/board/index.tsx", 604], - ["src/views/board/index.tsx", 662], - ["src/views/boards/components/BoardsList.tsx", 71], - ["src/views/boards/index.tsx", 59], - ["src/views/boards/index.tsx", 80] + [ + "src/views/board/components/List.tsx", + 117 + ], + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 58 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 72 + ], + [ + "src/views/board/index.tsx", + 608 + ], + [ + "src/views/board/index.tsx", + 667 + ], + [ + "src/views/boards/components/BoardsList.tsx", + 71 + ], + [ + "src/views/boards/index.tsx", + 59 + ], + [ + "src/views/boards/index.tsx", + 80 + ] ], "translation": "Sie haben keine Berechtigung" }, @@ -6822,49 +11742,180 @@ "message": "You have been logged in successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 233]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 233 + ] + ], "translation": "Sie wurden erfolgreich angemeldet." }, "mchgzf": { "message": "You have been signed up successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 216]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 216 + ] + ], "translation": "Sie haben sich erfolgreich registriert." }, "raHesj": { "message": "You have been unsubscribed!", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 98]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 98 + ] + ], "translation": "Sie wurden abgemeldet!" }, "R275Pz": { "message": "You have unlimited seats with your Pro Plan. There is no additional charge for new members!", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 326]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 326 + ] + ], "translation": "Sie haben unbegrenzte Plätze mit Ihrem Pro-Plan. Es fallen keine zusätzlichen Kosten für neue Mitglieder an!" }, "MdN5zD": { "message": "You need to be an admin to manage workspace permissions.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 86 + ] + ], "translation": "Sie müssen Administrator sein, um Workspace-Berechtigungen zu verwalten." }, + "Cb5YSG": { + "message": "You were added to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 33 + ] + ], + "translation": "" + }, + "EYpSRU": { + "message": "You were added to a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 34 + ] + ], + "translation": "" + }, + "j77sVH": { + "message": "You were assigned to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 45 + ] + ], + "translation": "" + }, + "4sxGcV": { + "message": "You were assigned to a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 46 + ] + ], + "translation": "" + }, + "9HDx2Z": { + "message": "You were mentioned in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 29 + ] + ], + "translation": "" + }, + "e6wIqm": { + "message": "You were mentioned in a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 30 + ] + ], + "translation": "" + }, + "11dHnN": { + "message": "You were removed from", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 37 + ] + ], + "translation": "" + }, + "YdIn4I": { + "message": "You were removed from a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 38 + ] + ], + "translation": "" + }, "2SePRT": { "message": "You've been invited to join a workspace on kan.bn.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 134]], + "origin": [ + [ + "src/views/invite/index.tsx", + 134 + ] + ], "translation": "Sie wurden eingeladen, einem Workspace auf kan.bn beizutreten." }, "uOqaMC": { "message": "You've been invited to join a workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 135]], + "origin": [ + [ + "src/views/invite/index.tsx", + 135 + ] + ], "translation": "Sie wurden eingeladen, einem Workspace beizutreten." }, "GoDLB9": { @@ -6872,7 +11923,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 28 + ] ], "translation": "Ihr Konto wurde gelöscht." }, @@ -6880,49 +11934,84 @@ "message": "Your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 229]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 229 + ] + ], "translation": "Ihr Avatar" }, "evg7+A": { "message": "Your boards have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 382]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 382 + ] + ], "translation": "Ihre Boards wurden importiert." }, "LqWW5F": { "message": "Your display name has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 42]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 42 + ] + ], "translation": "Ihr Anzeigename wurde aktualisiert." }, "tca56/": { "message": "Your file has been uploaded successfully.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 46]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 46 + ] + ], "translation": "Ihre Datei wurde erfolgreich hochgeladen." }, "HcT8J4": { "message": "Your GitHub account has been connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 100 + ] + ], "translation": "Ihr GitHub-Konto wurde verbunden." }, "AdxYds": { "message": "Your GitHub account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 123]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 123 + ] + ], "translation": "Ihr GitHub-Konto wurde getrennt." }, "PELbXB": { "message": "Your GitHub account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 220]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 220 + ] + ], "translation": "Ihr GitHub-Konto ist verbunden." }, "Ozt2vv": { @@ -6930,7 +12019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 70] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 70 + ] ], "translation": "Ihr Passwort wurde geändert." }, @@ -6938,49 +12030,108 @@ "message": "Your profile image has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 190]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 190 + ] + ], "translation": "Ihr Profilbild wurde aktualisiert." }, "+jbXzb": { "message": "Your projects have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 230]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 230 + ] + ], "translation": "Ihre Projekte wurden importiert." }, + "0AfkMq": { + "message": "Your role changed in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 41 + ] + ], + "translation": "" + }, + "GKeVeM": { + "message": "Your role was changed", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 42 + ] + ], + "translation": "" + }, "CJWDTP": { "message": "Your Trello account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 80]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 80 + ] + ], "translation": "Ihr Trello-Konto wurde getrennt." }, "WRsbHO": { "message": "Your Trello account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 171]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 171 + ] + ], "translation": "Ihr Trello-Konto ist verbunden." }, "25fAUC": { "message": "Your unsubscribe link is missing a token. Please open the latest email and try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 33]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 33 + ] + ], "translation": "Ihrem Abmelde-Link fehlt ein Token. Bitte öffnen Sie die neueste E-Mail und versuchen Sie es erneut." }, "GRAGsB": { "message": "Your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 322]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 322 + ] + ], "translation": "Ihr Workspace" }, "j0o6ml": { "message": "Your workspace description", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 325]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 325 + ] + ], "translation": "Ihre Workspace-Beschreibung" }, "GnSSGm": { @@ -6988,7 +12139,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 51] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 51 + ] ], "translation": "Ihre Workspace-Beschreibung wurde aktualisiert." }, @@ -6997,7 +12151,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 27 + ] ], "translation": "Ihr Workspace wurde gelöscht." }, @@ -7006,7 +12163,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 46] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 46 + ] ], "translation": "Ihr Workspace-Name wurde aktualisiert." }, @@ -7015,7 +12175,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 63 + ] ], "translation": "Ihr Workspace-Slug wurde aktualisiert." }, @@ -7024,8 +12187,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 197], - ["src/views/onboarding/workspace-details/index.tsx", 198] + [ + "src/views/onboarding/workspace-details/index.tsx", + 197 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 198 + ] ], "translation": "ihr-workspace" }, @@ -7033,7 +12202,12 @@ "message": "YouTube URL", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 147]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 147 + ] + ], "translation": "YouTube-URL" } } \ No newline at end of file diff --git a/apps/web/src/locales/de/messages.ts b/apps/web/src/locales/de/messages.ts index 653fc9d88..936d2b8c9 100644 --- a/apps/web/src/locales/de/messages.ts +++ b/apps/web/src/locales/de/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Social Media\"],\"+3TYXa\":[\"Für langfristige Nachhaltigkeit erkennen wir an, dass alle guten Open-Source-Projekte eine Einnahmequelle benötigen. Unsere stammt aus dem kostenpflichtigen Cloud-Angebot für Workspaces mit mehreren Benutzern und für benutzerdefinierte Workspace-Slugs. Es besteht keine Verpflichtung zur Nutzung, und Sie können die Software kostenlos auf Ihrer eigenen Infrastruktur selbst hosten.\"],\"+5kO8P\":[\"Samstag\"],\"+8Nek/\":[\"Monatlich\"],\"+EkBs0\":[\"Wir konnten Ihre Einstellungen nicht aktualisieren. Bitte versuchen Sie es erneut.\"],\"+MdEsf\":[\"Neues Passwort ist erforderlich\"],\"+OhFss\":[\"Starten Sie kostenlos ohne Nutzungsbeschränkungen. Für die Zusammenarbeit upgraden Sie auf einen Plan, der zur Größe Ihres Teams passt.\"],\"+VoTOr\":[\"monatlich abgerechnet\"],\"+djOzj\":[\"Mitglied einladen\"],\"+h2faV\":[\"Einstellungen | Webhooks\"],\"+jbXzb\":[\"Ihre Projekte wurden importiert.\"],\"+nvZ6j\":[\"Labels & Filter\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Vorlage\"],\"/asTmx\":[\"Bug-Report\"],\"/bBVaD\":[\"GitHub getrennt\"],\"/bZzdR\":[\"Erwähnungen\"],\"/f3t6v\":[\"Konfigurieren Sie, welche Aktionen für jede Workspace-Rolle erlaubt sind. Diese Berechtigungen gelten für alle Mitglieder mit dieser Rolle.\"],\"/gaSVU\":[\"Roadmap\"],\"/glL9Q\":[\"Keine \",[\"0\"]],\"/jd3aj\":[\"Erweiterte Administrator-Rollen\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"Eine leistungsstarke, flexible Kanban-App, die dir hilft, Arbeit zu organisieren, Fortschritte zu verfolgen und Ergebnisse zu liefern – alles an einem Ort.\"],\"/tOdd2\":[\"Ihr Profilbild wurde aktualisiert.\"],\"0+0/3e\":[\"Neues Label erstellen\"],\"0+ewPp\":[\"Verbesserung\"],\"02i3WU\":[\"Imports\"],\"06EQqT\":[\"Wird dupliziert…\"],\"0KjpAr\":[\"Kann Mitglieder ansehen\"],\"0RE1AJ\":[\"Boards, die du archivierst, werden hier angezeigt.\"],\"0StR7t\":[\"Geben Sie Ihr neues Passwort ein\"],\"0jV46i\":[\"Checklistenelement konnte nicht gelöscht werden\"],\"0qyZ4b\":[\"Berechtigungen werden geladen ...\"],\"0rPv1T\":[\"Profilbild aktualisiert\"],\"0utuU6\":[\"Checklisten kopieren\"],\"0xD8Of\":[\"Die gesuchte Seite existiert nicht oder wurde verschoben.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Board importieren (1)\"],\"other\":[\"Boards importieren (\",[\"boardCount\"],\")\"]}]],\"14Xi3Z\":[\"Das Hinzufügen eines neuen Mitglieds kostet zusätzlich \",[\"price\"],\" (\",[\"billingType\"],\") pro Platz.\"],\"1H5u1m\":[\"Fragen?\"],\"1WuwiM\":[\"Zu den Einstellungen\"],\"1bJKhj\":[\"Link zur Karte kopieren\"],\"1hzdxO\":[\"Workspace-Berechtigungen\"],\"1iShX0\":[\"Heute fällig\"],\"1njn7W\":[\"Hell\"],\"1rVAfU\":[\"Weitere Aktivitäten laden\"],\"1rWxEw\":[\"Wartet auf Kunden\"],\"1sRmLC\":[\"Diskutieren und arbeiten Sie an Karten zusammen.\"],\"1wCGT0\":[\"Unbegrenzte Boards\"],\"25fAUC\":[\"Ihrem Abmelde-Link fehlt ein Token. Bitte öffnen Sie die neueste E-Mail und versuchen Sie es erneut.\"],\"25mvI+\":[\"Einladungslinks erfordern ein Team- oder Pro-Abonnement. Bitte upgraden Sie Ihren Workspace.\"],\"29sSki\":[\"hat Checklistenpunkt <0>\",[\"0\"],\" abgeschlossen\"],\"2BBAbc\":[\"Liste\"],\"2Bu8xj\":[\"Keine Boards gefunden\"],\"2M84k3\":[\"Benutzerdefinierte Berechtigungen\"],\"2MPcep\":[\"Import abgeschlossen\"],\"2POOFK\":[\"Kostenlos\"],\"2Py5S/\":[\"Ich bestätige, dass alle Workspace-Daten dauerhaft gelöscht werden und möchte fortfahren.\"],\"2Q871c\":[\"Label konnte nicht hinzugefügt werden\"],\"2QGEbi\":[\"Kommentar konnte nicht gelöscht werden\"],\"2SePRT\":[\"Sie wurden eingeladen, einem Workspace auf kan.bn beizutreten.\"],\"2X4ecw\":[\"Webhook erfolgreich gelöscht\"],\"2h4PVB\":[\"Ihr Workspace-Name wurde aktualisiert.\"],\"2liqDZ\":[\"Ich bestätige, dass alle meine Kontodaten dauerhaft gelöscht werden und möchte fortfahren.\"],\"2q/Q7x\":[\"Sichtbarkeit\"],\"2roTVj\":[\"Feedback gesendet\"],\"3LDCpD\":[\"Diese Aktion kann nicht rückgängig gemacht werden.\"],\"3WXdoZ\":[\"Sie können diese später jederzeit in den Einstellungen ändern.\"],\"3ZjRJY\":[\"hat Checkliste umbenannt <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Jeder mit diesem Link kann Ihrem Workspace beitreten\"],\"3d54Wj\":[\"Webhook erfolgreich aktualisiert\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"GitHub verbinden\"],\"3pIq39\":[\"Administrator-Rollen\"],\"479pdJ\":[\"Bestätigen Sie Ihr neues Passwort\"],\"4DOCMI\":[\"YouTube-URL\"],\"4Revpc\":[\"Klein\"],\"4RoY9J\":[\"Blogbeitrag\"],\"4XF0BB\":[\"Profilbild\"],\"4gAX8s\":[\"Menü umschalten\"],\"4kJRen\":[\"Schreiben\"],\"4obmDr\":[\"404 - Seite nicht gefunden | kan.bn\"],\"51UCsN\":[\"In andere Liste verschieben\"],\"53QYh8\":[\"Board konnte nicht erstellt werden\"],\"55xJ/O\":[\"Fehler beim Ändern des Passworts\"],\"58AiWX\":[\"Bitte bestätigen Sie Ihr neues Passwort\"],\"5ACX4z\":[\"Newsletter\"],\"5IXWmO\":[\"Überprüfen Sie Ihren Posteingang\"],\"5P4rhH\":[\"Mitglieder konnten nicht aktualisiert werden\"],\"5RkSzq\":[\"Board-Link kopieren\"],\"5eZwRW\":[\"Verbinden Sie Ihr Trello-Konto, um Boards zu importieren.\"],\"5h8ooz\":[\"API-Schlüssel\"],\"5iplxh\":[\"Neues Passwort muss sich vom aktuellen Passwort unterscheiden\"],\"5k0NLb\":[\"Review\"],\"5lWFkC\":[\"Anmelden\"],\"5ntVtp\":[\"Webhook konnte nicht getestet werden\"],\"5y6qY8\":[\"hat einen Anhang hinzugefügt\"],\"69b7aE\":[\"Befehlsmenü öffnen\"],\"6EWT6T\":[\"Recruiting\"],\"6FDocz\":[\"Registrieren mit \"],\"6FsGbN\":[\"Legen Sie los, indem Sie ein neues \",[\"0\"],\" erstellen\"],\"6OTo9n\":[\"Vorlagenname ist erforderlich\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Neue \",[\"0\"]],\"6YtxFj\":[\"Name\"],\"6mbe4b\":[\"Einzelpersonen\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"Die Berechtigungen des Mitglieds wurden aktualisiert.\"],\"6uBU1F\":[\"Vollständiger API-Zugriff\"],\"6zeSBB\":[\"Kann Karten erstellen\"],\"74F7N/\":[\"Möchten Sie Ihr Konto wirklich löschen?\"],\"7EhE4k\":[\"Label aktualisieren\"],\"7L01XJ\":[\"Aktionen\"],\"7PzzBU\":[\"Benutzer\"],\"7RpHg/\":[\"Benutzerdefinierter Benutzername\"],\"7Ufoyg\":[\"Unbegrenzte Listen\"],\"7aONWr\":[\"URL darf 2048 Zeichen nicht überschreiten\"],\"7b2yuC\":[\"Bitte geben Sie ein gültiges Passwort ein\"],\"7d1a0d\":[\"Öffentlich\"],\"7eMo+U\":[\"Zur Startseite\"],\"7hktsm\":[\"Erste Schritte\"],\"7i8j3G\":[\"Unternehmen\"],\"8+BY11\":[\"Board-URL in Zwischenablage kopiert\"],\"86FLn5\":[\"Unbegrenzte Datei-Uploads\"],\"86XI28\":[\"Bestätigen Sie Ihre E-Mail-Einstellungen:\"],\"8AbRER\":[\"Fälligkeitsdatum festlegen\"],\"8AwlaR\":[\"Unbegrenzte Mitglieder und ein individueller Workspace-Benutzername für Teams, die wachsen möchten.\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"8Is1ih\":[\"Launch-Angebot\"],\"8RdLDU\":[\"Persönliches Projekt\"],\"8TveY+\":[\"Boards\"],\"8Z4pNX\":[\"Kann Listen erstellen\"],\"8iP0S8\":[\"Alles aus dem kostenlosen Plan, plus:\"],\"8iP9oQ\":[\"Webhook-Test fehlgeschlagen\"],\"8yFGGF\":[\"Mitglied konnte nicht entfernt werden\"],\"99VIgC\":[\"Mitglied entfernen\"],\"9PaIxv\":[\"Kernfunktionen\"],\"9Xigls\":[\"In Prüfung\"],\"9YPBHv\":[\"Webhook konnte nicht gelöscht werden\"],\"9cDpsw\":[\"Berechtigungen\"],\"9eF5oV\":[\"Willkommen zurück\"],\"9h7RDh\":[\"Angebot\"],\"9lFfqv\":[\"/Monat\"],\"9s9O5h\":[\"Fehler beim Löschen des Arbeitsbereichs\"],\"9u5BOr\":[\"Mitglieder | \",[\"0\"]],\"9wdpwp\":[\"Abrechnungsportal\"],\"9x4DAL\":[[\"0\"],\" nicht gefunden\"],\"9y1RcT\":[\"Wir fangen gerade erst an. \"],\"A23Y7X\":[\"Workspace beitreten | kan.bn\"],\"A42Dqn\":[\"Individuelles Branding\"],\"A5hiCy\":[\"Vorlage erstellen\"],\"A8jqN7\":[\"Feedback konnte nicht gesendet werden\"],\"ABCjd9\":[\"Veröffentlichung\"],\"ADEin1\":[\"Einstellungen | Abrechnung\"],\"ALhEZV\":[\"Kann Mitglieder einladen\"],\"ANyn0x\":[\"Alles, was Sie brauchen, für immer kostenlos. Unbegrenzte Boards, unbegrenzte Listen, unbegrenzte Karten. Jederzeit upgraden.\"],\"ARvBT/\":[\"jährlich abgerechnet\"],\"ASjvm9\":[\"Workspace-URL\"],\"AUYALh\":[\"Demnächst verfügbar\"],\"AX4ktp\":[\"Content-Erstellung\"],\"AZI/wb\":[\"Labels & Filter\"],\"AdxYds\":[\"Ihr GitHub-Konto wurde getrennt.\"],\"AeXO77\":[\"Konto\"],\"Alp2ti\":[\"Vertrieb kontaktieren\"],\"Ax/hYa\":[\"Workspace-Beschreibung darf 280 Zeichen nicht überschreiten\"],\"B3xxao\":[\"Karte hinzufügen\"],\"BBUDfW\":[\"Dringend\"],\"BEVzjL\":[\"Import fehlgeschlagen\"],\"BJbLe4\":[\"Wir verwenden die <0>AGPL-3.0-Lizenz.\"],\"BMkVQ3\":[\"hat Checkliste <0>\",[\"0\"],\" gelöscht\"],\"BOqTi5\":[\"hat die Karte von <0>\",[\"0\"],\" nach <1>\",[\"1\"],\" verschoben\"],\"BTDPLo\":[\"Karte duplizieren\"],\"BZkYSt\":[\"hat \",[\"0\"],\" Labels entfernt: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Möchten Sie den Workspace \",[\"0\"],\" wirklich löschen?\"],\"Bhgd0l\":[\"Kontaktieren Sie uns\"],\"BzEFor\":[\"oder\"],\"C56tim\":[\"Fälligkeitsdatum konnte nicht aktualisiert werden\"],\"C6gv54\":[\"Das Board wurde wiederhergestellt.\"],\"CAL6E9\":[\"Teams\"],\"CB/NpV\":[\"Hohe Priorität\"],\"CHZ1jC\":[\"hat Checklisten-Element <0>\",[\"0\"],\" gelöscht\"],\"CJ3zUq\":[\"Bitte geben Sie einen gültigen Namen ein\"],\"CJWDTP\":[\"Ihr Trello-Konto wurde getrennt.\"],\"CJukzS\":[[\"0\"],\" Labels\"],\"CTqTgr\":[\"Tastenkombinationen\"],\"CYWHT+\":[\"Fehler beim Hochladen des Profilbilds\"],\"Cd4sTD\":[\"Ideal für Einzelpersonen und Solo-Kreative, die gerade anfangen\"],\"Ci/KUX\":[\"Einstellungen | Workspace\"],\"CkVV1t\":[\"Fehler beim Aktualisieren der Workspace-Beschreibung\"],\"Cmudpi\":[\"Kann Workspace löschen\"],\"CozWO1\":[\"Workspace-Name\"],\"CujNX4\":[\"hat einen Anhang hinzugefügt <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"System\"],\"D0esZz\":[\"Aktivitätsprotokoll\"],\"D3C4Yx\":[\"Aktuelles Passwort ist erforderlich\"],\"D7/JvJ\":[\"Passen Sie den quadratischen Zuschnitt an Ihren Avatar an.\"],\"D9ROdV\":[\"Einladungslinks\"],\"DAV3uK\":[\"Berechtigungen aktualisiert\"],\"DBC3t5\":[\"Sonntag\"],\"DFjdv0\":[\"Vorlage löschen\"],\"DMeWZD\":[\"Möchten Sie \",[\"0\"],\" wirklich löschen?\"],\"DPfwMq\":[\"Fertig\"],\"DSGzV+\":[\"Workspace-Benutzername\"],\"DahTzR\":[\"Checkliste konnte nicht gelöscht werden\"],\"DbZgsJ\":[\"Vorlage erstellen\"],\"DtXlZq\":[\"Checkliste konnte nicht aktualisiert werden\"],\"Dz63YI\":[\"Beim Trennen Ihres GitHub-Kontos ist ein Fehler aufgetreten.\"],\"E0t3jO\":[\"hat Checklisten-Element <0>\",[\"0\"],\" hinzugefügt\"],\"E6wBCJ\":[\"Preisgestaltung pro Arbeitsplatz\"],\"E8zYtd\":[\"hat <0>\",[\"0\"],\" von der Karte entfernt\"],\"ECJKc4\":[\"API-Schlüssel erstellt\"],\"EEHmPC\":[\"Launch-Angebot: Unbegrenzte Mitglieder mit Pro\"],\"EH8IL3\":[\"Checklisten\"],\"EII/X8\":[\"Alle Teams-Features +\"],\"ERpq2P\":[\"Keine Ergebnisse für \\\"\",[\"debouncedQuery\"],\"\\\" gefunden.\"],\"ESClHO\":[\"Priorisierter E-Mail-Support\"],\"Eg99Sc\":[\"Derzeit sind keine Authentifizierungsmethoden verfügbar\"],\"Eit43O\":[\"hat das Fälligkeitsdatum festgelegt\"],\"EkH9pt\":[\"Aktualisieren\"],\"EvArWh\":[\"Arbeiten Sie nahtlos mit Ihrem Team zusammen.\"],\"F/FPk/\":[\"Einstellungen | Berechtigungen\"],\"F/vB2g\":[\"Ideen zur Verbesserung dieser Seite...\"],\"F0YmUY\":[\"Karten-Link kopieren\"],\"F3bW6y\":[\"Plattform\"],\"F4KRmY\":[\"8 $/Monat\"],\"F4PLG4\":[\"Workspace-Beschreibung aktualisiert\"],\"F6m23G\":[\"Datei-Uploads\"],\"F6pfE9\":[\"Aktiv\"],\"F8DaWi\":[\"Nur ansehen\"],\"FEr96N\":[\"Design\"],\"FdtSNC\":[\"Workspace erstellen\"],\"FmN5me\":[\"Auflösung\"],\"FmfJjN\":[\"API-Schlüssel anzeigen und verwalten.\"],\"Fpci8b\":[\"Möchten Sie diese Checkliste wirklich löschen?\"],\"G1Gw0v\":[\"Neue Vorlage\"],\"GAD3Dx\":[\"Benutzerdefinierte Domain\"],\"GDvlUT\":[\"Rolle\"],\"GRAGsB\":[\"Ihr Workspace\"],\"GYv20o\":[\"Berechtigungen konnten nicht aktualisiert werden\"],\"GdWB+V\":[\"Webhook erfolgreich erstellt\"],\"GnRmu4\":[\"Checklistenname\"],\"GnSSGm\":[\"Ihre Workspace-Beschreibung wurde aktualisiert.\"],\"GoDLB9\":[\"Ihr Konto wurde gelöscht.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Erweiterte Roadmap\"],\"Gxxi5J\":[\"Checkliste hinzufügen\"],\"H5G+qG\":[\"Was ist der Unterschied zwischen Kan und Trello?\"],\"HBI6nY\":[\"Benötigen Sie Hilfe?\"],\"HO+uOC\":[\"Triage\"],\"HQVm6e\":[\"Diese URL ist bereits vergeben\"],\"HVIzNO\":[\"Kann Listen ansehen\"],\"HYV6Lq\":[\"Einladung konnte nicht angenommen werden. Bitte versuchen Sie es später erneut oder kontaktieren Sie den Kundensupport.\"],\"HcT8J4\":[\"Ihr GitHub-Konto wurde verbunden.\"],\"HeFWjW\":[\"Nächste Schritte\"],\"Hf1cEZ\":[\"Webhook-URL ist erforderlich\"],\"Hg1qE9\":[\"Ihr Workspace-Slug wurde aktualisiert.\"],\"I+AROe\":[\"Kann Karten bearbeiten\"],\"I0gAKM\":[\"Liste konnte nicht aktualisiert werden\"],\"IDvohQ\":[\"hat ein Checklistenelement als unvollständig markiert\"],\"IFgUX6\":[\"Kann Mitglieder entfernen\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Auf Pro upgraden\"],\"Iqh0Uv\":[\"Geplant\"],\"IqjpYe\":[\"E-Mail-Sichtbarkeit\"],\"IrZaAn\":[\"Passwort geändert\"],\"It4/FS\":[\"Board wiederherstellen\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Weiter mit \"],\"J4+OTA\":[\"In Liste verschieben\"],\"J5nbej\":[\"Kritisch\"],\"J5pbP6\":[\"Kann Mitgliederrollen und Berechtigungen bearbeiten\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JCdzgZ\":[\"Feature-Anfrage\"],\"JUce1S\":[\"Zugewiesene Personen\"],\"JbXXUW\":[\"Beachten Sie, dass diese Aktion nicht rückgängig gemacht werden kann.\"],\"JcCDm9\":[\"Vorlage erstellt\"],\"Jgaz7E\":[\"Berechtigungen zurückgesetzt\"],\"JjEJSy\":[\"Richten Sie Ihren Workspace ein\"],\"JnWJXY\":[\"Magic-Link\"],\"JxhWxU\":[\"in\"],\"JyXBgS\":[\"Docs\"],\"K3iLeO\":[\"Sehen Sie, was unsere Nutzer über Kan sagen\"],\"K7k9u3\":[\"Karte konnte nicht verschoben werden\"],\"KAsRdK\":[\"Zu den Mitgliedern\"],\"KEim/+\":[\"hat einen Anhang entfernt\"],\"KFJgmZ\":[\"Anzeigename muss mindestens 3 Zeichen lang sein\"],\"KLJ4eD\":[\"Einladungslink kopiert\"],\"KM6m8p\":[\"Team\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Erweiterte Administrator-Steuerung\"],\"KiVc+q\":[\"Vollzeit\"],\"KuSt9W\":[\"Wie hoste ich selbst?\"],\"L5WQLg\":[\"Token ist erforderlich\"],\"L5ZPjz\":[\"hat ein Checklisten-Element aktualisiert\"],\"LTGE7Y\":[\"Workspace erfolgreich erstellt. Sie können später in den Einstellungen upgraden.\"],\"LeM5RY\":[\"Überschreibungen konnten nicht gelöscht werden\"],\"LoUCpj\":[\"Fehler beim Aktualisieren des Workspace-Namens\"],\"LqWW5F\":[\"Ihr Anzeigename wurde aktualisiert.\"],\"LrcnbT\":[\"Hosten Sie Kan auf Ihrer eigenen Infrastruktur. Ideal für Organisationen, die vollständige Kontrolle über ihre Daten benötigen.\"],\"Lt+ZP3\":[\"hat einen Checklistenpunkt abgeschlossen\"],\"M9p3Vw\":[\"Unbegrenztes Aktivitätsprotokoll\"],\"MCIXdZ\":[\"Verbinden Sie Ihr GitHub-Konto, um Projekte zu importieren.\"],\"MFKlMB\":[\"Einladen\"],\"MHrjPM\":[\"Titel\"],\"MI5OBT\":[\"URL darf nur Buchstaben, Zahlen und Bindestriche enthalten\"],\"MK16u2\":[\"Keine Daten\"],\"MKAScN\":[\"Kann Boards ansehen\"],\"MN6YzG\":[\"Workspace-Slug aktualisiert\"],\"MWrbWq\":[\"Einstellungen | Konto\"],\"MdN5zD\":[\"Sie müssen Administrator sein, um Workspace-Berechtigungen zu verwalten.\"],\"MdwUGG\":[\"Sparen Sie Zeit mit wiederverwendbaren Board-Vorlagen.\"],\"MeO/vH\":[\"Dies führt zur dauerhaften Löschung aller mit diesem Workspace verbundenen Daten.\"],\"MlyjJu\":[\"Anzeigename darf 280 Zeichen nicht überschreiten\"],\"MxQXhL\":[\"Workspace konnte nicht erstellt werden\"],\"N/bcWA\":[\"Anmelden | kan.bn\"],\"N3380t\":[\"Kann Boards erstellen\"],\"N7aud6\":[\"Intelligente Suche\"],\"NH54UR\":[\"hat Checklistenelement umbenannt in <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"Das Board wurde archiviert.\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"NnH3pK\":[\"Test\"],\"NoNwIX\":[\"Inaktiv\"],\"NypLoL\":[\"hat eine Checkliste umbenannt\"],\"O0li0W\":[\"Geben Sie Ihr aktuelles Passwort ein und wählen Sie ein neues sicheres Passwort.\"],\"O1wAlQ\":[\"Gast\"],\"O3oNi5\":[\"E-Mail\"],\"O83K21\":[\"hat ein Checklisten-Element hinzugefügt\"],\"O9jVbx\":[\"Niedrige Priorität\"],\"OAYToL\":[\"Dadurch werden alle benutzerdefinierten Mitgliederberechtigungen in diesem Workspace entfernt. Mitglieder erben Berechtigungen nur von ihren Rollen.\"],\"OIA0ad\":[\"Workspace-Name aktualisiert\"],\"OTxjpR\":[\"ihr-workspace\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"GitHub trennen\"],\"Oi+J+N\":[\"Wählen Sie einen Tarif, um loszulegen. Alle kostenpflichtigen Tarife beinhalten eine 14-tägige kostenlose Testphase.\"],\"OkTY4+\":[\"Secret darf 512 Zeichen nicht überschreiten\"],\"Oo4E6p\":[\"Karte konnte nicht dupliziert werden\"],\"OpNhRn\":[\"Keine Kreditkarte erforderlich\"],\"OtjenF\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein\"],\"OvoEq7\":[\"Mitglied\"],\"OwneeH\":[\"Benutzerdefinierter Workspace-Benutzername\"],\"Ozt2vv\":[\"Ihr Passwort wurde geändert.\"],\"P6dJdq\":[\"Überschreibungen gelöscht\"],\"P8Cunr\":[\"Standard-Benutzername\"],\"PCIlOO\":[\"Mitglied hinzufügen\"],\"PELbXB\":[\"Ihr GitHub-Konto ist verbunden.\"],\"PRjvDT\":[\"Möchten Sie diesen Kommentar wirklich löschen?\"],\"PRofO0\":[\"YouTube-Video bearbeiten\"],\"PTzsxH\":[\"Board-Sichtbarkeit aktualisiert\"],\"PVT7q7\":[\"GitHub verbunden\"],\"PZCqeW\":[\"Bitte versuchen Sie es später erneut.\"],\"Pat4r8\":[\"Basis-Roadmap\"],\"PpZkda\":[\"Features\"],\"PyYD/v\":[\"hat <0>\",[\"0\"],\" der Karte zugewiesen\"],\"Q60WUZ\":[\"Checkout kann nicht gestartet werden\"],\"Q9pQaX\":[\"Für diesen Workspace wurden noch keine Rollen gefunden.\"],\"QD8opX\":[\"Board\"],\"QHhZeE\":[\"Vorlage erfolgreich erstellt\"],\"QNtP5M\":[\"Vorlage verwenden\"],\"Qh7QmR\":[\"Aus Favoriten entfernt\"],\"QnzD50\":[\"On-Premise\"],\"QtACvI\":[\"Label erstellen\"],\"Qtzfdk\":[\"Pro-Plan ∞\"],\"R+w/Va\":[\"Abrechnung\"],\"R1c3Mq\":[\"Board-Name ist erforderlich\"],\"R275Pz\":[\"Sie haben unbegrenzte Plätze mit Ihrem Pro-Plan. Es fallen keine zusätzlichen Kosten für neue Mitglieder an!\"],\"R3FsF4\":[\"Download fehlgeschlagen\"],\"R41XLH\":[\"Webhook konnte nicht aktualisiert werden\"],\"R6pB8R\":[\"Auf Github mit Stern markieren\"],\"RHZu7R\":[\"Weltweit von Teams geliebt\"],\"RJA+sg\":[\"Neues Ticket\"],\"RRn9jf\":[\"Klicken Sie auf den Link, den wir an \",[\"magicLinkRecipient\"],\" gesendet haben, um sich anzumelden.\"],\"RSGOS1\":[\"Kann Listen löschen\"],\"RfgJqw\":[\"hat das Fälligkeitsdatum aktualisiert\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Feedback senden\"],\"RtlIYB\":[\"Sie sind dabei, Ihr Passwort zu ändern.\"],\"RzxgOE\":[\"Rollen & Berechtigungen\"],\"SFnH1j\":[\"Warum ein Open-Source-Trello erstellen?\"],\"SMaFdc\":[\"Abmelden\"],\"SNfg0e\":[\"Kann Workspace ansehen\"],\"SPLN9O\":[\"Behalten Sie die Kontrolle über Ihre Daten\"],\"SRvxId\":[\"HMAC-Secret zur Signaturverifizierung\"],\"STSYcd\":[\"Kann Kommentare löschen\"],\"SUXBxp\":[\"Technik\"],\"SUvm1Y\":[\"Gut geeignet für Einsteiger, die nur die wichtigsten Funktionen benötigen.\"],\"SWEskc\":[\"URL muss mindestens 3 Zeichen lang sein\"],\"Sb2gYF\":[\"Neue Liste\"],\"ScJ9fj\":[\"Datenschutzerklärung\"],\"Se/UIp\":[\"Zu erledigen\"],\"SiPp29\":[\"Webhook erstellen\"],\"SkCNhl\":[\"Boards und Karten durchsuchen...\"],\"SlfejT\":[\"Fehler\"],\"T/pF0Z\":[\"Aus Favoriten entfernen\"],\"T21jY/\":[\"hat ein Label zur Karte hinzugefügt\"],\"T7DJ2k\":[\"Kommentar konnte nicht hinzugefügt werden\"],\"T7LJic\":[\"hat die Karte in eine andere Liste verschoben\"],\"T7Mywq\":[\"Board konnte nicht aktualisiert werden\"],\"TCOMOO\":[\"Berechtigungen bearbeiten\"],\"TCt/8K\":[\"Eingeschränkter API-Zugriff\"],\"TFv5tM\":[\"Rolle konnte nicht aktualisiert werden\"],\"TH3Irz\":[\"Berechtigung\"],\"TKFUnX\":[\"Konto gelöscht\"],\"TX0bT7\":[\"Keine Webhooks konfiguriert. Fügen Sie einen Webhook hinzu, um Benachrichtigungen zu erhalten.\"],\"TXO5TM\":[\"Keine Tastenkombinationen registriert.\"],\"TYli1B\":[\"Kann Kommentare bearbeiten\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Code-Review\"],\"TdfEV7\":[\"Archiviert\"],\"TjREUS\":[\"Neuer API-Schlüssel\"],\"TmvrjU\":[\"Board-URL muss mindestens 3 Zeichen lang sein\"],\"TvY/XA\":[\"Dokumentation\"],\"Tz0i8g\":[\"Einstellungen\"],\"TztLaN\":[\"Liste konnte nicht erstellt werden\"],\"U2+rn0\":[\"Webhook-Name ist erforderlich\"],\"U3pytU\":[\"Administrator\"],\"U5dMR6\":[\"Workspace anzeigen\"],\"UCLeG0\":[\"Nutzungsbedingungen\"],\"UGCIzB\":[\"Label hinzufügen / bearbeiten\"],\"UQbwrz\":[\"Alle Systeme betriebsbereit\"],\"URAE3q\":[\"Pausiert\"],\"USVCGU\":[\"Fehler beim Deaktivieren des Einladungslinks\"],\"UbRKMZ\":[\"Ausstehend\"],\"UbYdrA\":[\"Zahlungshäufigkeit\"],\"UeDFpo\":[\"Wie wird das Projekt finanziert?\"],\"UirJfL\":[\"Benutzerdefiniertes SLA\"],\"UlhdTP\":[\"Workspace gelöscht\"],\"Un80BR\":[\"OSS Friends\"],\"UoSI+i\":[\"Ideal für kleine und wachsende Teams, die zusammenarbeiten müssen\"],\"UveK6V\":[\"Zur App\"],\"Uworke\":[\"Teilzeit\"],\"UxKoFf\":[\"Navigation\"],\"V1KOLq\":[\"E-Mail-Benachrichtigungen für Erwähnungen\"],\"V3MPSQ\":[\"hat den Titel aktualisiert\"],\"V8YWP3\":[\"Benutzerdefinierten Titel eingeben\"],\"VHS0aJ\":[\"Alle benutzerdefinierten Berechtigungen löschen?\"],\"VKoDQD\":[\"Neue \",[\"0\"],\" erstellen\"],\"VUZDlr\":[\"Erfahrungsberichte\"],\"VXk54Y\":[\"hat sich die Karte selbst zugewiesen\"],\"VbyRUy\":[\"Kommentare\"],\"VhMDMg\":[\"Passwort ändern\"],\"Vt50G1\":[\"Basis-Kanban\"],\"W/Elkg\":[\"Mittlere Priorität\"],\"W/nQk1\":[\"Kostenloser Plan\"],\"W1ewR0\":[\"Link konnte nicht kopiert werden\"],\"W5r8Qh\":[\"hat ein Checklisten-Element gelöscht\"],\"W8oT+L\":[\"Videoinformationen konnten nicht abgerufen werden\"],\"WHHLh9\":[\"Anhang konnte nicht gelöscht werden\"],\"WI4eGo\":[\"Wie erhalte ich eine benutzerdefinierte URL?\"],\"WQPDcG\":[\"Checklisten-Element konnte nicht aktualisiert werden\"],\"WRkpB1\":[\"Registrierung deaktiviert\"],\"WRsbHO\":[\"Ihr Trello-Konto ist verbunden.\"],\"WYDptz\":[\"Abonnement erforderlich\"],\"WYwN1G\":[\"Neuer Import\"],\"WbTDwg\":[\"In Bearbeitung\"],\"Weq9zb\":[\"Allgemein\"],\"WmPhYW\":[\"Beim Trennen Ihres Trello-Kontos ist ein Fehler aufgetreten.\"],\"WnEwDO\":[\"Haben Sie bereits ein Konto? <0><1>Anmelden\"],\"Ws+3X+\":[\"Unbegrenzte Plätze und erweiterte Funktionen für wachsende Teams.\"],\"Wy6pcF\":[\"Board-Sichtbarkeit konnte nicht aktualisiert werden\"],\"X0N0PA\":[\" (bearbeitet)\"],\"XDRXbZ\":[\"Workspace-Beschreibung muss mindestens 3 Zeichen lang sein\"],\"XEoGkQ\":[\"Zur Startseite\"],\"XILg0L\":[\"Ungültige E-Mail-Adresse\"],\"XJOV1Y\":[\"Aktivität\"],\"XNxYxq\":[\"Board-Vorlagen\"],\"XTKtey\":[\"Liste erstellen\"],\"XXbgHS\":[\"Eingestellt\"],\"XYLcNv\":[\"Support\"],\"XicmhT\":[\"Fälligkeitsdatum\"],\"Xid3K6\":[\"Board-URL darf nur Buchstaben, Zahlen und Bindestriche enthalten\"],\"Xjj/kS\":[\"Kanban neu gedacht\"],\"XpcjLO\":[\"Board-URL konnte nicht aktualisiert werden\"],\"Y8yzGg\":[\"Kostenlos starten. Upgraden Sie, wenn Ihr Team wächst. Keine versteckten Gebühren, keine Verträge.\"],\"YBBifR\":[\"Trello trennen\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Checklisten-Element konnte nicht neu sortiert werden\"],\"YRk79X\":[\"Erweiterte Sicherheit, Compliance und dedizierter Support für große Organisationen.\"],\"YVT40D\":[\"hat Label entfernt <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Fehler beim Upgrade des Abonnements\"],\"YcyP2z\":[\"Vorlage konnte nicht erstellt werden\"],\"Yf9FAx\":[\"Sie können nicht mehr auf diesen Workspace zugreifen.\"],\"YhvWXb\":[\"Board-Analyse\"],\"YirHq7\":[\"Feedback\"],\"YkfDoz\":[\"Jährlich\"],\"YoyKbT\":[\"Dieser API-Schlüssel wird nur einmal angezeigt. Bitte speichern Sie ihn an einem sicheren Ort.\"],\"Ypy5pZ\":[\"Möchten Sie den Webhook \\\"\",[\"webhookName\"],\"\\\" wirklich löschen? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"YtUfwW\":[\"Anmeldung mit \",[\"0\"],\" fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"Yx0Ud8\":[\"Angefordert\"],\"Z3FXyt\":[\"Wird geladen ...\"],\"Z3krJD\":[\"Workspace-Mitgliedern erlauben, die E-Mail-Adressen der anderen zu sehen\"],\"Z6r9z1\":[\"Karte konnte nicht gelöscht werden\"],\"ZAs2NN\":[\"Alle Pro-Features +\"],\"ZDGm40\":[\"Account löschen\"],\"ZDIydz\":[\"Loslegen\"],\"ZDPJBc\":[\"Benutzerdefinierte Benutzernamen erfordern ein Upgrade auf einen Pro-Tarif\"],\"ZDo4HN\":[\"Brainstorming\"],\"ZH7TVS\":[\"Kartentitel\"],\"ZL1A+p\":[\"Anhang konnte nicht hochgeladen werden. Bitte versuchen Sie es erneut.\"],\"ZT4Khw\":[\"Möchten Sie diese Karte wirklich löschen?\"],\"ZU5IYI\":[\"Unbegrenzte Boards, unbegrenzte Listen, unbegrenzte Karten. Keine Kreditkarte erforderlich.\"],\"ZXSPJt\":[\"Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es später erneut.\"],\"ZqDqbi\":[\"Organisieren und finden Sie Karten schnell mit leistungsstarken Filterwerkzeugen.\"],\"Zz1qkk\":[\"Unbegrenzte Karten\"],\"a3LDKx\":[\"Sicherheit\"],\"aHCEmh\":[\"Preise\"],\"aHRWVI\":[\"hat das Fälligkeitsdatum entfernt\"],\"aJ4pMe\":[\"FAQs\"],\"aKJHG+\":[\"Board archivieren\"],\"aW3TOw\":[\"E-Mail-Benachrichtigungen\"],\"aWDhU5\":[\"Kanban ist besser im Team. Perfekt für kleine und wachsende Teams, die zusammenarbeiten möchten.\"],\"aWlSc/\":[\"Neue Liste erstellen\"],\"abUZlY\":[\"Details hinzufügen...\"],\"aelko+\":[\"Sie können eine benutzerdefinierte Workspace-URL wie <0>kan.bn/kan erhalten, indem Sie in Ihre <1>Workspace-Einstellungen gehen und ein Pro-Workspace-Abonnement erwerben. Alle Abonnements helfen bei der Finanzierung der Projektentwicklung!\"],\"agPptk\":[\"Mittel\"],\"aiHZVP\":[\"Dokumentation anzeigen\"],\"b/LfJo\":[\"E-Mail\"],\"b3Thhd\":[\"Upload fehlgeschlagen\"],\"b5FKyH\":[\"hat Label <0>\",[\"0\"],\" hinzugefügt\"],\"b9XOHo\":[[\"0\"],\" erstellen\"],\"bD8I7O\":[\"Abschließen\"],\"bDI6VI\":[[\"0\"],\" wurde aus deinen Favoriten entfernt.\"],\"bFREhu\":[\"Ende der Liste\"],\"bJZm1W\":[\"Bewerber\"],\"bJtM0P\":[\"Diese Workspace-URL ist reserviert\"],\"bKzM8L\":[\"Dedizierter Account-Manager\"],\"bZSICm\":[\"Checklistenelement konnte nicht hinzugefügt werden\"],\"bcIybO\":[\"Workspace-Name ist erforderlich\"],\"bdztP2\":[\"Recherche\"],\"be30i9\":[\"0 $\"],\"bfZE+Y\":[\"Die Rolle des Mitglieds wurde aktualisiert.\"],\"bff61F\":[\"Team-Plan\"],\"bfgr/e\":[\"Frage\"],\"bmXKoX\":[\"hat \",[\"0\"],\" Labels hinzugefügt: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Fehler beim Löschen des Kontos\"],\"c/IAuR\":[\"Wichtig\"],\"c3b0B0\":[\"Jetzt starten\"],\"c4nMcR\":[\"Ihr Avatar\"],\"c9AJhn\":[\"Workspace beitreten\"],\"cAgBMh\":[\"Vollständige Kontrolle und Eigentümerschaft:\"],\"cFQEU/\":[\"Tastenkombinationen öffnen\"],\"cOh+MI\":[\"Screening\"],\"cWXW+7\":[\"Webhook hinzufügen\"],\"cWcxrL\":[\"Neue Checkliste\"],\"cWtfn1\":[\"Auf Pro upgraden (29 $/Monat)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Workspace-Beschreibung\"],\"cji2nM\":[\"Fehler beim Erstellen des Einladungslinks\"],\"cnGeoo\":[\"Löschen\"],\"cp1rsD\":[\"Einladungslink deaktivieren\"],\"csFbe+\":[\"Zu Vorlagen gehen\"],\"curoK5\":[\"Neuer Workspace\"],\"d+F6q9\":[\"Erstellt\"],\"d33Usy\":[\"Checkliste erstellen\"],\"dEgA5A\":[\"Abbrechen\"],\"dUh9QW\":[\"Planung\"],\"ddrz1m\":[\"Überfällig\"],\"delOXn\":[\"Labels konnten nicht aktualisiert werden\"],\"dgr4Kq\":[\"Label bearbeiten\"],\"dmKdk0\":[\"Sobald Sie Ihren Workspace löschen, gibt es kein Zurück mehr. Diese Aktion kann nicht rückgängig gemacht werden.\"],\"dsLT3m\":[\"Karte erstellen\"],\"dtQIWT\":[\"Zusammenarbeit\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Diese Workspace-URL ist bereits vergeben\"],\"e1v+J3\":[\"Secret (optional)\"],\"e4hPSt\":[\"Auf Rollenstandards zurücksetzen\"],\"eEQyz+\":[\"Verfolgen Sie alle Kartenänderungen mit detailliertem Aktivitätsverlauf.\"],\"ePK91l\":[\"Bearbeiten\"],\"eZCGbT\":[\"Ja, wir bieten einen dauerhaft kostenlosen Plan für die individuelle Nutzung an. Keine Einschränkungen, keine Paywalls, keine Limits.\"],\"edWbV6\":[\"Link kopiert\"],\"ekCRTP\":[\"Abgelehnt\"],\"en3oy5\":[\"Feature\"],\"euc6Ns\":[\"Duplizieren\"],\"eus61c\":[\"Test senden\"],\"evg7+A\":[\"Ihre Boards wurden importiert.\"],\"evj0lK\":[\"Bieten Sie einen kostenlosen Plan an?\"],\"f8fH8W\":[\"Design\"],\"f8lDFq\":[\"hat die Karte erstellt\"],\"fDQ7hA\":[\"Labels kopieren\"],\"fEY2vP\":[\"Karte nicht gefunden\"],\"fQCrjt\":[\"Die Sichtbarkeit Ihres Boards wurde auf \",[\"0\"],\" gesetzt.\"],\"fR9laE\":[\"Geben Sie Ihr aktuelles Passwort ein\"],\"fSf2ee\":[\"Roadmap anzeigen.\"],\"fW5sSv\":[\"Webhook bearbeiten\"],\"fYVH36\":[\"Kommentar konnte nicht aktualisiert werden\"],\"fcWrnU\":[\"Abmelden\"],\"fuwKpE\":[\"Bitte versuchen Sie es erneut.\"],\"fvLNDy\":[\"Es wurden noch keine Listen erstellt\"],\"fzGyWs\":[\"Schriftgröße der Anwendung ändern.\"],\"fziA2d\":[\"Unbegrenzte Kommentare\"],\"g2xBxu\":[\"Das Importieren Ihrer Trello-Boards in Kan ist einfach. Sie können unserer Schritt-für-Schritt-Anleitung <0>hier folgen.\"],\"g9NChz\":[\"Account-Manager\"],\"gGx5tM\":[\"Bearbeitung\"],\"gKmoow\":[\"Diese URL ist reserviert\"],\"gL/7jw\":[\"Beschreibung hinzufügen... (‚/' für Befehle oder ‚@' zum Erwähnen eingeben)\"],\"gQ/02p\":[\"Fehler beim Trennen von GitHub\"],\"gUX7b+\":[\"Die Open-Source-<0/>Alternative zu Trello\"],\"gZxH/p\":[\"hat das Fälligkeitsdatum auf <0>\",[\"formattedDate\"],\" geändert\"],\"ghSJ4U\":[\"Workspace-Name darf 64 Zeichen nicht überschreiten\"],\"gkxGkF\":[\"14 Tage kostenlose Testversion · Jederzeit Plan wechseln oder kündigen\"],\"gkzAEM\":[\"Weiter mit \",[\"0\"]],\"goklcJ\":[\"Interviewing\"],\"gpfJ3v\":[\"Kostenlos, für immer\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"Board-URL darf 60 Zeichen nicht überschreiten\"],\"h16FyT\":[\"Listen\"],\"h2FKMV\":[\"Sie haben keine Berechtigung\"],\"h2ztFt\":[\"Alle Free-Features +\"],\"h4VV67\":[\"hat eine Checkliste hinzugefügt\"],\"h7MgpO\":[\"Tastaturkürzel\"],\"h8DugX\":[\"Labels\"],\"hAMddS\":[\"hat sich selbst von der Karte entfernt\"],\"hB02vO\":[\"Mitglieder verwalten\"],\"hXMFoN\":[\"Keine Listen\"],\"hYzsXr\":[\"Einstellungen | Integrationen\"],\"hty0d5\":[\"Montag\"],\"i0ZMQl\":[\"Board archiviert\"],\"i30J2U\":[\"Keine Projekte gefunden\"],\"i5rE2/\":[\"URL darf maximal 64 Zeichen lang sein\"],\"iH8pgl\":[\"Zurück\"],\"iHcdea\":[\"Fällig nächste Woche\"],\"iLbjv+\":[\"Kann Workspace bearbeiten\"],\"iQmbPb\":[\"Lizenz\"],\"iSLIjg\":[\"Verbinden\"],\"iTylMl\":[\"Vorlagen\"],\"iVIGZb\":[\"Anhang hochgeladen\"],\"isRobC\":[\"Neu\"],\"itgYbC\":[\"Test-Webhook erfolgreich gesendet!\"],\"iwr7AP\":[\"Ideen\"],\"iy1wb+\":[\"Einstellungen | API\"],\"j0o6ml\":[\"Ihre Workspace-Beschreibung\"],\"j1+HPc\":[\"Beim Verbinden Ihres GitHub-Kontos ist ein Fehler aufgetreten.\"],\"j2+d/o\":[\"API-Referenz\"],\"j9IZZ0\":[\"Benutzerdefinierte Workspace-URL\"],\"jDRt4n\":[\"Möchten Sie das Abonnement kündigen?\"],\"jEw0Mr\":[\"Bitte geben Sie eine gültige URL ein\"],\"jIuWsV\":[\"Webhook-Name darf 255 Zeichen nicht überschreiten\"],\"jL82rC\":[\"Benutzerdefinierte Berechtigungen löschen\"],\"jNuzV/\":[\"Kann Karten löschen\"],\"jQ6I8X\":[\"Rolle aktualisiert\"],\"jZBHkN\":[\"Der Workspace-Name muss mindestens 3 Zeichen lang sein\"],\"jfC/xh\":[\"Kontakt\"],\"jl3aEJ\":[\"hat Checklistenelement <0>\",[\"0\"],\" als unvollständig markiert\"],\"jlB2RY\":[\"Das eingegebene aktuelle Passwort ist falsch.\"],\"jwI32v\":[\"Board nicht gefunden\"],\"k7rCa/\":[\"Groß\"],\"kECVpo\":[\"Möchten Sie dieses Label wirklich löschen?\"],\"kQwvU8\":[\"hat ein Label von der Karte entfernt\"],\"kSxwQL\":[\"Sie können Teammitglieder einladen, indem Sie auf die Schaltfläche \\\"Einladen\\\" in der oberen rechten Ecke der <0>Mitgliederseite klicken und deren E-Mail-Adresse eingeben. Sie erhalten eine E-Mail mit einem Link, um dem Workspace beizutreten.\"],\"kYu0eF\":[\"Workspace löschen\"],\"kfOGMr\":[\"Quick Win\"],\"klpSmb\":[\"Workspace-URL bearbeiten\"],\"kp6L3T\":[\"Dieser Workspace-Benutzername ist bereits vergeben\"],\"kryGs+\":[\"Karte\"],\"kuoc68\":[\"10 $/Monat\"],\"kxEs5t\":[\"Trello-Importe\"],\"l2PIAy\":[\"Self-Hosting mit Github\"],\"l31EoQ\":[\"Finden Sie Antworten auf häufig gestellte Fragen zu Kan. Können Sie nicht finden, wonach Sie suchen? <0>Kontaktieren Sie uns gerne.\"],\"l3s5ri\":[\"Importieren\"],\"l4asa1\":[\"Dieses Board ist privat oder existiert nicht\"],\"lGjicL\":[\", oder siehe unsere\"],\"lKAvEd\":[\"Fehler beim Trennen von Trello\"],\"lXvXNI\":[\"Einladungslink konnte nicht kopiert werden\"],\"lYT7pQ\":[\"Liste löschen\"],\"lkz85l\":[\"Der Hauptunterschied zwischen Kan und Trello besteht darin, dass Kan Open Source ist und es jedem ermöglicht, unseren Code einzusehen, zu ändern und dazu beizutragen. Unser Cloud-Angebot bietet außerdem keine Einschränkungen bei den Funktionen für die individuelle Nutzung, während Trello grundlegende Funktionen wie die Anzahl der Boards, die Sie erstellen können, hinter einer Paywall sperrt.\"],\"lo8xBK\":[\"Möchten Sie \",[\"entityLabel\"],\" wirklich entfernen?\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"lsgnzd\":[\"Fehler beim Upgrade auf Pro\"],\"lyqwgn\":[\"Label hinzufügen\"],\"m2nk0i\":[\"Einfache Preisgestaltung\"],\"mErq7F\":[\"Registrieren\"],\"mHhffx\":[\"Checkliste konnte nicht erstellt werden\"],\"mTGd3+\":[\"hat eine Checkliste gelöscht\"],\"mTwGOf\":[\"Dieser Einladungslink ist ungültig oder abgelaufen.\"],\"mU+M00\":[[\"0\"],\" wurde zu deinen Favoriten hinzugefügt.\"],\"mVZH9V\":[\"Als Trello 2011 auf den Markt kam, begeisterte es alle mit seiner sorgfältig gestalteten Einfachheit, aber im Laufe der Jahre verlor es seinen Zauber und entwickelte sich zu etwas, das eher \\\"Jira Lite\\\" ähnelt. Dieses Projekt ist unser Versuch, den ursprünglichen Zauber der Einfachheit von Trello in Open Source wiederzubeleben.\"],\"mZGPxt\":[\"Einladungslink in Zwischenablage kopiert\"],\"mchgzf\":[\"Sie haben sich erfolgreich registriert.\"],\"mgXgHu\":[\"Zu den Boards\"],\"mrhyIB\":[\"Perfekt für kleine und wachsende Teams, die zusammenarbeiten möchten.\"],\"mwBdZ2\":[\"Dies führt zur dauerhaften Löschung aller mit Ihrem Konto verbundenen Daten.\"],\"mx8+1u\":[\"Unbegrenzte Mitglieder\"],\"n+xLOH\":[\"Kundensupport\"],\"n1GRql\":[\"Neues Label\"],\"n1ekoW\":[\"Anmelden\"],\"n6EWYz\":[\"Wird verwendet, um Webhook-Payloads zur Verifizierung zu signieren. Leer lassen, um das bestehende Secret beizubehalten.\"],\"n9V+ps\":[\"Geben Sie Ihren Namen ein\"],\"nKBUeF\":[\"Die Karte wurde dupliziert.\"],\"nOhz3x\":[\"Abmelden\"],\"nYNMZZ\":[\"Position in Liste (0 = erste, leer lassen für Ende)\"],\"nabda1\":[\"Karte löschen\"],\"nbfdhU\":[\"Integrationen\"],\"ngBZOd\":[\"Kommentar hinzufügen... (‚/' für Befehle oder ‚@' zum Erwähnen eingeben)\"],\"nhMhRr\":[\"Vielen Dank für Ihr Feedback!\"],\"njJFtc\":[\"Kommentar löschen\"],\"nk7caK\":[\"Trello verbinden\"],\"nol/Fb\":[\"Wie lade ich Teammitglieder ein?\"],\"notwF1\":[\"Der Vorlagenname darf 100 Zeichen nicht überschreiten\"],\"nq7q3Z\":[\"API-Schlüsselname darf 30 Zeichen nicht überschreiten\"],\"nqdIhs\":[\"Benutzerdefinierte Board-Vorlagen\"],\"nryrgW\":[\"Alle individuellen Berechtigungsüberschreibungen der Mitglieder wurden auf ihre Rollenstandards zurückgesetzt.\"],\"o+JCfN\":[\"Vertraut von schnellen Teams<0/>auf der ganzen Welt\"],\"o4e/70\":[\"Wählen Sie mindestens ein Ereignis aus\"],\"o4sQAg\":[\"Webhook konnte nicht erstellt werden\"],\"o7J4JM\":[\"Filter\"],\"o8adVG\":[\"10 MB Datei-Uploads\"],\"o9WLwO\":[\"Karte konnte nicht aktualisiert werden\"],\"oVBq1w\":[\"pro Benutzer/Monat\"],\"oW13KZ\":[\"Starten Sie noch heute kostenlos\"],\"odFCYX\":[\"Ungültige Einladung\"],\"okpxfB\":[\"Neuen Schlüssel erstellen\"],\"oyRjD/\":[\"Pro-Plan\"],\"p/hk9N\":[\"Sie wurden erfolgreich angemeldet.\"],\"pBsoKL\":[\"Zu Favoriten hinzufügen\"],\"pFGfsR\":[\"Schauen Sie sich einige unserer bevorzugten Open-Source-Projekte an.\"],\"pFKC6A\":[\"API-Schlüsselname\"],\"pL78ec\":[\"Zu Favoriten hinzugefügt\"],\"pVctI7\":[\"On-Premise-Bereitstellungsoption\"],\"pXVFJy\":[\"Kann Boards löschen\"],\"pa9o5D\":[\"Avatar zuschneiden\"],\"pfa8F0\":[\"Anzeigename\"],\"pmUArF\":[\"Workspace\"],\"pnrmSP\":[\"Neue Karte\"],\"ppaRWv\":[\"Self-Hosting\"],\"pvnfJD\":[\"Dunkel\"],\"q+lt9D\":[\"Fehler beim Löschen des Labels\"],\"q3il6U\":[\"Schriftgröße\"],\"qPP4lD\":[\"Das Einladen von Mitgliedern erfordert einen Team-Plan. Sie werden zur Upgrade-Seite Ihres Workspaces weitergeleitet.\"],\"qQXocp\":[\"Kann Workspace-Einstellungen verwalten\"],\"qaS+1/\":[\"Ideal für Teams, die grenzenlos skalieren möchten\"],\"qfUS/w\":[\"Open-Source-Freunde\"],\"qkjvgj\":[\"Ihr Workspace wurde gelöscht.\"],\"qlAIQ1\":[\"Remote\"],\"qtE5nt\":[\"Element hinzufügen...\"],\"qzdST2\":[\"Board-Sichtbarkeit\"],\"r6BgwX\":[\"Passwort ist für die Anmeldung erforderlich.\"],\"rD6UIt\":[\"In der Cloud starten\"],\"rF8SEQ\":[\"Kommentar bearbeiten\"],\"rQRXo8\":[\"Neues Secret eingeben, um zu aktualisieren\"],\"rQXTmd\":[\"Karten-URL in Zwischenablage kopiert\"],\"rRM7r0\":[\"Importieren Sie Ihre Trello-Boards und legen Sie direkt los.\"],\"rYUZIe\":[\"Quelle auswählen\"],\"raHesj\":[\"Sie wurden abgemeldet!\"],\"rarRW/\":[\"Fehler beim Einladen des Mitglieds\"],\"ri1hHe\":[\"Fällig nächsten Monat\"],\"rmN315\":[\"Spaß\"],\"rs7L54\":[\"hat ein Mitglied zur Karte hinzugefügt\"],\"rtbVvN\":[\"Kann Listen bearbeiten\"],\"s+MGs7\":[\"Ressourcen\"],\"s6iE/c\":[\"Die Registrierung ist derzeit deaktiviert. Bitte versuchen Sie es später erneut.\"],\"sBhOFG\":[\"Einfaches, visuelles Aufgabenmanagement, das einfach funktioniert. Verschieben Sie Karten per Drag-and-drop, arbeiten Sie mit Ihrem Team zusammen und erledigen Sie mehr.\"],\"sDLCvT\":[\"Verbinden Sie Ihre bevorzugten Tools, um Ihren Workflow zu optimieren.\"],\"sDuhfK\":[\"Launch-Angebot: Unbegrenzte Plätze für nur 29 $/Monat mit Pro\"],\"sU2uWc\":[\"Karte dupliziert\"],\"sUZo7y\":[\"Registrieren | kan.bn\"],\"sVBn4K\":[\"Fehler beim Aktualisieren des Anzeigenamens\"],\"sY2lzr\":[\"Für diesen Anhang ist keine Download-URL verfügbar.\"],\"sbNNyi\":[\"Neuer Webhook\"],\"snMaH4\":[\"Webhook löschen\"],\"t+R8+P\":[\"Ausführung\"],\"t/YqKh\":[\"Entfernen\"],\"t0dTPm\":[\"Konfigurieren Sie Webhooks, um Benachrichtigungen zu erhalten, wenn Karten erstellt, aktualisiert, verschoben oder gelöscht werden.\"],\"t2nDzl\":[\"Rechnungen und Abonnement anzeigen und verwalten.\"],\"t6FvJH\":[\"Kann Kommentare hinzufügen\"],\"tGwwnq\":[\"hat die Beschreibung aktualisiert\"],\"tHcbLF\":[\"Kann Boards bearbeiten\"],\"tIdipJ\":[\"Board-URL bearbeiten\"],\"tMYIu7\":[\"Aktivitätsprotokolle\"],\"tOZp9v\":[\"Konfigurierbare Benutzerrollen und Berechtigungen\"],\"tTbref\":[\"Passwort ist für die Registrierung erforderlich.\"],\"tYN21H\":[\"Benutzer ist bereits Mitglied dieses Workspaces\"],\"tbNcu4\":[\"Board wiederhergestellt\"],\"tca56/\":[\"Ihre Datei wurde erfolgreich hochgeladen.\"],\"tfDRzk\":[\"Speichern\"],\"tlhgDC\":[\"Keine archivierten Boards\"],\"tmlJN1\":[\"Bitte geben Sie eine gültige YouTube-URL ein\"],\"tmpW+w\":[\"Board löschen\"],\"tst44n\":[\"Ereignisse\"],\"tyHiOa\":[\"Bitte versuchen Sie es später erneut oder kontaktieren Sie den Kundensupport.\"],\"u2+JIh\":[\"Benutzerdefinierte URLs erfordern ein Upgrade auf einen Pro-Plan\"],\"u8JHrO\":[\"Filter löschen\"],\"uAQUqI\":[\"Status\"],\"uEGGDs\":[\"Mein Webhook\"],\"uOqaMC\":[\"Sie wurden eingeladen, einem Workspace beizutreten.\"],\"uP4V6I\":[\"Kostenlos für alle\"],\"uXGLuq\":[\"API-Schlüssel erstellen\"],\"uZg2+w\":[\"Optimieren Sie Ihren Workspace für nur 29 $/Monat. Das erhalten Sie:\"],\"uck1tz\":[\"hat ein Mitglied von der Karte entfernt\"],\"usVytm\":[\"Sobald Sie Ihr Konto löschen, gibt es kein Zurück mehr. Diese Aktion kann nicht rückgängig gemacht werden.\"],\"uvH2xS\":[\"Mitglieder kopieren\"],\"v+Wp++\":[\"Open Source\"],\"v1kQyJ\":[\"Webhooks\"],\"v3YoMA\":[\"Senior\"],\"vAR/I8\":[\"Auf eigener Infrastruktur betreiben\"],\"vAj6xG\":[\"Sie können selbst hosten, indem Sie den Anweisungen in unserem <0>Repo folgen.\"],\"vSJd18\":[\"Video\"],\"vUr5JT\":[\"Noch kein Konto? <0><1>Registrieren\"],\"vXIe7J\":[\"Sprache\"],\"vXemf6\":[\"Bug\"],\"va/3u1\":[\"Legen Sie fest, wer Ihre Boards ansehen und bearbeiten kann.\"],\"vbskQn\":[\"API-Schlüsselname ist erforderlich\"],\"veIDCY\":[\"14-tägige kostenlose Testversion starten\"],\"vfRdCZ\":[\"Berechtigungen konnten nicht zurückgesetzt werden\"],\"vgdzLf\":[\"Weitere erstellen\"],\"vifyyw\":[\"Rechtliches\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"Die Berechtigungen dieses Mitglieds wurden auf die Standardwerte seiner Rolle zurückgesetzt.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"Monatliche Abrechnung\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Langfristig\"],\"vwGkYB\":[\"Passwort muss mindestens 8 Zeichen lang sein\"],\"wIb7Ng\":[\"Softwareentwicklung\"],\"wK4OTM\":[\"Titel (optional)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Bitte wählen Sie eine Datei zum Hochladen aus.\"],\"wY+6Ye\":[\"Diese Board-URL ist bereits vergeben\"],\"wakO3W\":[\"hat Checkliste <0>\",[\"0\"],\" hinzugefügt\"],\"wewm3j\":[\"Board-Name darf 100 Zeichen nicht überschreiten\"],\"wgNoIs\":[\"Alle auswählen\"],\"wlQNTg\":[\"Mitglieder\"],\"wqkcin\":[\"Kann Kommentare ansehen\"],\"wqxglO\":[\"Lernen\"],\"wruKPE\":[\"Unterstützen Sie die Entwicklung des Projekts\"],\"wsy94z\":[\"Ideal für große Organisationen mit erweiterten Anforderungen\"],\"wtxjAY\":[\"Workspace-Mitglieder\"],\"x0kMO/\":[\"Fehler beim Aktualisieren der Workspace-URL\"],\"x8GeCD\":[\"Anzeigename aktualisiert\"],\"xEbBrW\":[\"Welche Lizenz verwenden Sie?\"],\"xGVfLh\":[\"Weiter\"],\"xLTZVf\":[\"Wochenbeginn\"],\"xMn+V9\":[\"Importieren von Trello\"],\"xRPn3U\":[\"Geben Sie Ihre E-Mail-Adresse ein\"],\"xvcYhz\":[\"Löschen Sie alle benutzerdefinierten Mitgliederberechtigungen, sodass alle Mitglieder nur Berechtigungen von ihren Rollenstandardwerten erben.\"],\"y3aU20\":[\"Änderungen speichern\"],\"yD3ZSw\":[\"Ändern Sie Ihre Spracheinstellungen.\"],\"yV7o5I\":[\"Wie importiere ich meine Trello-Boards?\"],\"yb/fjw\":[\"Genehmigung\"],\"yhLUU8\":[\"Fehler beim Verbinden von GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Projekt importieren (1)\"],\"other\":[\"Projekte importieren (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Schließen\"],\"zC8Whw\":[\"Legen Sie los, indem Sie eine neue Liste erstellen\"],\"zERArS\":[\"hat den Titel zu <0>\",[\"0\"],\" aktualisiert\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Einladungslink erstellen\"],\"zMlxCA\":[\"1 Benutzer\"],\"zMquA7\":[\"Tarif wählen\"],\"zQPhSa\":[\"In Link umwandeln\"],\"zQX5Dj\":[\"Listenname\"],\"zYRVNp\":[\"Liste auswählen\"],\"zkWmBh\":[\"Jährlich\"],\"zl1b97\":[\"Karte konnte nicht erstellt werden\"],\"zoEbXq\":[\"Kann Karten ansehen\"],\"zt/6cS\":[\"Ideal für kleine Teams, die gemeinsam arbeiten und schneller vorankommen möchten.\"],\"zto8aj\":[\"Trello getrennt\"],\"zwBp5t\":[\"Privat\"],\"zwTiVn\":[\"hat einen Anhang entfernt <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Mehr erfahren\"],\"zxKs+y\":[\"Morgen fällig\"],\"zzDlyQ\":[\"Erfolg\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Social Media\"],\"+3TYXa\":[\"Für langfristige Nachhaltigkeit erkennen wir an, dass alle guten Open-Source-Projekte eine Einnahmequelle benötigen. Unsere stammt aus dem kostenpflichtigen Cloud-Angebot für Workspaces mit mehreren Benutzern und für benutzerdefinierte Workspace-Slugs. Es besteht keine Verpflichtung zur Nutzung, und Sie können die Software kostenlos auf Ihrer eigenen Infrastruktur selbst hosten.\"],\"+5kO8P\":[\"Samstag\"],\"+8Nek/\":[\"Monatlich\"],\"+EkBs0\":[\"Wir konnten Ihre Einstellungen nicht aktualisieren. Bitte versuchen Sie es erneut.\"],\"+MdEsf\":[\"Neues Passwort ist erforderlich\"],\"+OhFss\":[\"Starten Sie kostenlos ohne Nutzungsbeschränkungen. Für die Zusammenarbeit upgraden Sie auf einen Plan, der zur Größe Ihres Teams passt.\"],\"+VoTOr\":[\"monatlich abgerechnet\"],\"+djOzj\":[\"Mitglied einladen\"],\"+h2faV\":[\"Einstellungen | Webhooks\"],\"+jbXzb\":[\"Ihre Projekte wurden importiert.\"],\"+nvZ6j\":[\"Labels & Filter\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Vorlage\"],\"/asTmx\":[\"Bug-Report\"],\"/bBVaD\":[\"GitHub getrennt\"],\"/bZzdR\":[\"Erwähnungen\"],\"/f3t6v\":[\"Konfigurieren Sie, welche Aktionen für jede Workspace-Rolle erlaubt sind. Diese Berechtigungen gelten für alle Mitglieder mit dieser Rolle.\"],\"/gaSVU\":[\"Roadmap\"],\"/glL9Q\":[\"Keine \",[\"0\"]],\"/jd3aj\":[\"Erweiterte Administrator-Rollen\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"Eine leistungsstarke, flexible Kanban-App, die dir hilft, Arbeit zu organisieren, Fortschritte zu verfolgen und Ergebnisse zu liefern – alles an einem Ort.\"],\"/tOdd2\":[\"Ihr Profilbild wurde aktualisiert.\"],\"0+0/3e\":[\"Neues Label erstellen\"],\"0+ewPp\":[\"Verbesserung\"],\"02i3WU\":[\"Imports\"],\"06EQqT\":[\"Wird dupliziert…\"],\"09Tv5j\":[\"Reconnecting…\"],\"0AfkMq\":[\"Your role changed in\"],\"0KjpAr\":[\"Kann Mitglieder ansehen\"],\"0RE1AJ\":[\"Boards, die du archivierst, werden hier angezeigt.\"],\"0StR7t\":[\"Geben Sie Ihr neues Passwort ein\"],\"0jV46i\":[\"Checklistenelement konnte nicht gelöscht werden\"],\"0qyZ4b\":[\"Berechtigungen werden geladen ...\"],\"0rPv1T\":[\"Profilbild aktualisiert\"],\"0utuU6\":[\"Checklisten kopieren\"],\"0xD8Of\":[\"Die gesuchte Seite existiert nicht oder wurde verschoben.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Board importieren (1)\"],\"other\":[\"Boards importieren (\",[\"boardCount\"],\")\"]}]],\"11dHnN\":[\"You were removed from\"],\"14Xi3Z\":[\"Das Hinzufügen eines neuen Mitglieds kostet zusätzlich \",[\"price\"],\" (\",[\"billingType\"],\") pro Platz.\"],\"1H5u1m\":[\"Fragen?\"],\"1WuwiM\":[\"Zu den Einstellungen\"],\"1bJKhj\":[\"Link zur Karte kopieren\"],\"1hzdxO\":[\"Workspace-Berechtigungen\"],\"1iShX0\":[\"Heute fällig\"],\"1njn7W\":[\"Hell\"],\"1rVAfU\":[\"Weitere Aktivitäten laden\"],\"1rWxEw\":[\"Wartet auf Kunden\"],\"1sRmLC\":[\"Diskutieren und arbeiten Sie an Karten zusammen.\"],\"1wCGT0\":[\"Unbegrenzte Boards\"],\"25fAUC\":[\"Ihrem Abmelde-Link fehlt ein Token. Bitte öffnen Sie die neueste E-Mail und versuchen Sie es erneut.\"],\"25mvI+\":[\"Einladungslinks erfordern ein Team- oder Pro-Abonnement. Bitte upgraden Sie Ihren Workspace.\"],\"29sSki\":[\"hat Checklistenpunkt <0>\",[\"0\"],\" abgeschlossen\"],\"2BBAbc\":[\"Liste\"],\"2Bu8xj\":[\"Keine Boards gefunden\"],\"2M84k3\":[\"Benutzerdefinierte Berechtigungen\"],\"2MPcep\":[\"Import abgeschlossen\"],\"2POOFK\":[\"Kostenlos\"],\"2Py5S/\":[\"Ich bestätige, dass alle Workspace-Daten dauerhaft gelöscht werden und möchte fortfahren.\"],\"2Q871c\":[\"Label konnte nicht hinzugefügt werden\"],\"2QGEbi\":[\"Kommentar konnte nicht gelöscht werden\"],\"2SePRT\":[\"Sie wurden eingeladen, einem Workspace auf kan.bn beizutreten.\"],\"2X4ecw\":[\"Webhook erfolgreich gelöscht\"],\"2h4PVB\":[\"Ihr Workspace-Name wurde aktualisiert.\"],\"2liqDZ\":[\"Ich bestätige, dass alle meine Kontodaten dauerhaft gelöscht werden und möchte fortfahren.\"],\"2q/Q7x\":[\"Sichtbarkeit\"],\"2roTVj\":[\"Feedback gesendet\"],\"3LDCpD\":[\"Diese Aktion kann nicht rückgängig gemacht werden.\"],\"3WXdoZ\":[\"Sie können diese später jederzeit in den Einstellungen ändern.\"],\"3ZjRJY\":[\"hat Checkliste umbenannt <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Jeder mit diesem Link kann Ihrem Workspace beitreten\"],\"3d54Wj\":[\"Webhook erfolgreich aktualisiert\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"GitHub verbinden\"],\"3pIq39\":[\"Administrator-Rollen\"],\"4630Pc\":[\"Card updated\"],\"479pdJ\":[\"Bestätigen Sie Ihr neues Passwort\"],\"4DOCMI\":[\"YouTube-URL\"],\"4Revpc\":[\"Klein\"],\"4RoY9J\":[\"Blogbeitrag\"],\"4XF0BB\":[\"Profilbild\"],\"4gAX8s\":[\"Menü umschalten\"],\"4kJRen\":[\"Schreiben\"],\"4obmDr\":[\"404 - Seite nicht gefunden | kan.bn\"],\"4sxGcV\":[\"You were assigned to a card\"],\"51UCsN\":[\"In andere Liste verschieben\"],\"53QYh8\":[\"Board konnte nicht erstellt werden\"],\"55xJ/O\":[\"Fehler beim Ändern des Passworts\"],\"58AiWX\":[\"Bitte bestätigen Sie Ihr neues Passwort\"],\"5ACX4z\":[\"Newsletter\"],\"5IXWmO\":[\"Überprüfen Sie Ihren Posteingang\"],\"5P4rhH\":[\"Mitglieder konnten nicht aktualisiert werden\"],\"5RkSzq\":[\"Board-Link kopieren\"],\"5eZwRW\":[\"Verbinden Sie Ihr Trello-Konto, um Boards zu importieren.\"],\"5h8ooz\":[\"API-Schlüssel\"],\"5iplxh\":[\"Neues Passwort muss sich vom aktuellen Passwort unterscheiden\"],\"5k0NLb\":[\"Review\"],\"5lWFkC\":[\"Anmelden\"],\"5ntVtp\":[\"Webhook konnte nicht getestet werden\"],\"5y6qY8\":[\"hat einen Anhang hinzugefügt\"],\"69b7aE\":[\"Befehlsmenü öffnen\"],\"6EWT6T\":[\"Recruiting\"],\"6FDocz\":[\"Registrieren mit \"],\"6FsGbN\":[\"Legen Sie los, indem Sie ein neues \",[\"0\"],\" erstellen\"],\"6OTo9n\":[\"Vorlagenname ist erforderlich\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Neue \",[\"0\"]],\"6YtxFj\":[\"Name\"],\"6mbe4b\":[\"Einzelpersonen\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"Die Berechtigungen des Mitglieds wurden aktualisiert.\"],\"6uBU1F\":[\"Vollständiger API-Zugriff\"],\"6zeSBB\":[\"Kann Karten erstellen\"],\"74F7N/\":[\"Möchten Sie Ihr Konto wirklich löschen?\"],\"7EhE4k\":[\"Label aktualisieren\"],\"7L01XJ\":[\"Aktionen\"],\"7PzzBU\":[\"Benutzer\"],\"7Qqqyu\":[\"New comment on\"],\"7RpHg/\":[\"Benutzerdefinierter Benutzername\"],\"7Ufoyg\":[\"Unbegrenzte Listen\"],\"7aONWr\":[\"URL darf 2048 Zeichen nicht überschreiten\"],\"7b2yuC\":[\"Bitte geben Sie ein gültiges Passwort ein\"],\"7d1a0d\":[\"Öffentlich\"],\"7eMo+U\":[\"Zur Startseite\"],\"7hktsm\":[\"Erste Schritte\"],\"7i8j3G\":[\"Unternehmen\"],\"8+BY11\":[\"Board-URL in Zwischenablage kopiert\"],\"86FLn5\":[\"Unbegrenzte Datei-Uploads\"],\"86XI28\":[\"Bestätigen Sie Ihre E-Mail-Einstellungen:\"],\"8AbRER\":[\"Fälligkeitsdatum festlegen\"],\"8AwlaR\":[\"Unbegrenzte Mitglieder und ein individueller Workspace-Benutzername für Teams, die wachsen möchten.\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"8Is1ih\":[\"Launch-Angebot\"],\"8RdLDU\":[\"Persönliches Projekt\"],\"8TveY+\":[\"Boards\"],\"8Z4pNX\":[\"Kann Listen erstellen\"],\"8iP0S8\":[\"Alles aus dem kostenlosen Plan, plus:\"],\"8iP9oQ\":[\"Webhook-Test fehlgeschlagen\"],\"8yFGGF\":[\"Mitglied konnte nicht entfernt werden\"],\"99VIgC\":[\"Mitglied entfernen\"],\"9HDx2Z\":[\"You were mentioned in\"],\"9PaIxv\":[\"Kernfunktionen\"],\"9Xigls\":[\"In Prüfung\"],\"9YPBHv\":[\"Webhook konnte nicht gelöscht werden\"],\"9cDpsw\":[\"Berechtigungen\"],\"9eF5oV\":[\"Willkommen zurück\"],\"9h7RDh\":[\"Angebot\"],\"9lFfqv\":[\"/Monat\"],\"9s9O5h\":[\"Fehler beim Löschen des Arbeitsbereichs\"],\"9u5BOr\":[\"Mitglieder | \",[\"0\"]],\"9wdpwp\":[\"Abrechnungsportal\"],\"9x4DAL\":[[\"0\"],\" nicht gefunden\"],\"9y1RcT\":[\"Wir fangen gerade erst an. \"],\"A23Y7X\":[\"Workspace beitreten | kan.bn\"],\"A42Dqn\":[\"Individuelles Branding\"],\"A5hiCy\":[\"Vorlage erstellen\"],\"A8jqN7\":[\"Feedback konnte nicht gesendet werden\"],\"ABCjd9\":[\"Veröffentlichung\"],\"ADEin1\":[\"Einstellungen | Abrechnung\"],\"ALhEZV\":[\"Kann Mitglieder einladen\"],\"ANyn0x\":[\"Alles, was Sie brauchen, für immer kostenlos. Unbegrenzte Boards, unbegrenzte Listen, unbegrenzte Karten. Jederzeit upgraden.\"],\"ARvBT/\":[\"jährlich abgerechnet\"],\"ASjvm9\":[\"Workspace-URL\"],\"AUYALh\":[\"Demnächst verfügbar\"],\"AX4ktp\":[\"Content-Erstellung\"],\"AZI/wb\":[\"Labels & Filter\"],\"AdxYds\":[\"Ihr GitHub-Konto wurde getrennt.\"],\"AeXO77\":[\"Konto\"],\"Alp2ti\":[\"Vertrieb kontaktieren\"],\"Ax/hYa\":[\"Workspace-Beschreibung darf 280 Zeichen nicht überschreiten\"],\"B3xxao\":[\"Karte hinzufügen\"],\"BBUDfW\":[\"Dringend\"],\"BEVzjL\":[\"Import fehlgeschlagen\"],\"BJbLe4\":[\"Wir verwenden die <0>AGPL-3.0-Lizenz.\"],\"BMkVQ3\":[\"hat Checkliste <0>\",[\"0\"],\" gelöscht\"],\"BOqTi5\":[\"hat die Karte von <0>\",[\"0\"],\" nach <1>\",[\"1\"],\" verschoben\"],\"BTDPLo\":[\"Karte duplizieren\"],\"BZkYSt\":[\"hat \",[\"0\"],\" Labels entfernt: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Möchten Sie den Workspace \",[\"0\"],\" wirklich löschen?\"],\"Bhgd0l\":[\"Kontaktieren Sie uns\"],\"BzEFor\":[\"oder\"],\"C56tim\":[\"Fälligkeitsdatum konnte nicht aktualisiert werden\"],\"C6gv54\":[\"Das Board wurde wiederhergestellt.\"],\"CAL6E9\":[\"Teams\"],\"CB/NpV\":[\"Hohe Priorität\"],\"CHZ1jC\":[\"hat Checklisten-Element <0>\",[\"0\"],\" gelöscht\"],\"CJ3zUq\":[\"Bitte geben Sie einen gültigen Namen ein\"],\"CJWDTP\":[\"Ihr Trello-Konto wurde getrennt.\"],\"CJukzS\":[[\"0\"],\" Labels\"],\"CTqTgr\":[\"Tastenkombinationen\"],\"CYWHT+\":[\"Fehler beim Hochladen des Profilbilds\"],\"Cb5YSG\":[\"You were added to\"],\"Cd4sTD\":[\"Ideal für Einzelpersonen und Solo-Kreative, die gerade anfangen\"],\"Ci/KUX\":[\"Einstellungen | Workspace\"],\"CkVV1t\":[\"Fehler beim Aktualisieren der Workspace-Beschreibung\"],\"Cmudpi\":[\"Kann Workspace löschen\"],\"CozWO1\":[\"Workspace-Name\"],\"CujNX4\":[\"hat einen Anhang hinzugefügt <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"System\"],\"D0esZz\":[\"Aktivitätsprotokoll\"],\"D3C4Yx\":[\"Aktuelles Passwort ist erforderlich\"],\"D7/JvJ\":[\"Passen Sie den quadratischen Zuschnitt an Ihren Avatar an.\"],\"D9ROdV\":[\"Einladungslinks\"],\"DAV3uK\":[\"Berechtigungen aktualisiert\"],\"DBC3t5\":[\"Sonntag\"],\"DFjdv0\":[\"Vorlage löschen\"],\"DMeWZD\":[\"Möchten Sie \",[\"0\"],\" wirklich löschen?\"],\"DPfwMq\":[\"Fertig\"],\"DSGzV+\":[\"Workspace-Benutzername\"],\"DahTzR\":[\"Checkliste konnte nicht gelöscht werden\"],\"DbZgsJ\":[\"Vorlage erstellen\"],\"DtXlZq\":[\"Checkliste konnte nicht aktualisiert werden\"],\"Dz63YI\":[\"Beim Trennen Ihres GitHub-Kontos ist ein Fehler aufgetreten.\"],\"E0t3jO\":[\"hat Checklisten-Element <0>\",[\"0\"],\" hinzugefügt\"],\"E6wBCJ\":[\"Preisgestaltung pro Arbeitsplatz\"],\"E8zYtd\":[\"hat <0>\",[\"0\"],\" von der Karte entfernt\"],\"ECJKc4\":[\"API-Schlüssel erstellt\"],\"EEHmPC\":[\"Launch-Angebot: Unbegrenzte Mitglieder mit Pro\"],\"EH8IL3\":[\"Checklisten\"],\"EII/X8\":[\"Alle Teams-Features +\"],\"ERpq2P\":[\"Keine Ergebnisse für \\\"\",[\"debouncedQuery\"],\"\\\" gefunden.\"],\"ESClHO\":[\"Priorisierter E-Mail-Support\"],\"EYpSRU\":[\"You were added to a workspace\"],\"Eg99Sc\":[\"Derzeit sind keine Authentifizierungsmethoden verfügbar\"],\"Eit43O\":[\"hat das Fälligkeitsdatum festgelegt\"],\"EkH9pt\":[\"Aktualisieren\"],\"EvArWh\":[\"Arbeiten Sie nahtlos mit Ihrem Team zusammen.\"],\"F/FPk/\":[\"Einstellungen | Berechtigungen\"],\"F/vB2g\":[\"Ideen zur Verbesserung dieser Seite...\"],\"F0YmUY\":[\"Karten-Link kopieren\"],\"F3bW6y\":[\"Plattform\"],\"F4KRmY\":[\"8 $/Monat\"],\"F4PLG4\":[\"Workspace-Beschreibung aktualisiert\"],\"F6m23G\":[\"Datei-Uploads\"],\"F6pfE9\":[\"Aktiv\"],\"F8DaWi\":[\"Nur ansehen\"],\"FEr96N\":[\"Design\"],\"FdtSNC\":[\"Workspace erstellen\"],\"FmN5me\":[\"Auflösung\"],\"FmfJjN\":[\"API-Schlüssel anzeigen und verwalten.\"],\"Fpci8b\":[\"Möchten Sie diese Checkliste wirklich löschen?\"],\"G1Gw0v\":[\"Neue Vorlage\"],\"GAD3Dx\":[\"Benutzerdefinierte Domain\"],\"GDvlUT\":[\"Rolle\"],\"GKeVeM\":[\"Your role was changed\"],\"GRAGsB\":[\"Ihr Workspace\"],\"GYv20o\":[\"Berechtigungen konnten nicht aktualisiert werden\"],\"GdWB+V\":[\"Webhook erfolgreich erstellt\"],\"GnRmu4\":[\"Checklistenname\"],\"GnSSGm\":[\"Ihre Workspace-Beschreibung wurde aktualisiert.\"],\"GoDLB9\":[\"Ihr Konto wurde gelöscht.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Erweiterte Roadmap\"],\"Gxxi5J\":[\"Checkliste hinzufügen\"],\"H5G+qG\":[\"Was ist der Unterschied zwischen Kan und Trello?\"],\"HBI6nY\":[\"Benötigen Sie Hilfe?\"],\"HO+uOC\":[\"Triage\"],\"HQVm6e\":[\"Diese URL ist bereits vergeben\"],\"HVIzNO\":[\"Kann Listen ansehen\"],\"HYV6Lq\":[\"Einladung konnte nicht angenommen werden. Bitte versuchen Sie es später erneut oder kontaktieren Sie den Kundensupport.\"],\"HbXReU\":[\"No notifications yet\"],\"HcT8J4\":[\"Ihr GitHub-Konto wurde verbunden.\"],\"HeFWjW\":[\"Nächste Schritte\"],\"Hf1cEZ\":[\"Webhook-URL ist erforderlich\"],\"Hg1qE9\":[\"Ihr Workspace-Slug wurde aktualisiert.\"],\"I+AROe\":[\"Kann Karten bearbeiten\"],\"I0gAKM\":[\"Liste konnte nicht aktualisiert werden\"],\"IDvohQ\":[\"hat ein Checklistenelement als unvollständig markiert\"],\"IFgUX6\":[\"Kann Mitglieder entfernen\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Auf Pro upgraden\"],\"Iqh0Uv\":[\"Geplant\"],\"IqjpYe\":[\"E-Mail-Sichtbarkeit\"],\"IrZaAn\":[\"Passwort geändert\"],\"It4/FS\":[\"Board wiederherstellen\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Weiter mit \"],\"J4+OTA\":[\"In Liste verschieben\"],\"J5nbej\":[\"Kritisch\"],\"J5pbP6\":[\"Kann Mitgliederrollen und Berechtigungen bearbeiten\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JBaoDB\":[[\"overflow\"],\" more viewers\"],\"JCdzgZ\":[\"Feature-Anfrage\"],\"JUce1S\":[\"Zugewiesene Personen\"],\"JbXXUW\":[\"Beachten Sie, dass diese Aktion nicht rückgängig gemacht werden kann.\"],\"JcCDm9\":[\"Vorlage erstellt\"],\"Jgaz7E\":[\"Berechtigungen zurückgesetzt\"],\"JjEJSy\":[\"Richten Sie Ihren Workspace ein\"],\"JnWJXY\":[\"Magic-Link\"],\"JxhWxU\":[\"in\"],\"JyXBgS\":[\"Docs\"],\"K3iLeO\":[\"Sehen Sie, was unsere Nutzer über Kan sagen\"],\"K4xHKu\":[\"New comment on a card\"],\"K7k9u3\":[\"Karte konnte nicht verschoben werden\"],\"KAsRdK\":[\"Zu den Mitgliedern\"],\"KEim/+\":[\"hat einen Anhang entfernt\"],\"KFJgmZ\":[\"Anzeigename muss mindestens 3 Zeichen lang sein\"],\"KLJ4eD\":[\"Einladungslink kopiert\"],\"KM6m8p\":[\"Team\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Erweiterte Administrator-Steuerung\"],\"KiVc+q\":[\"Vollzeit\"],\"KuSt9W\":[\"Wie hoste ich selbst?\"],\"L5WQLg\":[\"Token ist erforderlich\"],\"L5ZPjz\":[\"hat ein Checklisten-Element aktualisiert\"],\"LTGE7Y\":[\"Workspace erfolgreich erstellt. Sie können später in den Einstellungen upgraden.\"],\"LeM5RY\":[\"Überschreibungen konnten nicht gelöscht werden\"],\"LoUCpj\":[\"Fehler beim Aktualisieren des Workspace-Namens\"],\"LqWW5F\":[\"Ihr Anzeigename wurde aktualisiert.\"],\"LrcnbT\":[\"Hosten Sie Kan auf Ihrer eigenen Infrastruktur. Ideal für Organisationen, die vollständige Kontrolle über ihre Daten benötigen.\"],\"Lt+ZP3\":[\"hat einen Checklistenpunkt abgeschlossen\"],\"M9p3Vw\":[\"Unbegrenztes Aktivitätsprotokoll\"],\"MCIXdZ\":[\"Verbinden Sie Ihr GitHub-Konto, um Projekte zu importieren.\"],\"MFKlMB\":[\"Einladen\"],\"MHrjPM\":[\"Titel\"],\"MI5OBT\":[\"URL darf nur Buchstaben, Zahlen und Bindestriche enthalten\"],\"MK16u2\":[\"Keine Daten\"],\"MKAScN\":[\"Kann Boards ansehen\"],\"MN6YzG\":[\"Workspace-Slug aktualisiert\"],\"MWrbWq\":[\"Einstellungen | Konto\"],\"MdN5zD\":[\"Sie müssen Administrator sein, um Workspace-Berechtigungen zu verwalten.\"],\"MdwUGG\":[\"Sparen Sie Zeit mit wiederverwendbaren Board-Vorlagen.\"],\"MeO/vH\":[\"Dies führt zur dauerhaften Löschung aller mit diesem Workspace verbundenen Daten.\"],\"MlyjJu\":[\"Anzeigename darf 280 Zeichen nicht überschreiten\"],\"MxQXhL\":[\"Workspace konnte nicht erstellt werden\"],\"N/bcWA\":[\"Anmelden | kan.bn\"],\"N3380t\":[\"Kann Boards erstellen\"],\"N7aud6\":[\"Intelligente Suche\"],\"NH54UR\":[\"hat Checklistenelement umbenannt in <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"Das Board wurde archiviert.\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"NnH3pK\":[\"Test\"],\"NoNwIX\":[\"Inaktiv\"],\"NypLoL\":[\"hat eine Checkliste umbenannt\"],\"O0li0W\":[\"Geben Sie Ihr aktuelles Passwort ein und wählen Sie ein neues sicheres Passwort.\"],\"O1wAlQ\":[\"Gast\"],\"O3oNi5\":[\"E-Mail\"],\"O83K21\":[\"hat ein Checklisten-Element hinzugefügt\"],\"O9jVbx\":[\"Niedrige Priorität\"],\"OAYToL\":[\"Dadurch werden alle benutzerdefinierten Mitgliederberechtigungen in diesem Workspace entfernt. Mitglieder erben Berechtigungen nur von ihren Rollen.\"],\"OIA0ad\":[\"Workspace-Name aktualisiert\"],\"OTxjpR\":[\"ihr-workspace\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"GitHub trennen\"],\"Oi+J+N\":[\"Wählen Sie einen Tarif, um loszulegen. Alle kostenpflichtigen Tarife beinhalten eine 14-tägige kostenlose Testphase.\"],\"OkTY4+\":[\"Secret darf 512 Zeichen nicht überschreiten\"],\"Oo4E6p\":[\"Karte konnte nicht dupliziert werden\"],\"OpNhRn\":[\"Keine Kreditkarte erforderlich\"],\"OtjenF\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein\"],\"OvoEq7\":[\"Mitglied\"],\"OwneeH\":[\"Benutzerdefinierter Workspace-Benutzername\"],\"Ozt2vv\":[\"Ihr Passwort wurde geändert.\"],\"P6dJdq\":[\"Überschreibungen gelöscht\"],\"P8Cunr\":[\"Standard-Benutzername\"],\"PCIlOO\":[\"Mitglied hinzufügen\"],\"PELbXB\":[\"Ihr GitHub-Konto ist verbunden.\"],\"PRjvDT\":[\"Möchten Sie diesen Kommentar wirklich löschen?\"],\"PRofO0\":[\"YouTube-Video bearbeiten\"],\"PTzsxH\":[\"Board-Sichtbarkeit aktualisiert\"],\"PVT7q7\":[\"GitHub verbunden\"],\"PZCqeW\":[\"Bitte versuchen Sie es später erneut.\"],\"Pat4r8\":[\"Basis-Roadmap\"],\"PpZkda\":[\"Features\"],\"PyYD/v\":[\"hat <0>\",[\"0\"],\" der Karte zugewiesen\"],\"Q60WUZ\":[\"Checkout kann nicht gestartet werden\"],\"Q9pQaX\":[\"Für diesen Workspace wurden noch keine Rollen gefunden.\"],\"QD8opX\":[\"Board\"],\"QHhZeE\":[\"Vorlage erfolgreich erstellt\"],\"QNtP5M\":[\"Vorlage verwenden\"],\"Qh7QmR\":[\"Aus Favoriten entfernt\"],\"QnzD50\":[\"On-Premise\"],\"QtACvI\":[\"Label erstellen\"],\"Qtzfdk\":[\"Pro-Plan ∞\"],\"R+w/Va\":[\"Abrechnung\"],\"R1c3Mq\":[\"Board-Name ist erforderlich\"],\"R275Pz\":[\"Sie haben unbegrenzte Plätze mit Ihrem Pro-Plan. Es fallen keine zusätzlichen Kosten für neue Mitglieder an!\"],\"R3FsF4\":[\"Download fehlgeschlagen\"],\"R41XLH\":[\"Webhook konnte nicht aktualisiert werden\"],\"R6pB8R\":[\"Auf Github mit Stern markieren\"],\"RHZu7R\":[\"Weltweit von Teams geliebt\"],\"RJA+sg\":[\"Neues Ticket\"],\"RRn9jf\":[\"Klicken Sie auf den Link, den wir an \",[\"magicLinkRecipient\"],\" gesendet haben, um sich anzumelden.\"],\"RSGOS1\":[\"Kann Listen löschen\"],\"RfgJqw\":[\"hat das Fälligkeitsdatum aktualisiert\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Feedback senden\"],\"RtlIYB\":[\"Sie sind dabei, Ihr Passwort zu ändern.\"],\"RzxgOE\":[\"Rollen & Berechtigungen\"],\"SFnH1j\":[\"Warum ein Open-Source-Trello erstellen?\"],\"SMaFdc\":[\"Abmelden\"],\"SNfg0e\":[\"Kann Workspace ansehen\"],\"SPLN9O\":[\"Behalten Sie die Kontrolle über Ihre Daten\"],\"SRvxId\":[\"HMAC-Secret zur Signaturverifizierung\"],\"STSYcd\":[\"Kann Kommentare löschen\"],\"SUXBxp\":[\"Technik\"],\"SUvm1Y\":[\"Gut geeignet für Einsteiger, die nur die wichtigsten Funktionen benötigen.\"],\"SWEskc\":[\"URL muss mindestens 3 Zeichen lang sein\"],\"Sb2gYF\":[\"Neue Liste\"],\"ScJ9fj\":[\"Datenschutzerklärung\"],\"Se/UIp\":[\"Zu erledigen\"],\"SiPp29\":[\"Webhook erstellen\"],\"SkCNhl\":[\"Boards und Karten durchsuchen...\"],\"SlfejT\":[\"Fehler\"],\"T/pF0Z\":[\"Aus Favoriten entfernen\"],\"T21jY/\":[\"hat ein Label zur Karte hinzugefügt\"],\"T7DJ2k\":[\"Kommentar konnte nicht hinzugefügt werden\"],\"T7LJic\":[\"hat die Karte in eine andere Liste verschoben\"],\"T7Mywq\":[\"Board konnte nicht aktualisiert werden\"],\"TCOMOO\":[\"Berechtigungen bearbeiten\"],\"TCt/8K\":[\"Eingeschränkter API-Zugriff\"],\"TFv5tM\":[\"Rolle konnte nicht aktualisiert werden\"],\"TH3Irz\":[\"Berechtigung\"],\"TKFUnX\":[\"Konto gelöscht\"],\"TX0bT7\":[\"Keine Webhooks konfiguriert. Fügen Sie einen Webhook hinzu, um Benachrichtigungen zu erhalten.\"],\"TXO5TM\":[\"Keine Tastenkombinationen registriert.\"],\"TYli1B\":[\"Kann Kommentare bearbeiten\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Code-Review\"],\"TdfEV7\":[\"Archiviert\"],\"TjREUS\":[\"Neuer API-Schlüssel\"],\"TmvrjU\":[\"Board-URL muss mindestens 3 Zeichen lang sein\"],\"TvY/XA\":[\"Dokumentation\"],\"Tz0i8g\":[\"Einstellungen\"],\"TztLaN\":[\"Liste konnte nicht erstellt werden\"],\"U2+rn0\":[\"Webhook-Name ist erforderlich\"],\"U3pytU\":[\"Administrator\"],\"U5dMR6\":[\"Workspace anzeigen\"],\"UCLeG0\":[\"Nutzungsbedingungen\"],\"UGCIzB\":[\"Label hinzufügen / bearbeiten\"],\"UQbwrz\":[\"Alle Systeme betriebsbereit\"],\"URAE3q\":[\"Pausiert\"],\"USVCGU\":[\"Fehler beim Deaktivieren des Einladungslinks\"],\"UbRKMZ\":[\"Ausstehend\"],\"UbYdrA\":[\"Zahlungshäufigkeit\"],\"UeDFpo\":[\"Wie wird das Projekt finanziert?\"],\"UirJfL\":[\"Benutzerdefiniertes SLA\"],\"UlhdTP\":[\"Workspace gelöscht\"],\"Un80BR\":[\"OSS Friends\"],\"UoSI+i\":[\"Ideal für kleine und wachsende Teams, die zusammenarbeiten müssen\"],\"UveK6V\":[\"Zur App\"],\"Uworke\":[\"Teilzeit\"],\"UxKoFf\":[\"Navigation\"],\"V1KOLq\":[\"E-Mail-Benachrichtigungen für Erwähnungen\"],\"V3MPSQ\":[\"hat den Titel aktualisiert\"],\"V8YRD4\":[\"Viewing now: \",[\"0\"]],\"V8YWP3\":[\"Benutzerdefinierten Titel eingeben\"],\"VHS0aJ\":[\"Alle benutzerdefinierten Berechtigungen löschen?\"],\"VKoDQD\":[\"Neue \",[\"0\"],\" erstellen\"],\"VUZDlr\":[\"Erfahrungsberichte\"],\"VXk54Y\":[\"hat sich die Karte selbst zugewiesen\"],\"VbyRUy\":[\"Kommentare\"],\"VhMDMg\":[\"Passwort ändern\"],\"Vt50G1\":[\"Basis-Kanban\"],\"W/Elkg\":[\"Mittlere Priorität\"],\"W/nQk1\":[\"Kostenloser Plan\"],\"W1ewR0\":[\"Link konnte nicht kopiert werden\"],\"W5r8Qh\":[\"hat ein Checklisten-Element gelöscht\"],\"W8oT+L\":[\"Videoinformationen konnten nicht abgerufen werden\"],\"WHHLh9\":[\"Anhang konnte nicht gelöscht werden\"],\"WI4eGo\":[\"Wie erhalte ich eine benutzerdefinierte URL?\"],\"WQPDcG\":[\"Checklisten-Element konnte nicht aktualisiert werden\"],\"WRkpB1\":[\"Registrierung deaktiviert\"],\"WRsbHO\":[\"Ihr Trello-Konto ist verbunden.\"],\"WYDptz\":[\"Abonnement erforderlich\"],\"WYwN1G\":[\"Neuer Import\"],\"WbTDwg\":[\"In Bearbeitung\"],\"Weq9zb\":[\"Allgemein\"],\"WmPhYW\":[\"Beim Trennen Ihres Trello-Kontos ist ein Fehler aufgetreten.\"],\"WnEwDO\":[\"Haben Sie bereits ein Konto? <0><1>Anmelden\"],\"Ws+3X+\":[\"Unbegrenzte Plätze und erweiterte Funktionen für wachsende Teams.\"],\"Ws1I0u\":[\"A card was updated\"],\"Wy6pcF\":[\"Board-Sichtbarkeit konnte nicht aktualisiert werden\"],\"X0N0PA\":[\" (bearbeitet)\"],\"XDRXbZ\":[\"Workspace-Beschreibung muss mindestens 3 Zeichen lang sein\"],\"XEoGkQ\":[\"Zur Startseite\"],\"XILg0L\":[\"Ungültige E-Mail-Adresse\"],\"XJOV1Y\":[\"Aktivität\"],\"XNxYxq\":[\"Board-Vorlagen\"],\"XTKtey\":[\"Liste erstellen\"],\"XXbgHS\":[\"Eingestellt\"],\"XYLcNv\":[\"Support\"],\"XicmhT\":[\"Fälligkeitsdatum\"],\"Xid3K6\":[\"Board-URL darf nur Buchstaben, Zahlen und Bindestriche enthalten\"],\"Xjj/kS\":[\"Kanban neu gedacht\"],\"XpcjLO\":[\"Board-URL konnte nicht aktualisiert werden\"],\"Y8yzGg\":[\"Kostenlos starten. Upgraden Sie, wenn Ihr Team wächst. Keine versteckten Gebühren, keine Verträge.\"],\"YBBifR\":[\"Trello trennen\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Checklisten-Element konnte nicht neu sortiert werden\"],\"YRk79X\":[\"Erweiterte Sicherheit, Compliance und dedizierter Support für große Organisationen.\"],\"YVT40D\":[\"hat Label entfernt <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Fehler beim Upgrade des Abonnements\"],\"YcyP2z\":[\"Vorlage konnte nicht erstellt werden\"],\"YdIn4I\":[\"You were removed from a workspace\"],\"Yf9FAx\":[\"Sie können nicht mehr auf diesen Workspace zugreifen.\"],\"YhvWXb\":[\"Board-Analyse\"],\"YirHq7\":[\"Feedback\"],\"YkfDoz\":[\"Jährlich\"],\"YoyKbT\":[\"Dieser API-Schlüssel wird nur einmal angezeigt. Bitte speichern Sie ihn an einem sicheren Ort.\"],\"Ypy5pZ\":[\"Möchten Sie den Webhook \\\"\",[\"webhookName\"],\"\\\" wirklich löschen? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"YtUfwW\":[\"Anmeldung mit \",[\"0\"],\" fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"Yx0Ud8\":[\"Angefordert\"],\"Z3FXyt\":[\"Wird geladen ...\"],\"Z3krJD\":[\"Workspace-Mitgliedern erlauben, die E-Mail-Adressen der anderen zu sehen\"],\"Z6r9z1\":[\"Karte konnte nicht gelöscht werden\"],\"ZAs2NN\":[\"Alle Pro-Features +\"],\"ZDGm40\":[\"Account löschen\"],\"ZDIydz\":[\"Loslegen\"],\"ZDPJBc\":[\"Benutzerdefinierte Benutzernamen erfordern ein Upgrade auf einen Pro-Tarif\"],\"ZDo4HN\":[\"Brainstorming\"],\"ZH7TVS\":[\"Kartentitel\"],\"ZL1A+p\":[\"Anhang konnte nicht hochgeladen werden. Bitte versuchen Sie es erneut.\"],\"ZT4Khw\":[\"Möchten Sie diese Karte wirklich löschen?\"],\"ZU5IYI\":[\"Unbegrenzte Boards, unbegrenzte Listen, unbegrenzte Karten. Keine Kreditkarte erforderlich.\"],\"ZXSPJt\":[\"Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es später erneut.\"],\"ZqDqbi\":[\"Organisieren und finden Sie Karten schnell mit leistungsstarken Filterwerkzeugen.\"],\"Zz1qkk\":[\"Unbegrenzte Karten\"],\"a3LDKx\":[\"Sicherheit\"],\"aHCEmh\":[\"Preise\"],\"aHRWVI\":[\"hat das Fälligkeitsdatum entfernt\"],\"aJ4pMe\":[\"FAQs\"],\"aKJHG+\":[\"Board archivieren\"],\"aW3TOw\":[\"E-Mail-Benachrichtigungen\"],\"aWDhU5\":[\"Kanban ist besser im Team. Perfekt für kleine und wachsende Teams, die zusammenarbeiten möchten.\"],\"aWlSc/\":[\"Neue Liste erstellen\"],\"abUZlY\":[\"Details hinzufügen...\"],\"aelko+\":[\"Sie können eine benutzerdefinierte Workspace-URL wie <0>kan.bn/kan erhalten, indem Sie in Ihre <1>Workspace-Einstellungen gehen und ein Pro-Workspace-Abonnement erwerben. Alle Abonnements helfen bei der Finanzierung der Projektentwicklung!\"],\"agPptk\":[\"Mittel\"],\"aiHZVP\":[\"Dokumentation anzeigen\"],\"b/LfJo\":[\"E-Mail\"],\"b3Thhd\":[\"Upload fehlgeschlagen\"],\"b5FKyH\":[\"hat Label <0>\",[\"0\"],\" hinzugefügt\"],\"b9XOHo\":[[\"0\"],\" erstellen\"],\"bD8I7O\":[\"Abschließen\"],\"bDI6VI\":[[\"0\"],\" wurde aus deinen Favoriten entfernt.\"],\"bFREhu\":[\"Ende der Liste\"],\"bJZm1W\":[\"Bewerber\"],\"bJtM0P\":[\"Diese Workspace-URL ist reserviert\"],\"bKzM8L\":[\"Dedizierter Account-Manager\"],\"bZSICm\":[\"Checklistenelement konnte nicht hinzugefügt werden\"],\"bcIybO\":[\"Workspace-Name ist erforderlich\"],\"bdztP2\":[\"Recherche\"],\"be30i9\":[\"0 $\"],\"bfZE+Y\":[\"Die Rolle des Mitglieds wurde aktualisiert.\"],\"bff61F\":[\"Team-Plan\"],\"bfgr/e\":[\"Frage\"],\"bmXKoX\":[\"hat \",[\"0\"],\" Labels hinzugefügt: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Fehler beim Löschen des Kontos\"],\"c/IAuR\":[\"Wichtig\"],\"c3b0B0\":[\"Jetzt starten\"],\"c4nMcR\":[\"Ihr Avatar\"],\"c9AJhn\":[\"Workspace beitreten\"],\"cAgBMh\":[\"Vollständige Kontrolle und Eigentümerschaft:\"],\"cFQEU/\":[\"Tastenkombinationen öffnen\"],\"cOh+MI\":[\"Screening\"],\"cWXW+7\":[\"Webhook hinzufügen\"],\"cWcxrL\":[\"Neue Checkliste\"],\"cWtfn1\":[\"Auf Pro upgraden (29 $/Monat)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Workspace-Beschreibung\"],\"cji2nM\":[\"Fehler beim Erstellen des Einladungslinks\"],\"cnGeoo\":[\"Löschen\"],\"cp1rsD\":[\"Einladungslink deaktivieren\"],\"csFbe+\":[\"Zu Vorlagen gehen\"],\"curoK5\":[\"Neuer Workspace\"],\"d+F6q9\":[\"Erstellt\"],\"d33Usy\":[\"Checkliste erstellen\"],\"dEgA5A\":[\"Abbrechen\"],\"dUh9QW\":[\"Planung\"],\"ddrz1m\":[\"Überfällig\"],\"delOXn\":[\"Labels konnten nicht aktualisiert werden\"],\"dgr4Kq\":[\"Label bearbeiten\"],\"dmKdk0\":[\"Sobald Sie Ihren Workspace löschen, gibt es kein Zurück mehr. Diese Aktion kann nicht rückgängig gemacht werden.\"],\"dsLT3m\":[\"Karte erstellen\"],\"dtQIWT\":[\"Zusammenarbeit\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Diese Workspace-URL ist bereits vergeben\"],\"e1v+J3\":[\"Secret (optional)\"],\"e4hPSt\":[\"Auf Rollenstandards zurücksetzen\"],\"e6wIqm\":[\"You were mentioned in a card\"],\"eEQyz+\":[\"Verfolgen Sie alle Kartenänderungen mit detailliertem Aktivitätsverlauf.\"],\"ePK91l\":[\"Bearbeiten\"],\"eZCGbT\":[\"Ja, wir bieten einen dauerhaft kostenlosen Plan für die individuelle Nutzung an. Keine Einschränkungen, keine Paywalls, keine Limits.\"],\"edWbV6\":[\"Link kopiert\"],\"ekCRTP\":[\"Abgelehnt\"],\"en3oy5\":[\"Feature\"],\"euc6Ns\":[\"Duplizieren\"],\"eus61c\":[\"Test senden\"],\"evg7+A\":[\"Ihre Boards wurden importiert.\"],\"evj0lK\":[\"Bieten Sie einen kostenlosen Plan an?\"],\"f8fH8W\":[\"Design\"],\"f8lDFq\":[\"hat die Karte erstellt\"],\"fDQ7hA\":[\"Labels kopieren\"],\"fEY2vP\":[\"Karte nicht gefunden\"],\"fQCrjt\":[\"Die Sichtbarkeit Ihres Boards wurde auf \",[\"0\"],\" gesetzt.\"],\"fR9laE\":[\"Geben Sie Ihr aktuelles Passwort ein\"],\"fSf2ee\":[\"Roadmap anzeigen.\"],\"fW5sSv\":[\"Webhook bearbeiten\"],\"fYVH36\":[\"Kommentar konnte nicht aktualisiert werden\"],\"fcWrnU\":[\"Abmelden\"],\"fuwKpE\":[\"Bitte versuchen Sie es erneut.\"],\"fvLNDy\":[\"Es wurden noch keine Listen erstellt\"],\"fzGyWs\":[\"Schriftgröße der Anwendung ändern.\"],\"fziA2d\":[\"Unbegrenzte Kommentare\"],\"g2xBxu\":[\"Das Importieren Ihrer Trello-Boards in Kan ist einfach. Sie können unserer Schritt-für-Schritt-Anleitung <0>hier folgen.\"],\"g9NChz\":[\"Account-Manager\"],\"gGx5tM\":[\"Bearbeitung\"],\"gKmoow\":[\"Diese URL ist reserviert\"],\"gL/7jw\":[\"Beschreibung hinzufügen... (‚/' für Befehle oder ‚@' zum Erwähnen eingeben)\"],\"gQ/02p\":[\"Fehler beim Trennen von GitHub\"],\"gUX7b+\":[\"Die Open-Source-<0/>Alternative zu Trello\"],\"gZxH/p\":[\"hat das Fälligkeitsdatum auf <0>\",[\"formattedDate\"],\" geändert\"],\"ghSJ4U\":[\"Workspace-Name darf 64 Zeichen nicht überschreiten\"],\"gkxGkF\":[\"14 Tage kostenlose Testversion · Jederzeit Plan wechseln oder kündigen\"],\"gkzAEM\":[\"Weiter mit \",[\"0\"]],\"goklcJ\":[\"Interviewing\"],\"gpfJ3v\":[\"Kostenlos, für immer\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"Board-URL darf 60 Zeichen nicht überschreiten\"],\"h16FyT\":[\"Listen\"],\"h2FKMV\":[\"Sie haben keine Berechtigung\"],\"h2ztFt\":[\"Alle Free-Features +\"],\"h4VV67\":[\"hat eine Checkliste hinzugefügt\"],\"h7MgpO\":[\"Tastaturkürzel\"],\"h8DugX\":[\"Labels\"],\"hAMddS\":[\"hat sich selbst von der Karte entfernt\"],\"hB02vO\":[\"Mitglieder verwalten\"],\"hXMFoN\":[\"Keine Listen\"],\"hYzsXr\":[\"Einstellungen | Integrationen\"],\"hty0d5\":[\"Montag\"],\"i0ZMQl\":[\"Board archiviert\"],\"i30J2U\":[\"Keine Projekte gefunden\"],\"i5rE2/\":[\"URL darf maximal 64 Zeichen lang sein\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Zurück\"],\"iHcdea\":[\"Fällig nächste Woche\"],\"iLbjv+\":[\"Kann Workspace bearbeiten\"],\"iQmbPb\":[\"Lizenz\"],\"iSLIjg\":[\"Verbinden\"],\"iTylMl\":[\"Vorlagen\"],\"iVIGZb\":[\"Anhang hochgeladen\"],\"isRobC\":[\"Neu\"],\"itgYbC\":[\"Test-Webhook erfolgreich gesendet!\"],\"iwr7AP\":[\"Ideen\"],\"iy1wb+\":[\"Einstellungen | API\"],\"j0o6ml\":[\"Ihre Workspace-Beschreibung\"],\"j1+HPc\":[\"Beim Verbinden Ihres GitHub-Kontos ist ein Fehler aufgetreten.\"],\"j2+d/o\":[\"API-Referenz\"],\"j77sVH\":[\"You were assigned to\"],\"j9IZZ0\":[\"Benutzerdefinierte Workspace-URL\"],\"jDRt4n\":[\"Möchten Sie das Abonnement kündigen?\"],\"jEw0Mr\":[\"Bitte geben Sie eine gültige URL ein\"],\"jIuWsV\":[\"Webhook-Name darf 255 Zeichen nicht überschreiten\"],\"jL82rC\":[\"Benutzerdefinierte Berechtigungen löschen\"],\"jNuzV/\":[\"Kann Karten löschen\"],\"jQ6I8X\":[\"Rolle aktualisiert\"],\"jZBHkN\":[\"Der Workspace-Name muss mindestens 3 Zeichen lang sein\"],\"jfC/xh\":[\"Kontakt\"],\"jl3aEJ\":[\"hat Checklistenelement <0>\",[\"0\"],\" als unvollständig markiert\"],\"jlB2RY\":[\"Das eingegebene aktuelle Passwort ist falsch.\"],\"jwI32v\":[\"Board nicht gefunden\"],\"k7rCa/\":[\"Groß\"],\"kECVpo\":[\"Möchten Sie dieses Label wirklich löschen?\"],\"kQwvU8\":[\"hat ein Label von der Karte entfernt\"],\"kSxwQL\":[\"Sie können Teammitglieder einladen, indem Sie auf die Schaltfläche \\\"Einladen\\\" in der oberen rechten Ecke der <0>Mitgliederseite klicken und deren E-Mail-Adresse eingeben. Sie erhalten eine E-Mail mit einem Link, um dem Workspace beizutreten.\"],\"kYu0eF\":[\"Workspace löschen\"],\"kfOGMr\":[\"Quick Win\"],\"klpSmb\":[\"Workspace-URL bearbeiten\"],\"kp6L3T\":[\"Dieser Workspace-Benutzername ist bereits vergeben\"],\"kryGs+\":[\"Karte\"],\"kuoc68\":[\"10 $/Monat\"],\"kxEs5t\":[\"Trello-Importe\"],\"l2PIAy\":[\"Self-Hosting mit Github\"],\"l31EoQ\":[\"Finden Sie Antworten auf häufig gestellte Fragen zu Kan. Können Sie nicht finden, wonach Sie suchen? <0>Kontaktieren Sie uns gerne.\"],\"l3s5ri\":[\"Importieren\"],\"l4asa1\":[\"Dieses Board ist privat oder existiert nicht\"],\"lGjicL\":[\", oder siehe unsere\"],\"lKAvEd\":[\"Fehler beim Trennen von Trello\"],\"lXvXNI\":[\"Einladungslink konnte nicht kopiert werden\"],\"lYT7pQ\":[\"Liste löschen\"],\"lkz85l\":[\"Der Hauptunterschied zwischen Kan und Trello besteht darin, dass Kan Open Source ist und es jedem ermöglicht, unseren Code einzusehen, zu ändern und dazu beizutragen. Unser Cloud-Angebot bietet außerdem keine Einschränkungen bei den Funktionen für die individuelle Nutzung, während Trello grundlegende Funktionen wie die Anzahl der Boards, die Sie erstellen können, hinter einer Paywall sperrt.\"],\"lo8xBK\":[\"Möchten Sie \",[\"entityLabel\"],\" wirklich entfernen?\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"lsgnzd\":[\"Fehler beim Upgrade auf Pro\"],\"lyqwgn\":[\"Label hinzufügen\"],\"m2nk0i\":[\"Einfache Preisgestaltung\"],\"mErq7F\":[\"Registrieren\"],\"mHhffx\":[\"Checkliste konnte nicht erstellt werden\"],\"mTGd3+\":[\"hat eine Checkliste gelöscht\"],\"mTwGOf\":[\"Dieser Einladungslink ist ungültig oder abgelaufen.\"],\"mU+M00\":[[\"0\"],\" wurde zu deinen Favoriten hinzugefügt.\"],\"mVZH9V\":[\"Als Trello 2011 auf den Markt kam, begeisterte es alle mit seiner sorgfältig gestalteten Einfachheit, aber im Laufe der Jahre verlor es seinen Zauber und entwickelte sich zu etwas, das eher \\\"Jira Lite\\\" ähnelt. Dieses Projekt ist unser Versuch, den ursprünglichen Zauber der Einfachheit von Trello in Open Source wiederzubeleben.\"],\"mZGPxt\":[\"Einladungslink in Zwischenablage kopiert\"],\"mchgzf\":[\"Sie haben sich erfolgreich registriert.\"],\"mgXgHu\":[\"Zu den Boards\"],\"mrhyIB\":[\"Perfekt für kleine und wachsende Teams, die zusammenarbeiten möchten.\"],\"mwBdZ2\":[\"Dies führt zur dauerhaften Löschung aller mit Ihrem Konto verbundenen Daten.\"],\"mx8+1u\":[\"Unbegrenzte Mitglieder\"],\"n+xLOH\":[\"Kundensupport\"],\"n1GRql\":[\"Neues Label\"],\"n1ekoW\":[\"Anmelden\"],\"n6EWYz\":[\"Wird verwendet, um Webhook-Payloads zur Verifizierung zu signieren. Leer lassen, um das bestehende Secret beizubehalten.\"],\"n9V+ps\":[\"Geben Sie Ihren Namen ein\"],\"nKBUeF\":[\"Die Karte wurde dupliziert.\"],\"nOhz3x\":[\"Abmelden\"],\"nYNMZZ\":[\"Position in Liste (0 = erste, leer lassen für Ende)\"],\"nabda1\":[\"Karte löschen\"],\"nbfdhU\":[\"Integrationen\"],\"ngBZOd\":[\"Kommentar hinzufügen... (‚/' für Befehle oder ‚@' zum Erwähnen eingeben)\"],\"nhMhRr\":[\"Vielen Dank für Ihr Feedback!\"],\"njJFtc\":[\"Kommentar löschen\"],\"nk7caK\":[\"Trello verbinden\"],\"nol/Fb\":[\"Wie lade ich Teammitglieder ein?\"],\"notwF1\":[\"Der Vorlagenname darf 100 Zeichen nicht überschreiten\"],\"nq7q3Z\":[\"API-Schlüsselname darf 30 Zeichen nicht überschreiten\"],\"nqdIhs\":[\"Benutzerdefinierte Board-Vorlagen\"],\"nryrgW\":[\"Alle individuellen Berechtigungsüberschreibungen der Mitglieder wurden auf ihre Rollenstandards zurückgesetzt.\"],\"o+JCfN\":[\"Vertraut von schnellen Teams<0/>auf der ganzen Welt\"],\"o4e/70\":[\"Wählen Sie mindestens ein Ereignis aus\"],\"o4sQAg\":[\"Webhook konnte nicht erstellt werden\"],\"o7J4JM\":[\"Filter\"],\"o8adVG\":[\"10 MB Datei-Uploads\"],\"o9WLwO\":[\"Karte konnte nicht aktualisiert werden\"],\"oVBq1w\":[\"pro Benutzer/Monat\"],\"oW13KZ\":[\"Starten Sie noch heute kostenlos\"],\"odFCYX\":[\"Ungültige Einladung\"],\"okpxfB\":[\"Neuen Schlüssel erstellen\"],\"onllUU\":[\"Mark all as read\"],\"oyRjD/\":[\"Pro-Plan\"],\"p/hk9N\":[\"Sie wurden erfolgreich angemeldet.\"],\"pBsoKL\":[\"Zu Favoriten hinzufügen\"],\"pFGfsR\":[\"Schauen Sie sich einige unserer bevorzugten Open-Source-Projekte an.\"],\"pFKC6A\":[\"API-Schlüsselname\"],\"pL78ec\":[\"Zu Favoriten hinzugefügt\"],\"pM1sn/\":[\"New notification\"],\"pVctI7\":[\"On-Premise-Bereitstellungsoption\"],\"pXVFJy\":[\"Kann Boards löschen\"],\"pa9o5D\":[\"Avatar zuschneiden\"],\"pfa8F0\":[\"Anzeigename\"],\"pmUArF\":[\"Workspace\"],\"pnrmSP\":[\"Neue Karte\"],\"ppaRWv\":[\"Self-Hosting\"],\"pvnfJD\":[\"Dunkel\"],\"q+lt9D\":[\"Fehler beim Löschen des Labels\"],\"q3il6U\":[\"Schriftgröße\"],\"qPP4lD\":[\"Das Einladen von Mitgliedern erfordert einen Team-Plan. Sie werden zur Upgrade-Seite Ihres Workspaces weitergeleitet.\"],\"qQXocp\":[\"Kann Workspace-Einstellungen verwalten\"],\"qaS+1/\":[\"Ideal für Teams, die grenzenlos skalieren möchten\"],\"qfUS/w\":[\"Open-Source-Freunde\"],\"qkjvgj\":[\"Ihr Workspace wurde gelöscht.\"],\"qlAIQ1\":[\"Remote\"],\"qtE5nt\":[\"Element hinzufügen...\"],\"qzdST2\":[\"Board-Sichtbarkeit\"],\"r6BgwX\":[\"Passwort ist für die Anmeldung erforderlich.\"],\"rD6UIt\":[\"In der Cloud starten\"],\"rF8SEQ\":[\"Kommentar bearbeiten\"],\"rQRXo8\":[\"Neues Secret eingeben, um zu aktualisieren\"],\"rQXTmd\":[\"Karten-URL in Zwischenablage kopiert\"],\"rRM7r0\":[\"Importieren Sie Ihre Trello-Boards und legen Sie direkt los.\"],\"rYUZIe\":[\"Quelle auswählen\"],\"raHesj\":[\"Sie wurden abgemeldet!\"],\"rarRW/\":[\"Fehler beim Einladen des Mitglieds\"],\"ri1hHe\":[\"Fällig nächsten Monat\"],\"rmN315\":[\"Spaß\"],\"rs7L54\":[\"hat ein Mitglied zur Karte hinzugefügt\"],\"rtbVvN\":[\"Kann Listen bearbeiten\"],\"s+MGs7\":[\"Ressourcen\"],\"s6iE/c\":[\"Die Registrierung ist derzeit deaktiviert. Bitte versuchen Sie es später erneut.\"],\"sBhOFG\":[\"Einfaches, visuelles Aufgabenmanagement, das einfach funktioniert. Verschieben Sie Karten per Drag-and-drop, arbeiten Sie mit Ihrem Team zusammen und erledigen Sie mehr.\"],\"sDLCvT\":[\"Verbinden Sie Ihre bevorzugten Tools, um Ihren Workflow zu optimieren.\"],\"sDuhfK\":[\"Launch-Angebot: Unbegrenzte Plätze für nur 29 $/Monat mit Pro\"],\"sU2uWc\":[\"Karte dupliziert\"],\"sUZo7y\":[\"Registrieren | kan.bn\"],\"sVBn4K\":[\"Fehler beim Aktualisieren des Anzeigenamens\"],\"sY2lzr\":[\"Für diesen Anhang ist keine Download-URL verfügbar.\"],\"sbNNyi\":[\"Neuer Webhook\"],\"snMaH4\":[\"Webhook löschen\"],\"t+R8+P\":[\"Ausführung\"],\"t/YqKh\":[\"Entfernen\"],\"t0dTPm\":[\"Konfigurieren Sie Webhooks, um Benachrichtigungen zu erhalten, wenn Karten erstellt, aktualisiert, verschoben oder gelöscht werden.\"],\"t2nDzl\":[\"Rechnungen und Abonnement anzeigen und verwalten.\"],\"t6FvJH\":[\"Kann Kommentare hinzufügen\"],\"tGwwnq\":[\"hat die Beschreibung aktualisiert\"],\"tHcbLF\":[\"Kann Boards bearbeiten\"],\"tIdipJ\":[\"Board-URL bearbeiten\"],\"tMYIu7\":[\"Aktivitätsprotokolle\"],\"tOZp9v\":[\"Konfigurierbare Benutzerrollen und Berechtigungen\"],\"tTbref\":[\"Passwort ist für die Registrierung erforderlich.\"],\"tYN21H\":[\"Benutzer ist bereits Mitglied dieses Workspaces\"],\"tbNcu4\":[\"Board wiederhergestellt\"],\"tca56/\":[\"Ihre Datei wurde erfolgreich hochgeladen.\"],\"tfDRzk\":[\"Speichern\"],\"tlhgDC\":[\"Keine archivierten Boards\"],\"tmlJN1\":[\"Bitte geben Sie eine gültige YouTube-URL ein\"],\"tmpW+w\":[\"Board löschen\"],\"tst44n\":[\"Ereignisse\"],\"tyHiOa\":[\"Bitte versuchen Sie es später erneut oder kontaktieren Sie den Kundensupport.\"],\"u2+JIh\":[\"Benutzerdefinierte URLs erfordern ein Upgrade auf einen Pro-Plan\"],\"u8JHrO\":[\"Filter löschen\"],\"uAQUqI\":[\"Status\"],\"uEGGDs\":[\"Mein Webhook\"],\"uOqaMC\":[\"Sie wurden eingeladen, einem Workspace beizutreten.\"],\"uP4V6I\":[\"Kostenlos für alle\"],\"uXGLuq\":[\"API-Schlüssel erstellen\"],\"uZg2+w\":[\"Optimieren Sie Ihren Workspace für nur 29 $/Monat. Das erhalten Sie:\"],\"uck1tz\":[\"hat ein Mitglied von der Karte entfernt\"],\"usVytm\":[\"Sobald Sie Ihr Konto löschen, gibt es kein Zurück mehr. Diese Aktion kann nicht rückgängig gemacht werden.\"],\"uvH2xS\":[\"Mitglieder kopieren\"],\"v+Wp++\":[\"Open Source\"],\"v1kQyJ\":[\"Webhooks\"],\"v3YoMA\":[\"Senior\"],\"vAR/I8\":[\"Auf eigener Infrastruktur betreiben\"],\"vAj6xG\":[\"Sie können selbst hosten, indem Sie den Anweisungen in unserem <0>Repo folgen.\"],\"vSJd18\":[\"Video\"],\"vUr5JT\":[\"Noch kein Konto? <0><1>Registrieren\"],\"vXIe7J\":[\"Sprache\"],\"vXemf6\":[\"Bug\"],\"va/3u1\":[\"Legen Sie fest, wer Ihre Boards ansehen und bearbeiten kann.\"],\"vbskQn\":[\"API-Schlüsselname ist erforderlich\"],\"veIDCY\":[\"14-tägige kostenlose Testversion starten\"],\"vfRdCZ\":[\"Berechtigungen konnten nicht zurückgesetzt werden\"],\"vgdzLf\":[\"Weitere erstellen\"],\"vifyyw\":[\"Rechtliches\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"Die Berechtigungen dieses Mitglieds wurden auf die Standardwerte seiner Rolle zurückgesetzt.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"Monatliche Abrechnung\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Langfristig\"],\"vwGkYB\":[\"Passwort muss mindestens 8 Zeichen lang sein\"],\"wIb7Ng\":[\"Softwareentwicklung\"],\"wK4OTM\":[\"Titel (optional)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Bitte wählen Sie eine Datei zum Hochladen aus.\"],\"wY+6Ye\":[\"Diese Board-URL ist bereits vergeben\"],\"wakO3W\":[\"hat Checkliste <0>\",[\"0\"],\" hinzugefügt\"],\"wewm3j\":[\"Board-Name darf 100 Zeichen nicht überschreiten\"],\"wgNoIs\":[\"Alle auswählen\"],\"wlQNTg\":[\"Mitglieder\"],\"wqkcin\":[\"Kann Kommentare ansehen\"],\"wqxglO\":[\"Lernen\"],\"wruKPE\":[\"Unterstützen Sie die Entwicklung des Projekts\"],\"wsy94z\":[\"Ideal für große Organisationen mit erweiterten Anforderungen\"],\"wtxjAY\":[\"Workspace-Mitglieder\"],\"x0kMO/\":[\"Fehler beim Aktualisieren der Workspace-URL\"],\"x8GeCD\":[\"Anzeigename aktualisiert\"],\"xEbBrW\":[\"Welche Lizenz verwenden Sie?\"],\"xGVfLh\":[\"Weiter\"],\"xLTZVf\":[\"Wochenbeginn\"],\"xMn+V9\":[\"Importieren von Trello\"],\"xRPn3U\":[\"Geben Sie Ihre E-Mail-Adresse ein\"],\"xvcYhz\":[\"Löschen Sie alle benutzerdefinierten Mitgliederberechtigungen, sodass alle Mitglieder nur Berechtigungen von ihren Rollenstandardwerten erben.\"],\"y3aU20\":[\"Änderungen speichern\"],\"yD3ZSw\":[\"Ändern Sie Ihre Spracheinstellungen.\"],\"yV7o5I\":[\"Wie importiere ich meine Trello-Boards?\"],\"yb/fjw\":[\"Genehmigung\"],\"yhLUU8\":[\"Fehler beim Verbinden von GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Projekt importieren (1)\"],\"other\":[\"Projekte importieren (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Schließen\"],\"zC8Whw\":[\"Legen Sie los, indem Sie eine neue Liste erstellen\"],\"zERArS\":[\"hat den Titel zu <0>\",[\"0\"],\" aktualisiert\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Einladungslink erstellen\"],\"zMlxCA\":[\"1 Benutzer\"],\"zMquA7\":[\"Tarif wählen\"],\"zQPhSa\":[\"In Link umwandeln\"],\"zQX5Dj\":[\"Listenname\"],\"zYRVNp\":[\"Liste auswählen\"],\"zkWmBh\":[\"Jährlich\"],\"zl1b97\":[\"Karte konnte nicht erstellt werden\"],\"zoEbXq\":[\"Kann Karten ansehen\"],\"zt/6cS\":[\"Ideal für kleine Teams, die gemeinsam arbeiten und schneller vorankommen möchten.\"],\"zto8aj\":[\"Trello getrennt\"],\"zwBp5t\":[\"Privat\"],\"zwTiVn\":[\"hat einen Anhang entfernt <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Mehr erfahren\"],\"zxKs+y\":[\"Morgen fällig\"],\"zzDlyQ\":[\"Erfolg\"]}")as Messages; \ No newline at end of file diff --git a/apps/web/src/locales/en/messages.json b/apps/web/src/locales/en/messages.json index a81a27738..59b48271c 100644 --- a/apps/web/src/locales/en/messages.json +++ b/apps/web/src/locales/en/messages.json @@ -59,7 +59,7 @@ ], [ "src/views/card/index.tsx", - 317 + 364 ] ], "translation": "{0} | {1}" @@ -123,7 +123,7 @@ "origin": [ [ "src/views/board/index.tsx", - 557 + 561 ] ], "translation": "{0} not found" @@ -144,6 +144,22 @@ ], "translation": "{boardCount, plural, one {Import board (1)} other {Import boards ({boardCount})}}" }, + "JBaoDB": { + "message": "{overflow} more viewers", + "placeholders": { + "overflow": [ + "overflow" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 70 + ] + ], + "translation": "{overflow} more viewers" + }, "yndBF+": { "message": "{projectCount, plural, one {Import project (1)} other {Import projects ({projectCount})}}", "placeholders": { @@ -280,6 +296,18 @@ ], "translation": "404 - Page Not Found | kan.bn" }, + "Ws1I0u": { + "message": "A card was updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 54 + ] + ], + "translation": "A card was updated" + }, "/rn4RE": { "message": "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place.", "placeholders": {}, @@ -367,7 +395,7 @@ "origin": [ [ "src/views/card/index.tsx", - 455 + 502 ], [ "src/views/public/board/CardModal.tsx", @@ -483,7 +511,7 @@ "origin": [ [ "src/views/card/components/ChecklistItemRow.tsx", - 169 + 189 ] ], "translation": "Add details..." @@ -1457,11 +1485,11 @@ "origin": [ [ "src/views/board/index.tsx", - 530 + 534 ], [ "src/views/card/index.tsx", - 317 + 364 ], [ "src/views/public/board/index.tsx", @@ -1645,7 +1673,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 99 + 100 ], [ "src/views/pricing/components/FeatureComparisonTable.tsx", @@ -2169,7 +2197,7 @@ "origin": [ [ "src/views/card/index.tsx", - 317 + 364 ] ], "translation": "Card" @@ -2193,11 +2221,11 @@ "origin": [ [ "src/views/card/index.tsx", - 363 + 410 ], [ "src/views/card/index.tsx", - 400 + 447 ] ], "translation": "Card not found" @@ -2214,6 +2242,18 @@ ], "translation": "Card title" }, + "4630Pc": { + "message": "Card updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 53 + ] + ], + "translation": "Card updated" + }, "rQXTmd": { "message": "Card URL copied to clipboard", "placeholders": {}, @@ -2221,7 +2261,7 @@ "origin": [ [ "src/views/board/index.tsx", - 308 + 312 ], [ "src/views/card/components/Dropdown.tsx", @@ -2449,7 +2489,7 @@ "origin": [ [ "src/views/card/index.tsx", - 354 + 401 ], [ "src/views/members/components/EditMemberPermissionsModal.tsx", @@ -3105,11 +3145,11 @@ "origin": [ [ "src/views/board/index.tsx", - 92 + 94 ], [ "src/views/board/index.tsx", - 671 + 676 ] ], "translation": "Create new list" @@ -3893,7 +3933,7 @@ ], [ "src/views/card/index.tsx", - 153 + 155 ] ], "translation": "Due date" @@ -5130,7 +5170,7 @@ "origin": [ [ "src/views/board/index.tsx", - 656 + 661 ] ], "translation": "Get started by creating a new list" @@ -5258,7 +5298,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 107 + 108 ], [ "src/pages/404.tsx", @@ -5286,7 +5326,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 131 + 132 ] ], "translation": "Go to members" @@ -5298,7 +5338,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 143 + 144 ] ], "translation": "Go to settings" @@ -5310,7 +5350,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 119 + 120 ] ], "translation": "Go to templates" @@ -5974,7 +6014,7 @@ ], [ "src/views/card/index.tsx", - 133 + 135 ] ], "translation": "Labels" @@ -6154,7 +6194,7 @@ ], [ "src/views/board/index.tsx", - 306 + 310 ], [ "src/views/card/components/Dropdown.tsx", @@ -6182,7 +6222,7 @@ ], [ "src/views/card/index.tsx", - 124 + 126 ] ], "translation": "List" @@ -6347,6 +6387,18 @@ ], "translation": "Manage members" }, + "onllUU": { + "message": "Mark all as read", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 155 + ] + ], + "translation": "Mark all as read" + }, "IDvohQ": { "message": "marked a checklist item as incomplete", "placeholders": {}, @@ -6438,7 +6490,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 123 + 124 ], [ "src/views/board/components/Filters.tsx", @@ -6450,7 +6502,7 @@ ], [ "src/views/card/index.tsx", - 143 + 145 ], [ "src/views/members/index.tsx", @@ -6722,6 +6774,30 @@ ], "translation": "New checklist" }, + "7Qqqyu": { + "message": "New comment on", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 49 + ] + ], + "translation": "New comment on" + }, + "K4xHKu": { + "message": "New comment on a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 50 + ] + ], + "translation": "New comment on a card" + }, "WYwN1G": { "message": "New import", "placeholders": {}, @@ -6757,11 +6833,23 @@ ], [ "src/views/board/index.tsx", - 620 + 624 ] ], "translation": "New list" }, + "pM1sn/": { + "message": "New notification", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 56 + ] + ], + "translation": "New notification" + }, "+MdEsf": { "message": "New password is required", "placeholders": {}, @@ -6965,7 +7053,7 @@ "origin": [ [ "src/views/board/index.tsx", - 652 + 657 ] ], "translation": "No lists" @@ -6977,11 +7065,23 @@ "origin": [ [ "src/views/board/index.tsx", - 657 + 662 ] ], "translation": "No lists have been created yet" }, + "HbXReU": { + "message": "No notifications yet", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 192 + ] + ], + "translation": "No notifications yet" + }, "i30J2U": { "message": "No projects found", "placeholders": {}, @@ -7034,6 +7134,26 @@ ], "translation": "No webhooks configured. Add a webhook to receive notifications." }, + "iDNBZe": { + "message": "Notifications", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 119 + ], + [ + "src/components/NotificationBell.tsx", + 131 + ], + [ + "src/components/NotificationBell.tsx", + 147 + ] + ], + "translation": "Notifications" + }, "9h7RDh": { "message": "Offer", "placeholders": {}, @@ -7653,11 +7773,11 @@ ], [ "src/views/board/index.tsx", - 218 + 222 ], [ "src/views/board/index.tsx", - 274 + 278 ], [ "src/views/boards/components/ImportBoardsForm.tsx", @@ -7673,11 +7793,11 @@ ], [ "src/views/card/components/ChecklistItemRow.tsx", - 67 + 68 ], [ "src/views/card/components/ChecklistItemRow.tsx", - 95 + 96 ], [ "src/views/card/components/ChecklistNameInput.tsx", @@ -7733,11 +7853,11 @@ ], [ "src/views/card/index.tsx", - 232 + 274 ], [ "src/views/card/index.tsx", - 245 + 287 ], [ "src/views/members/components/DeleteMemberConfirmation.tsx", @@ -7845,7 +7965,7 @@ ], [ "src/views/board/index.tsx", - 315 + 319 ], [ "src/views/card/components/Dropdown.tsx", @@ -8082,6 +8202,18 @@ ], "translation": "Quick Win" }, + "09Tv5j": { + "message": "Reconnecting…", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/ConnectionStatus.tsx", + 30 + ] + ], + "translation": "Reconnecting…" + }, "6EWT6T": { "message": "Recruitment", "placeholders": {}, @@ -8780,7 +8912,7 @@ ], [ "src/components/SideNavigation.tsx", - 135 + 136 ] ], "translation": "Settings" @@ -9284,11 +9416,11 @@ "origin": [ [ "src/views/board/index.tsx", - 530 + 534 ], [ "src/views/board/index.tsx", - 566 + 570 ] ], "translation": "Template" @@ -9348,7 +9480,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 111 + 112 ], [ "src/views/home/components/Features.tsx", @@ -9928,7 +10060,7 @@ "origin": [ [ "src/views/card/index.tsx", - 244 + 286 ] ], "translation": "Unable to add label" @@ -9952,7 +10084,7 @@ "origin": [ [ "src/views/board/index.tsx", - 313 + 317 ], [ "src/views/card/components/Dropdown.tsx", @@ -10080,7 +10212,7 @@ "origin": [ [ "src/views/card/components/ChecklistItemRow.tsx", - 94 + 95 ] ], "translation": "Unable to delete checklist item" @@ -10224,11 +10356,11 @@ "origin": [ [ "src/views/board/index.tsx", - 273 + 277 ], [ "src/views/card/index.tsx", - 231 + 273 ] ], "translation": "Unable to update card" @@ -10252,7 +10384,7 @@ "origin": [ [ "src/views/card/components/ChecklistItemRow.tsx", - 66 + 67 ] ], "translation": "Unable to update checklist item" @@ -10300,7 +10432,7 @@ "origin": [ [ "src/views/board/index.tsx", - 217 + 221 ], [ "src/views/card/components/ListSelector.tsx", @@ -10700,7 +10832,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 240 + 242 ], [ "src/views/settings/components/UpgradeToProConfirmation.tsx", @@ -10965,6 +11097,22 @@ ], "translation": "View workspace" }, + "V8YRD4": { + "message": "Viewing now: {0}", + "placeholders": { + "0": [ + "viewers.map((v) => v.userName).join(\", \")" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 61 + ] + ], + "translation": "Viewing now: {0}" + }, "2q/Q7x": { "message": "Visibility", "placeholders": {}, @@ -11200,7 +11348,7 @@ ], [ "src/views/board/index.tsx", - 530 + 534 ], [ "src/views/boards/index.tsx", @@ -11569,11 +11717,11 @@ ], [ "src/views/board/index.tsx", - 604 + 608 ], [ "src/views/board/index.tsx", - 662 + 667 ], [ "src/views/boards/components/BoardsList.tsx", @@ -11650,6 +11798,102 @@ ], "translation": "You need to be an admin to manage workspace permissions." }, + "Cb5YSG": { + "message": "You were added to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 33 + ] + ], + "translation": "You were added to" + }, + "EYpSRU": { + "message": "You were added to a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 34 + ] + ], + "translation": "You were added to a workspace" + }, + "j77sVH": { + "message": "You were assigned to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 45 + ] + ], + "translation": "You were assigned to" + }, + "4sxGcV": { + "message": "You were assigned to a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 46 + ] + ], + "translation": "You were assigned to a card" + }, + "9HDx2Z": { + "message": "You were mentioned in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 29 + ] + ], + "translation": "You were mentioned in" + }, + "e6wIqm": { + "message": "You were mentioned in a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 30 + ] + ], + "translation": "You were mentioned in a card" + }, + "11dHnN": { + "message": "You were removed from", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 37 + ] + ], + "translation": "You were removed from" + }, + "YdIn4I": { + "message": "You were removed from a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 38 + ] + ], + "translation": "You were removed from a workspace" + }, "2SePRT": { "message": "You've been invited to join a workspace on kan.bn.", "placeholders": {}, @@ -11806,6 +12050,30 @@ ], "translation": "Your projects have been imported." }, + "0AfkMq": { + "message": "Your role changed in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 41 + ] + ], + "translation": "Your role changed in" + }, + "GKeVeM": { + "message": "Your role was changed", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 42 + ] + ], + "translation": "Your role was changed" + }, "CJWDTP": { "message": "Your Trello account has been disconnected.", "placeholders": {}, diff --git a/apps/web/src/locales/en/messages.ts b/apps/web/src/locales/en/messages.ts index 634fe955e..2541c7960 100644 --- a/apps/web/src/locales/en/messages.ts +++ b/apps/web/src/locales/en/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Social Media\"],\"+3TYXa\":[\"For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.\"],\"+5kO8P\":[\"Saturday\"],\"+8Nek/\":[\"Monthly\"],\"+EkBs0\":[\"We couldn't update your preferences. Please try again.\"],\"+MdEsf\":[\"New password is required\"],\"+OhFss\":[\"Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team.\"],\"+VoTOr\":[\"billed monthly\"],\"+djOzj\":[\"Invite member\"],\"+h2faV\":[\"Settings | Webhooks\"],\"+jbXzb\":[\"Your projects have been imported.\"],\"+nvZ6j\":[\"Labels & Filters\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Template\"],\"/asTmx\":[\"Bug Report\"],\"/bBVaD\":[\"GitHub disconnected\"],\"/bZzdR\":[\"Mentions\"],\"/f3t6v\":[\"Configure which actions are allowed for each workspace role. These permissions apply to all members with that role.\"],\"/gaSVU\":[\"Roadmap\"],\"/glL9Q\":[\"No \",[\"0\"]],\"/jd3aj\":[\"Advanced admin roles\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place.\"],\"/tOdd2\":[\"Your profile image has been updated.\"],\"0+0/3e\":[\"Create new label\"],\"0+ewPp\":[\"Enhancement\"],\"02i3WU\":[\"Imports\"],\"06EQqT\":[\"Duplicating…\"],\"0KjpAr\":[\"Can view members\"],\"0RE1AJ\":[\"Boards you archive will appear here.\"],\"0StR7t\":[\"Enter your new password\"],\"0jV46i\":[\"Unable to delete checklist item\"],\"0qyZ4b\":[\"Loading permissions...\"],\"0rPv1T\":[\"Profile image updated\"],\"0utuU6\":[\"Copy checklists\"],\"0xD8Of\":[\"The page you're looking for doesn't exist or has been moved.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Import board (1)\"],\"other\":[\"Import boards (\",[\"boardCount\"],\")\"]}]],\"14Xi3Z\":[\"Adding a new member will cost an additional \",[\"price\"],\" (\",[\"billingType\"],\") per seat.\"],\"1H5u1m\":[\"Questions?\"],\"1WuwiM\":[\"Go to settings\"],\"1bJKhj\":[\"Copy link to card\"],\"1hzdxO\":[\"Workspace permissions\"],\"1iShX0\":[\"Due today\"],\"1njn7W\":[\"Light\"],\"1rVAfU\":[\"Load more activities\"],\"1rWxEw\":[\"Awaiting Customer\"],\"1sRmLC\":[\"Discuss and collaborate on cards.\"],\"1wCGT0\":[\"Unlimited boards\"],\"25fAUC\":[\"Your unsubscribe link is missing a token. Please open the latest email and try again.\"],\"25mvI+\":[\"Invite links require a Team or Pro subscription. Please upgrade your workspace.\"],\"29sSki\":[\"completed checklist item <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"List\"],\"2Bu8xj\":[\"No boards found\"],\"2M84k3\":[\"Custom permissions\"],\"2MPcep\":[\"Import complete\"],\"2POOFK\":[\"Free\"],\"2Py5S/\":[\"I acknowledge that all of the workspace data will be permanently deleted and want to proceed.\"],\"2Q871c\":[\"Unable to add label\"],\"2QGEbi\":[\"Unable to delete comment\"],\"2SePRT\":[\"You've been invited to join a workspace on kan.bn.\"],\"2X4ecw\":[\"Webhook deleted successfully\"],\"2h4PVB\":[\"Your workspace name has been updated.\"],\"2liqDZ\":[\"I acknowledge that all of my account data will be permanently deleted and want to proceed.\"],\"2q/Q7x\":[\"Visibility\"],\"2roTVj\":[\"Feedback sent\"],\"3LDCpD\":[\"This action can't be undone.\"],\"3WXdoZ\":[\"You can always change these later in settings.\"],\"3ZjRJY\":[\"renamed checklist <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Anyone with this link can join your workspace\"],\"3d54Wj\":[\"Webhook updated successfully\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Connect GitHub\"],\"3pIq39\":[\"Admin roles\"],\"479pdJ\":[\"Confirm your new password\"],\"4DOCMI\":[\"YouTube URL\"],\"4Revpc\":[\"Small\"],\"4RoY9J\":[\"Blog Post\"],\"4XF0BB\":[\"Profile picture\"],\"4gAX8s\":[\"Toggle menu\"],\"4kJRen\":[\"Writing\"],\"4obmDr\":[\"404 - Page Not Found | kan.bn\"],\"51UCsN\":[\"Move to another list\"],\"53QYh8\":[\"Failed to create board\"],\"55xJ/O\":[\"Error Changing Password\"],\"58AiWX\":[\"Please confirm your new password\"],\"5ACX4z\":[\"Newsletter\"],\"5IXWmO\":[\"Check your inbox\"],\"5P4rhH\":[\"Unable to update members\"],\"5RkSzq\":[\"Copy board link\"],\"5eZwRW\":[\"Connect your Trello account to import boards.\"],\"5h8ooz\":[\"API keys\"],\"5iplxh\":[\"New password must be different from current password\"],\"5k0NLb\":[\"Review\"],\"5lWFkC\":[\"Sign in\"],\"5ntVtp\":[\"Failed to test webhook\"],\"5y6qY8\":[\"added an attachment\"],\"69b7aE\":[\"Open command menu\"],\"6EWT6T\":[\"Recruitment\"],\"6FDocz\":[\"Sign up with \"],\"6FsGbN\":[\"Get started by creating a new \",[\"0\"]],\"6OTo9n\":[\"Template name is required\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"New \",[\"0\"]],\"6YtxFj\":[\"Name\"],\"6mbe4b\":[\"Individuals\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"The member's permissions have been updated.\"],\"6uBU1F\":[\"Full API access\"],\"6zeSBB\":[\"Can create cards\"],\"74F7N/\":[\"Are you sure you want to delete your account?\"],\"7EhE4k\":[\"Update label\"],\"7L01XJ\":[\"Actions\"],\"7PzzBU\":[\"User\"],\"7RpHg/\":[\"Custom username\"],\"7Ufoyg\":[\"Unlimited lists\"],\"7aONWr\":[\"URL cannot exceed 2048 characters\"],\"7b2yuC\":[\"Please enter a valid password\"],\"7d1a0d\":[\"Public\"],\"7eMo+U\":[\"Go Home\"],\"7hktsm\":[\"Getting started\"],\"7i8j3G\":[\"Company\"],\"8+BY11\":[\"Board URL copied to clipboard\"],\"86FLn5\":[\"Unlimited file uploads\"],\"86XI28\":[\"Confirm your email preferences:\"],\"8AbRER\":[\"Set due date\"],\"8AwlaR\":[\"Unlimited members and a custom workspace username for teams ready to scale.\"],\"8F1i42\":[\"Page not found\"],\"8Is1ih\":[\"Launch offer\"],\"8RdLDU\":[\"Personal Project\"],\"8TveY+\":[\"Boards\"],\"8Z4pNX\":[\"Can create lists\"],\"8iP0S8\":[\"Everything in the free plan, plus:\"],\"8iP9oQ\":[\"Webhook test failed\"],\"8yFGGF\":[\"Unable to remove member\"],\"99VIgC\":[\"Remove member\"],\"9PaIxv\":[\"Core features\"],\"9Xigls\":[\"Under Review\"],\"9YPBHv\":[\"Failed to delete webhook\"],\"9cDpsw\":[\"Permissions\"],\"9eF5oV\":[\"Welcome back\"],\"9h7RDh\":[\"Offer\"],\"9lFfqv\":[\"/month\"],\"9s9O5h\":[\"Error deleting workspace\"],\"9u5BOr\":[\"Members | \",[\"0\"]],\"9wdpwp\":[\"Billing portal\"],\"9x4DAL\":[[\"0\"],\" not found\"],\"9y1RcT\":[\"We're just getting started. \"],\"A23Y7X\":[\"Join workspace | kan.bn\"],\"A42Dqn\":[\"Custom branding\"],\"A5hiCy\":[\"Create template\"],\"A8jqN7\":[\"Unable to send feedback\"],\"ABCjd9\":[\"Publishing\"],\"ADEin1\":[\"Settings | Billing\"],\"ALhEZV\":[\"Can invite members\"],\"ANyn0x\":[\"Everything you need, free forever. Unlimited boards, unlimited lists, unlimited cards. Upgrade any time.\"],\"ARvBT/\":[\"billed annually\"],\"ASjvm9\":[\"Workspace URL\"],\"AUYALh\":[\"Coming soon\"],\"AX4ktp\":[\"Content Creation\"],\"AZI/wb\":[\"Labels & filters\"],\"AdxYds\":[\"Your GitHub account has been disconnected.\"],\"AeXO77\":[\"Account\"],\"Alp2ti\":[\"Contact Sales\"],\"Ax/hYa\":[\"Workspace description cannot exceed 280 characters\"],\"B3xxao\":[\"Add a card\"],\"BBUDfW\":[\"Urgent\"],\"BEVzjL\":[\"Import failed\"],\"BJbLe4\":[\"We are using the <0>AGPL-3.0 license.\"],\"BMkVQ3\":[\"deleted checklist <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"moved the card from <0>\",[\"0\"],\" to<1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Duplicate card\"],\"BZkYSt\":[\"removed \",[\"0\"],\" labels: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Are you sure you want to delete the workspace \",[\"0\"],\"?\"],\"Bhgd0l\":[\"Contact us\"],\"BzEFor\":[\"or\"],\"C56tim\":[\"Unable to update due date\"],\"C6gv54\":[\"The board has been unarchived.\"],\"CAL6E9\":[\"Teams\"],\"CB/NpV\":[\"High Priority\"],\"CHZ1jC\":[\"deleted checklist item <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Please enter a valid name\"],\"CJWDTP\":[\"Your Trello account has been disconnected.\"],\"CJukzS\":[[\"0\"],\" labels\"],\"CTqTgr\":[\"Shortcuts\"],\"CYWHT+\":[\"Error uploading profile image\"],\"Cd4sTD\":[\"Best for individuals and solo creators getting started\"],\"Ci/KUX\":[\"Settings | Workspace\"],\"CkVV1t\":[\"Error updating workspace description\"],\"Cmudpi\":[\"Can delete workspace\"],\"CozWO1\":[\"Workspace name\"],\"CujNX4\":[\"added an attachment <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"System\"],\"D0esZz\":[\"Activity log\"],\"D3C4Yx\":[\"Current password is required\"],\"D7/JvJ\":[\"Adjust the square crop to fit your avatar.\"],\"D9ROdV\":[\"Invite links\"],\"DAV3uK\":[\"Permissions updated\"],\"DBC3t5\":[\"Sunday\"],\"DFjdv0\":[\"Delete template\"],\"DMeWZD\":[\"Are you sure you want to delete this \",[\"0\"],\"?\"],\"DPfwMq\":[\"Done\"],\"DSGzV+\":[\"Workspace username\"],\"DahTzR\":[\"Unable to delete checklist\"],\"DbZgsJ\":[\"Make template\"],\"DtXlZq\":[\"Unable to update checklist\"],\"Dz63YI\":[\"An error occurred while disconnecting your GitHub account.\"],\"E0t3jO\":[\"added checklist item <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Per-seat pricing\"],\"E8zYtd\":[\"unassigned <0>\",[\"0\"],\" from the card\"],\"ECJKc4\":[\"API key created\"],\"EEHmPC\":[\"Launch offer: Get unlimited members with Pro\"],\"EH8IL3\":[\"Checklists\"],\"EII/X8\":[\"All Teams features +\"],\"ERpq2P\":[\"No results found for \\\"\",[\"debouncedQuery\"],\"\\\".\"],\"ESClHO\":[\"Priority email support\"],\"Eg99Sc\":[\"No authentication methods are currently available\"],\"Eit43O\":[\"set the due date\"],\"EkH9pt\":[\"Update\"],\"EvArWh\":[\"Collaborate seamlessly with your team.\"],\"F/FPk/\":[\"Settings | Permissions\"],\"F/vB2g\":[\"Ideas to improve this page...\"],\"F0YmUY\":[\"Copy card link\"],\"F3bW6y\":[\"Platform\"],\"F4KRmY\":[\"$8/month\"],\"F4PLG4\":[\"Workspace description updated\"],\"F6m23G\":[\"File uploads\"],\"F6pfE9\":[\"Active\"],\"F8DaWi\":[\"View only\"],\"FEr96N\":[\"Theme\"],\"FdtSNC\":[\"Create workspace\"],\"FmN5me\":[\"Resolution\"],\"FmfJjN\":[\"View and manage your API keys.\"],\"Fpci8b\":[\"Are you sure you want to delete this checklist?\"],\"G1Gw0v\":[\"New template\"],\"GAD3Dx\":[\"Custom domain\"],\"GDvlUT\":[\"Role\"],\"GRAGsB\":[\"Your workspace\"],\"GYv20o\":[\"Unable to update permissions\"],\"GdWB+V\":[\"Webhook created successfully\"],\"GnRmu4\":[\"Checklist name\"],\"GnSSGm\":[\"Your workspace description has been updated.\"],\"GoDLB9\":[\"Your account has been deleted.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Extended Roadmap\"],\"Gxxi5J\":[\"Add checklist\"],\"H5G+qG\":[\"What's the difference between Kan and Trello?\"],\"HBI6nY\":[\"Need help?\"],\"HO+uOC\":[\"Triaging\"],\"HQVm6e\":[\"This URL has already been taken\"],\"HVIzNO\":[\"Can view lists\"],\"HYV6Lq\":[\"Failed to accept invitation. Please try again later, or contact customer support.\"],\"HcT8J4\":[\"Your GitHub account has been connected.\"],\"HeFWjW\":[\"Next Steps\"],\"Hf1cEZ\":[\"Webhook URL is required\"],\"Hg1qE9\":[\"Your workspace slug has been updated.\"],\"I+AROe\":[\"Can edit cards\"],\"I0gAKM\":[\"Unable to update list\"],\"IDvohQ\":[\"marked a checklist item as incomplete\"],\"IFgUX6\":[\"Can remove members\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Upgrade to Pro\"],\"Iqh0Uv\":[\"Planned\"],\"IqjpYe\":[\"Email visibility\"],\"IrZaAn\":[\"Password Changed\"],\"It4/FS\":[\"Unarchive board\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Continue with \"],\"J4+OTA\":[\"Move to list\"],\"J5nbej\":[\"Critical\"],\"J5pbP6\":[\"Can edit member roles and permissions\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JCdzgZ\":[\"Feature Request\"],\"JUce1S\":[\"Assignees\"],\"JbXXUW\":[\"Keep in mind that this action is irreversible.\"],\"JcCDm9\":[\"Template created\"],\"Jgaz7E\":[\"Permissions reset\"],\"JjEJSy\":[\"Set up your workspace\"],\"JnWJXY\":[\"magic link\"],\"JxhWxU\":[\"in\"],\"JyXBgS\":[\"docs\"],\"K3iLeO\":[\"See what our users are saying about Kan\"],\"K7k9u3\":[\"Unable to move card\"],\"KAsRdK\":[\"Go to members\"],\"KEim/+\":[\"removed an attachment\"],\"KFJgmZ\":[\"Display name must be at least 3 characters long\"],\"KLJ4eD\":[\"Invite link copied\"],\"KM6m8p\":[\"Team\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Advanced admin controls\"],\"KiVc+q\":[\"Full-time\"],\"KuSt9W\":[\"How do I self-host?\"],\"L5WQLg\":[\"Token is required\"],\"L5ZPjz\":[\"updated a checklist item\"],\"LTGE7Y\":[\"Workspace created successfully. You can upgrade later in settings.\"],\"LeM5RY\":[\"Unable to clear overrides\"],\"LoUCpj\":[\"Error updating workspace name\"],\"LqWW5F\":[\"Your display name has been updated.\"],\"LrcnbT\":[\"Host Kan on your own infrastructure. Ideal for organisations that need complete control over their data.\"],\"Lt+ZP3\":[\"completed a checklist item\"],\"M9p3Vw\":[\"Unlimited activity log\"],\"MCIXdZ\":[\"Connect your GitHub account to import projects.\"],\"MFKlMB\":[\"Invite\"],\"MHrjPM\":[\"Title\"],\"MI5OBT\":[\"URL can only contain letters, numbers, and hyphens\"],\"MK16u2\":[\"No dates\"],\"MKAScN\":[\"Can view boards\"],\"MN6YzG\":[\"Workspace slug updated\"],\"MWrbWq\":[\"Settings | Account\"],\"MdN5zD\":[\"You need to be an admin to manage workspace permissions.\"],\"MdwUGG\":[\"Save time with reusable board templates.\"],\"MeO/vH\":[\"This will result in the permanent deletion of all data associated with this workspace.\"],\"MlyjJu\":[\"Display name cannot exceed 280 characters\"],\"MxQXhL\":[\"Unable to create workspace\"],\"N/bcWA\":[\"Login | kan.bn\"],\"N3380t\":[\"Can create boards\"],\"N7aud6\":[\"Intelligent search\"],\"NH54UR\":[\"renamed checklist item to <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"The board has been archived.\"],\"NgaR6B\":[\"Enter your password\"],\"NnH3pK\":[\"Test\"],\"NoNwIX\":[\"Inactive\"],\"NypLoL\":[\"renamed a checklist\"],\"O0li0W\":[\"Enter your current password and choose a new secure password.\"],\"O1wAlQ\":[\"Guest\"],\"O3oNi5\":[\"Email\"],\"O83K21\":[\"added a checklist item\"],\"O9jVbx\":[\"Low Priority\"],\"OAYToL\":[\"This will remove all custom member permissions in this workspace. Members will inherit permissions only from their roles.\"],\"OIA0ad\":[\"Workspace name updated\"],\"OTxjpR\":[\"your-workspace\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Disconnect GitHub\"],\"Oi+J+N\":[\"Pick a plan to get started. All paid plans include a 14-day free trial.\"],\"OkTY4+\":[\"Secret cannot exceed 512 characters\"],\"Oo4E6p\":[\"Unable to duplicate card\"],\"OpNhRn\":[\"No credit card required\"],\"OtjenF\":[\"Please enter a valid email address\"],\"OvoEq7\":[\"Member\"],\"OwneeH\":[\"Custom workspace username\"],\"Ozt2vv\":[\"Your password has been changed.\"],\"P6dJdq\":[\"Overrides cleared\"],\"P8Cunr\":[\"Default username\"],\"PCIlOO\":[\"Add member\"],\"PELbXB\":[\"Your GitHub account is connected.\"],\"PRjvDT\":[\"Are you sure you want to delete this comment?\"],\"PRofO0\":[\"Edit YouTube Video\"],\"PTzsxH\":[\"Board visibility updated\"],\"PVT7q7\":[\"GitHub connected\"],\"PZCqeW\":[\"Please try again later.\"],\"Pat4r8\":[\"Basic Roadmap\"],\"PpZkda\":[\"Features\"],\"PyYD/v\":[\"assigned <0>\",[\"0\"],\" to the card\"],\"Q60WUZ\":[\"Unable to start checkout\"],\"Q9pQaX\":[\"No roles found for this workspace yet.\"],\"QD8opX\":[\"Board\"],\"QHhZeE\":[\"Template created successfully\"],\"QNtP5M\":[\"Use template\"],\"Qh7QmR\":[\"Removed from favorites\"],\"QnzD50\":[\"On-premise\"],\"QtACvI\":[\"Create label\"],\"Qtzfdk\":[\"Pro Plan ∞\"],\"R+w/Va\":[\"Billing\"],\"R1c3Mq\":[\"Board name is required\"],\"R275Pz\":[\"You have unlimited seats with your Pro Plan. There is no additional charge for new members!\"],\"R3FsF4\":[\"Download failed\"],\"R41XLH\":[\"Failed to update webhook\"],\"R6pB8R\":[\"Star on Github\"],\"RHZu7R\":[\"Loved by teams worldwide\"],\"RJA+sg\":[\"New Ticket\"],\"RRn9jf\":[\"Click on the link we've sent to \",[\"magicLinkRecipient\"],\" to sign in.\"],\"RSGOS1\":[\"Can delete lists\"],\"RfgJqw\":[\"updated the due date\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Send feedback\"],\"RtlIYB\":[\"You are about to change your password.\"],\"RzxgOE\":[\"Roles & permissions\"],\"SFnH1j\":[\"Why make an open source Trello?\"],\"SMaFdc\":[\"Unsubscribe\"],\"SNfg0e\":[\"Can view workspace\"],\"SPLN9O\":[\"Own your data\"],\"SRvxId\":[\"HMAC secret for signature verification\"],\"STSYcd\":[\"Can delete comments\"],\"SUXBxp\":[\"Engineering\"],\"SUvm1Y\":[\"Good for individuals starting out who just need the essentials.\"],\"SWEskc\":[\"URL must be at least 3 characters long\"],\"Sb2gYF\":[\"New list\"],\"ScJ9fj\":[\"Privacy policy\"],\"Se/UIp\":[\"To Do\"],\"SiPp29\":[\"Create webhook\"],\"SkCNhl\":[\"Search boards and cards...\"],\"SlfejT\":[\"Error\"],\"T/pF0Z\":[\"Remove from favorites\"],\"T21jY/\":[\"added a label to the card\"],\"T7DJ2k\":[\"Unable to add comment\"],\"T7LJic\":[\"moved the card to another list\"],\"T7Mywq\":[\"Unable to update board\"],\"TCOMOO\":[\"Edit permissions\"],\"TCt/8K\":[\"Limited API access\"],\"TFv5tM\":[\"Unable to update role\"],\"TH3Irz\":[\"Permission\"],\"TKFUnX\":[\"Account deleted\"],\"TX0bT7\":[\"No webhooks configured. Add a webhook to receive notifications.\"],\"TXO5TM\":[\"No keyboard shortcuts registered.\"],\"TYli1B\":[\"Can edit comments\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Code Review\"],\"TdfEV7\":[\"Archived\"],\"TjREUS\":[\"New API key\"],\"TmvrjU\":[\"Board URL must be at least 3 characters long\"],\"TvY/XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TztLaN\":[\"Unable to create list\"],\"U2+rn0\":[\"Webhook name is required\"],\"U3pytU\":[\"Admin\"],\"U5dMR6\":[\"View workspace\"],\"UCLeG0\":[\"Terms of service\"],\"UGCIzB\":[\"Add / edit label\"],\"UQbwrz\":[\"All systems operational\"],\"URAE3q\":[\"Paused\"],\"USVCGU\":[\"Error deactivating invite link\"],\"UbRKMZ\":[\"Pending\"],\"UbYdrA\":[\"Payment frequency\"],\"UeDFpo\":[\"How is the project funded?\"],\"UirJfL\":[\"Custom SLA\"],\"UlhdTP\":[\"Workspace deleted\"],\"Un80BR\":[\"OSS Friends\"],\"UoSI+i\":[\"Best for small and growing teams that need collaboration\"],\"UveK6V\":[\"Go to app\"],\"Uworke\":[\"Part-time\"],\"UxKoFf\":[\"Navigation\"],\"V1KOLq\":[\"Email notifications for mentions\"],\"V3MPSQ\":[\"updated the title\"],\"V8YWP3\":[\"Enter a custom title\"],\"VHS0aJ\":[\"Clear all custom permissions?\"],\"VKoDQD\":[\"Create new \",[\"0\"]],\"VUZDlr\":[\"Testimonials\"],\"VXk54Y\":[\"self-assigned the card\"],\"VbyRUy\":[\"Comments\"],\"VhMDMg\":[\"Change Password\"],\"Vt50G1\":[\"Basic Kanban\"],\"W/Elkg\":[\"Medium Priority\"],\"W/nQk1\":[\"Free Plan\"],\"W1ewR0\":[\"Unable to copy link\"],\"W5r8Qh\":[\"deleted a checklist item\"],\"W8oT+L\":[\"Failed to fetch video information\"],\"WHHLh9\":[\"Unable to delete attachment\"],\"WI4eGo\":[\"How do I get a custom URL?\"],\"WQPDcG\":[\"Unable to update checklist item\"],\"WRkpB1\":[\"Sign up disabled\"],\"WRsbHO\":[\"Your Trello account is connected.\"],\"WYDptz\":[\"Subscription Required\"],\"WYwN1G\":[\"New import\"],\"WbTDwg\":[\"In Progress\"],\"Weq9zb\":[\"General\"],\"WmPhYW\":[\"An error occurred while disconnecting your Trello account.\"],\"WnEwDO\":[\"Already have an account? <0><1>Sign in\"],\"Ws+3X+\":[\"Unlimited seats and advanced features for growing teams.\"],\"Wy6pcF\":[\"Unable to update board visibility\"],\"X0N0PA\":[\" (edited)\"],\"XDRXbZ\":[\"Workspace description must be at least 3 characters long\"],\"XEoGkQ\":[\"Go to homepage\"],\"XILg0L\":[\"Invalid email address\"],\"XJOV1Y\":[\"Activity\"],\"XNxYxq\":[\"Board templates\"],\"XTKtey\":[\"Create list\"],\"XXbgHS\":[\"Hired\"],\"XYLcNv\":[\"Support\"],\"XicmhT\":[\"Due date\"],\"Xid3K6\":[\"Board URL can only contain letters, numbers, and hyphens\"],\"Xjj/kS\":[\"Kanban reimagined\"],\"XpcjLO\":[\"Unable to update board URL\"],\"Y8yzGg\":[\"Start free. Upgrade as your team grows. No hidden fees, no contracts.\"],\"YBBifR\":[\"Disconnect Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Unable to reorder checklist item\"],\"YRk79X\":[\"Advanced security, compliance, and dedicated support for large organizations.\"],\"YVT40D\":[\"removed label <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Error upgrading subscription\"],\"YcyP2z\":[\"Unable to create template\"],\"Yf9FAx\":[\"They won't be able to access this workspace.\"],\"YhvWXb\":[\"Board analytics\"],\"YirHq7\":[\"Feedback\"],\"YkfDoz\":[\"Annual\"],\"YoyKbT\":[\"This API key will only be shown once. Please save it in a secure location.\"],\"Ypy5pZ\":[\"Are you sure you want to delete the webhook \\\"\",[\"webhookName\"],\"\\\"? This action cannot be undone.\"],\"YtUfwW\":[\"Failed to login with \",[\"0\"],\". Please try again.\"],\"Yx0Ud8\":[\"Requested\"],\"Z3FXyt\":[\"Loading...\"],\"Z3krJD\":[\"Allow workspace members to see each other's email addresses\"],\"Z6r9z1\":[\"Unable to delete card\"],\"ZAs2NN\":[\"All Pro features +\"],\"ZDGm40\":[\"Delete account\"],\"ZDIydz\":[\"Get started\"],\"ZDPJBc\":[\"Custom usernames require upgrading to a Pro plan\"],\"ZDo4HN\":[\"Brainstorming\"],\"ZH7TVS\":[\"Card title\"],\"ZL1A+p\":[\"Failed to upload attachment. Please try again.\"],\"ZT4Khw\":[\"Are you sure you want to delete this card?\"],\"ZU5IYI\":[\"Unlimited boards, unlimited lists, unlimited cards. No credit card required.\"],\"ZXSPJt\":[\"An unexpected error occurred. Please try again later.\"],\"ZqDqbi\":[\"Organize and find cards quickly with powerful filtering tools.\"],\"Zz1qkk\":[\"Unlimited cards\"],\"a3LDKx\":[\"Security\"],\"aHCEmh\":[\"Pricing\"],\"aHRWVI\":[\"removed the due date\"],\"aJ4pMe\":[\"FAQs\"],\"aKJHG+\":[\"Archive board\"],\"aW3TOw\":[\"Email notifications\"],\"aWDhU5\":[\"Kanban is better with a team. Perfect for small and growing teams looking to collaborate.\"],\"aWlSc/\":[\"Create new list\"],\"abUZlY\":[\"Add details...\"],\"aelko+\":[\"You can get a custom workspace URL, like <0>kan.bn/kan, by going into your <1>workspace settings and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!\"],\"agPptk\":[\"Medium\"],\"aiHZVP\":[\"View docs\"],\"b/LfJo\":[\"email\"],\"b3Thhd\":[\"Upload failed\"],\"b5FKyH\":[\"added label <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Create \",[\"0\"]],\"bD8I7O\":[\"Complete\"],\"bDI6VI\":[[\"0\"],\" has been removed from your favorites.\"],\"bFREhu\":[\"End of list\"],\"bJZm1W\":[\"Applicants\"],\"bJtM0P\":[\"This workspace URL is reserved\"],\"bKzM8L\":[\"Dedicated account manager\"],\"bZSICm\":[\"Unable to add checklist item\"],\"bcIybO\":[\"Workspace name is required\"],\"bdztP2\":[\"Research\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"The member's role has been updated.\"],\"bff61F\":[\"Team Plan\"],\"bfgr/e\":[\"Question\"],\"bmXKoX\":[\"added \",[\"0\"],\" labels: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Error deleting account\"],\"c/IAuR\":[\"Important\"],\"c3b0B0\":[\"Get Started\"],\"c4nMcR\":[\"Your avatar\"],\"c9AJhn\":[\"Join workspace\"],\"cAgBMh\":[\"Complete control and ownership:\"],\"cFQEU/\":[\"Open keyboard shortcuts\"],\"cOh+MI\":[\"Screening\"],\"cWXW+7\":[\"Add webhook\"],\"cWcxrL\":[\"New checklist\"],\"cWtfn1\":[\"Upgrade to Pro ($29/month)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Workspace description\"],\"cji2nM\":[\"Error creating invite link\"],\"cnGeoo\":[\"Delete\"],\"cp1rsD\":[\"Deactivate invite link\"],\"csFbe+\":[\"Go to templates\"],\"curoK5\":[\"New workspace\"],\"d+F6q9\":[\"Created\"],\"d33Usy\":[\"Create checklist\"],\"dEgA5A\":[\"Cancel\"],\"dUh9QW\":[\"Planning\"],\"ddrz1m\":[\"Overdue\"],\"delOXn\":[\"Unable to update labels\"],\"dgr4Kq\":[\"Edit label\"],\"dmKdk0\":[\"Once you delete your workspace, there is no going back. This action cannot be undone.\"],\"dsLT3m\":[\"Create card\"],\"dtQIWT\":[\"Collaboration\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"This workspace URL has already been taken\"],\"e1v+J3\":[\"Secret (optional)\"],\"e4hPSt\":[\"Reset to role defaults\"],\"eEQyz+\":[\"Track all card changes with detailed activity history.\"],\"ePK91l\":[\"Edit\"],\"eZCGbT\":[\"Yes, we offer an forever free plan for individual use. No restrictions, no paywalls, no limits.\"],\"edWbV6\":[\"Link copied\"],\"ekCRTP\":[\"Rejected\"],\"en3oy5\":[\"Feature\"],\"euc6Ns\":[\"Duplicate\"],\"eus61c\":[\"Send test\"],\"evg7+A\":[\"Your boards have been imported.\"],\"evj0lK\":[\"Do you offer a free plan?\"],\"f8fH8W\":[\"Design\"],\"f8lDFq\":[\"created the card\"],\"fDQ7hA\":[\"Copy labels\"],\"fEY2vP\":[\"Card not found\"],\"fQCrjt\":[\"The visibility of your board has been set to \",[\"0\"],\".\"],\"fR9laE\":[\"Enter your current password\"],\"fSf2ee\":[\"View our roadmap.\"],\"fW5sSv\":[\"Edit webhook\"],\"fYVH36\":[\"Unable to update comment\"],\"fcWrnU\":[\"Sign out\"],\"fuwKpE\":[\"Please try again.\"],\"fvLNDy\":[\"No lists have been created yet\"],\"fzGyWs\":[\"Change the application font size.\"],\"fziA2d\":[\"Unlimited comments\"],\"g2xBxu\":[\"Importing your Trello boards into Kan is easy. You can follow our step-by-step guide <0>here.\"],\"g9NChz\":[\"Account manager\"],\"gGx5tM\":[\"Editing\"],\"gKmoow\":[\"This URL is reserved\"],\"gL/7jw\":[\"Add description... (type '/' to open commands or '@' to mention)\"],\"gQ/02p\":[\"Error disconnecting GitHub\"],\"gUX7b+\":[\"The open source <0/> alternative to Trello\"],\"gZxH/p\":[\"changed the due date to <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"Workspace name cannot exceed 64 characters\"],\"gkxGkF\":[\"14 day free trial · Switch plans or cancel anytime\"],\"gkzAEM\":[\"Continue with \",[\"0\"]],\"goklcJ\":[\"Interviewing\"],\"gpfJ3v\":[\"Free, forever\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"Board URL cannot exceed 60 characters\"],\"h16FyT\":[\"Lists\"],\"h2FKMV\":[\"You don't have permission\"],\"h2ztFt\":[\"All Free features +\"],\"h4VV67\":[\"added a checklist\"],\"h7MgpO\":[\"Keyboard Shortcuts\"],\"h8DugX\":[\"Labels\"],\"hAMddS\":[\"unassigned themselves from the card\"],\"hB02vO\":[\"Manage members\"],\"hXMFoN\":[\"No lists\"],\"hYzsXr\":[\"Settings | Integrations\"],\"hty0d5\":[\"Monday\"],\"i0ZMQl\":[\"Board archived\"],\"i30J2U\":[\"No projects found\"],\"i5rE2/\":[\"URL cannot exceed 64 characters\"],\"iH8pgl\":[\"Back\"],\"iHcdea\":[\"Due next week\"],\"iLbjv+\":[\"Can edit workspace\"],\"iQmbPb\":[\"License\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iVIGZb\":[\"Attachment uploaded\"],\"isRobC\":[\"New\"],\"itgYbC\":[\"Test webhook sent successfully!\"],\"iwr7AP\":[\"Ideas\"],\"iy1wb+\":[\"Settings | API\"],\"j0o6ml\":[\"Your workspace description\"],\"j1+HPc\":[\"An error occurred while connecting your GitHub account.\"],\"j2+d/o\":[\"API Reference\"],\"j9IZZ0\":[\"Custom workspace URL\"],\"jDRt4n\":[\"Do you want to unsubscribe?\"],\"jEw0Mr\":[\"Please enter a valid URL\"],\"jIuWsV\":[\"Webhook name cannot exceed 255 characters\"],\"jL82rC\":[\"Clear custom permissions\"],\"jNuzV/\":[\"Can delete cards\"],\"jQ6I8X\":[\"Role updated\"],\"jZBHkN\":[\"Workspace name must be at least 3 characters long\"],\"jfC/xh\":[\"Contact\"],\"jl3aEJ\":[\"marked checklist item <0>\",[\"0\"],\" as incomplete\"],\"jlB2RY\":[\"The current password you entered is incorrect.\"],\"jwI32v\":[\"Board not found\"],\"k7rCa/\":[\"Large\"],\"kECVpo\":[\"Are you sure you want to delete this label?\"],\"kQwvU8\":[\"removed a label from the card\"],\"kSxwQL\":[\"You can invite team members by clicking the \\\"Invite\\\" button in the top right corner of the <0>members page and entering their email address. They will receive an email with a link to join the workspace.\"],\"kYu0eF\":[\"Delete workspace\"],\"kfOGMr\":[\"Quick Win\"],\"klpSmb\":[\"Edit workspace URL\"],\"kp6L3T\":[\"This workspace username has already been taken\"],\"kryGs+\":[\"Card\"],\"kuoc68\":[\"$10/month\"],\"kxEs5t\":[\"Trello imports\"],\"l2PIAy\":[\"Self host with Github\"],\"l31EoQ\":[\"Find answers to common questions about Kan. Can't find what you're looking for? Feel free to <0>contact us.\"],\"l3s5ri\":[\"Import\"],\"l4asa1\":[\"This board is private or does not exist\"],\"lGjicL\":[\", or see our\"],\"lKAvEd\":[\"Error disconnecting Trello\"],\"lXvXNI\":[\"Failed to copy invite link\"],\"lYT7pQ\":[\"Delete list\"],\"lkz85l\":[\"The main difference between Kan and Trello is that Kan is open source, allowing anyone to view, modify, and contribute to our code. Our cloud offering also offers no restrictions on features for individual use, whereas Trello locks basic features such as the number of boards you can create behind a paywall.\"],\"lo8xBK\":[\"Are you sure want to remove \",[\"entityLabel\"],\"?\"],\"lpIMne\":[\"Passwords do not match\"],\"lsgnzd\":[\"Error upgrading to Pro\"],\"lyqwgn\":[\"Add label\"],\"m2nk0i\":[\"Simple pricing\"],\"mErq7F\":[\"Sign Up\"],\"mHhffx\":[\"Unable to create checklist\"],\"mTGd3+\":[\"deleted a checklist\"],\"mTwGOf\":[\"This invitation link is invalid or has expired.\"],\"mU+M00\":[[\"0\"],\" has been added to your favorites.\"],\"mVZH9V\":[\"When Trello launched in 2011, it blew everyone away with its carefully designed simplicity, but over the years it lost its magic and grew into something closer to \\\"Jira Lite\\\". This project is our attempt to recapture the original magic of Trello's simplicity, in open source.\"],\"mZGPxt\":[\"Invite link copied to clipboard\"],\"mchgzf\":[\"You have been signed up successfully.\"],\"mgXgHu\":[\"Go to boards\"],\"mrhyIB\":[\"Perfect for small and growing teams looking to collaborate.\"],\"mwBdZ2\":[\"This will result in the permanent deletion of all data associated with your account.\"],\"mx8+1u\":[\"Unlimited members\"],\"n+xLOH\":[\"Customer Support\"],\"n1GRql\":[\"New label\"],\"n1ekoW\":[\"Sign In\"],\"n6EWYz\":[\"Used to sign webhook payloads for verification. Leave blank to keep existing secret.\"],\"n9V+ps\":[\"Enter your name\"],\"nKBUeF\":[\"The card has been duplicated.\"],\"nOhz3x\":[\"Logout\"],\"nYNMZZ\":[\"Position in list (0 = first, leave empty for end)\"],\"nabda1\":[\"Delete card\"],\"nbfdhU\":[\"Integrations\"],\"ngBZOd\":[\"Add comment... (type '/' to open commands or '@' to mention)\"],\"nhMhRr\":[\"Thank you for your feedback!\"],\"njJFtc\":[\"Delete comment\"],\"nk7caK\":[\"Connect Trello\"],\"nol/Fb\":[\"How do I invite team members?\"],\"notwF1\":[\"Template name cannot exceed 100 characters\"],\"nq7q3Z\":[\"API key name cannot exceed 30 characters\"],\"nqdIhs\":[\"Custom board templates\"],\"nryrgW\":[\"All member permission overrides have been reset to their role defaults.\"],\"o+JCfN\":[\"Trusted by fast-moving teams<0/>around the world\"],\"o4e/70\":[\"Select at least one event\"],\"o4sQAg\":[\"Failed to create webhook\"],\"o7J4JM\":[\"Filter\"],\"o8adVG\":[\"10mb file uploads\"],\"o9WLwO\":[\"Unable to update card\"],\"oVBq1w\":[\"per user/month\"],\"oW13KZ\":[\"Get started for free today\"],\"odFCYX\":[\"Invalid invitation\"],\"okpxfB\":[\"Create new key\"],\"oyRjD/\":[\"Pro Plan\"],\"p/hk9N\":[\"You have been logged in successfully.\"],\"pBsoKL\":[\"Add to favorites\"],\"pFGfsR\":[\"Check out some of our favorite open source projects.\"],\"pFKC6A\":[\"API key name\"],\"pL78ec\":[\"Added to favorites\"],\"pVctI7\":[\"On-premise deployment option\"],\"pXVFJy\":[\"Can delete boards\"],\"pa9o5D\":[\"Crop your avatar\"],\"pfa8F0\":[\"Display name\"],\"pmUArF\":[\"Workspace\"],\"pnrmSP\":[\"New card\"],\"ppaRWv\":[\"Self Host\"],\"pvnfJD\":[\"Dark\"],\"q+lt9D\":[\"Error deleting label\"],\"q3il6U\":[\"Font size\"],\"qPP4lD\":[\"Inviting members requires a Team Plan. You'll be redirected to upgrade your workspace.\"],\"qQXocp\":[\"Can manage workspace settings\"],\"qaS+1/\":[\"Best for teams that want to scale without limits\"],\"qfUS/w\":[\"Open Source Friends\"],\"qkjvgj\":[\"Your workspace has been deleted.\"],\"qlAIQ1\":[\"Remote\"],\"qtE5nt\":[\"Add an item...\"],\"qzdST2\":[\"Board visibility\"],\"r6BgwX\":[\"Password is required to login.\"],\"rD6UIt\":[\"Get started on Cloud\"],\"rF8SEQ\":[\"Edit comment\"],\"rQRXo8\":[\"Enter new secret to update\"],\"rQXTmd\":[\"Card URL copied to clipboard\"],\"rRM7r0\":[\"Import your Trello boards and hit the ground running.\"],\"rYUZIe\":[\"Select source\"],\"raHesj\":[\"You have been unsubscribed!\"],\"rarRW/\":[\"Error inviting member\"],\"ri1hHe\":[\"Due next month\"],\"rmN315\":[\"Fun\"],\"rs7L54\":[\"added a member to the card\"],\"rtbVvN\":[\"Can edit lists\"],\"s+MGs7\":[\"Resources\"],\"s6iE/c\":[\"Sign up is currently disabled. Please try again later.\"],\"sBhOFG\":[\"Simple, visual task management that just works. Drag and drop cards, collaborate with your team, and get more done.\"],\"sDLCvT\":[\"Connect your favorite tools to streamline your workflow.\"],\"sDuhfK\":[\"Launch offer: unlimited seats for just $29/month with Pro\"],\"sU2uWc\":[\"Card duplicated\"],\"sUZo7y\":[\"Sign up | kan.bn\"],\"sVBn4K\":[\"Error updating display name\"],\"sY2lzr\":[\"No download URL available for this attachment.\"],\"sbNNyi\":[\"New webhook\"],\"snMaH4\":[\"Delete webhook\"],\"t+R8+P\":[\"Execution\"],\"t/YqKh\":[\"Remove\"],\"t0dTPm\":[\"Configure webhooks to receive notifications when cards are created, updated, moved, or deleted.\"],\"t2nDzl\":[\"View and manage your billing and subscription.\"],\"t6FvJH\":[\"Can add comments\"],\"tGwwnq\":[\"updated the description\"],\"tHcbLF\":[\"Can edit boards\"],\"tIdipJ\":[\"Edit board URL\"],\"tMYIu7\":[\"Activity logs\"],\"tOZp9v\":[\"Configurable user roles and permissions\"],\"tTbref\":[\"Password is required to sign up.\"],\"tYN21H\":[\"User is already a member of this workspace\"],\"tbNcu4\":[\"Board unarchived\"],\"tca56/\":[\"Your file has been uploaded successfully.\"],\"tfDRzk\":[\"Save\"],\"tlhgDC\":[\"No archived boards\"],\"tmlJN1\":[\"Please enter a valid YouTube URL\"],\"tmpW+w\":[\"Delete board\"],\"tst44n\":[\"Events\"],\"tyHiOa\":[\"Please try again later, or contact customer support.\"],\"u2+JIh\":[\"Custom URLs require upgrading to a Pro plan\"],\"u8JHrO\":[\"Clear filters\"],\"uAQUqI\":[\"Status\"],\"uEGGDs\":[\"My webhook\"],\"uOqaMC\":[\"You've been invited to join a workspace.\"],\"uP4V6I\":[\"Free for everyone\"],\"uXGLuq\":[\"Create API key\"],\"uZg2+w\":[\"Supercharge your workspace for just $29/month. Here's what you'll get:\"],\"uck1tz\":[\"removed a member from the card\"],\"usVytm\":[\"Once you delete your account, there is no going back. This action cannot be undone.\"],\"uvH2xS\":[\"Copy members\"],\"v+Wp++\":[\"Open source\"],\"v1kQyJ\":[\"Webhooks\"],\"v3YoMA\":[\"Senior\"],\"vAR/I8\":[\"Run on your own infrastructure\"],\"vAj6xG\":[\"You can self-host by following the instructions in our <0>repo.\"],\"vSJd18\":[\"Video\"],\"vUr5JT\":[\"Don't have an account? <0><1>Sign up\"],\"vXIe7J\":[\"Language\"],\"vXemf6\":[\"Bug\"],\"va/3u1\":[\"Control who can view and edit your boards.\"],\"vbskQn\":[\"API key name is required\"],\"veIDCY\":[\"Start 14 day free trial\"],\"vfRdCZ\":[\"Unable to reset permissions\"],\"vgdzLf\":[\"Create another\"],\"vifyyw\":[\"Legal\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"This member's permissions have been reset to their role defaults.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"monthly billing\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Long-term\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"wIb7Ng\":[\"Software Development\"],\"wK4OTM\":[\"Title (optional)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Please select a file to upload.\"],\"wY+6Ye\":[\"This board URL has already been taken\"],\"wakO3W\":[\"added checklist <0>\",[\"0\"],\"\"],\"wewm3j\":[\"Board name cannot exceed 100 characters\"],\"wgNoIs\":[\"Select all\"],\"wlQNTg\":[\"Members\"],\"wqkcin\":[\"Can view comments\"],\"wqxglO\":[\"Learning\"],\"wruKPE\":[\"Support the development of the project\"],\"wsy94z\":[\"Best for large organizations with advanced needs\"],\"wtxjAY\":[\"Workspace members\"],\"x0kMO/\":[\"Error updating workspace URL\"],\"x8GeCD\":[\"Display name updated\"],\"xEbBrW\":[\"What license are you using?\"],\"xGVfLh\":[\"Continue\"],\"xLTZVf\":[\"Week start day\"],\"xMn+V9\":[\"Importing from Trello\"],\"xRPn3U\":[\"Enter your email address\"],\"xvcYhz\":[\"Clear any custom member permissions so that all members only inherit permissions from their role defaults.\"],\"y3aU20\":[\"Save changes\"],\"yD3ZSw\":[\"Change your language preferences.\"],\"yV7o5I\":[\"How do I import my Trello boards?\"],\"yb/fjw\":[\"Approval\"],\"yhLUU8\":[\"Error connecting GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Import project (1)\"],\"other\":[\"Import projects (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Close\"],\"zC8Whw\":[\"Get started by creating a new list\"],\"zERArS\":[\"updated the title to <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Create invite link\"],\"zMlxCA\":[\"1 user\"],\"zMquA7\":[\"Choose a plan\"],\"zQPhSa\":[\"Convert to link\"],\"zQX5Dj\":[\"List name\"],\"zYRVNp\":[\"Select a list\"],\"zkWmBh\":[\"Yearly\"],\"zl1b97\":[\"Unable to create card\"],\"zoEbXq\":[\"Can view cards\"],\"zt/6cS\":[\"Best for small teams who want to collaborate and move faster together.\"],\"zto8aj\":[\"Trello disconnected\"],\"zwBp5t\":[\"Private\"],\"zwTiVn\":[\"removed an attachment <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Learn more\"],\"zxKs+y\":[\"Due tomorrow\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Social Media\"],\"+3TYXa\":[\"For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.\"],\"+5kO8P\":[\"Saturday\"],\"+8Nek/\":[\"Monthly\"],\"+EkBs0\":[\"We couldn't update your preferences. Please try again.\"],\"+MdEsf\":[\"New password is required\"],\"+OhFss\":[\"Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team.\"],\"+VoTOr\":[\"billed monthly\"],\"+djOzj\":[\"Invite member\"],\"+h2faV\":[\"Settings | Webhooks\"],\"+jbXzb\":[\"Your projects have been imported.\"],\"+nvZ6j\":[\"Labels & Filters\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Template\"],\"/asTmx\":[\"Bug Report\"],\"/bBVaD\":[\"GitHub disconnected\"],\"/bZzdR\":[\"Mentions\"],\"/f3t6v\":[\"Configure which actions are allowed for each workspace role. These permissions apply to all members with that role.\"],\"/gaSVU\":[\"Roadmap\"],\"/glL9Q\":[\"No \",[\"0\"]],\"/jd3aj\":[\"Advanced admin roles\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place.\"],\"/tOdd2\":[\"Your profile image has been updated.\"],\"0+0/3e\":[\"Create new label\"],\"0+ewPp\":[\"Enhancement\"],\"02i3WU\":[\"Imports\"],\"06EQqT\":[\"Duplicating…\"],\"09Tv5j\":[\"Reconnecting…\"],\"0AfkMq\":[\"Your role changed in\"],\"0KjpAr\":[\"Can view members\"],\"0RE1AJ\":[\"Boards you archive will appear here.\"],\"0StR7t\":[\"Enter your new password\"],\"0jV46i\":[\"Unable to delete checklist item\"],\"0qyZ4b\":[\"Loading permissions...\"],\"0rPv1T\":[\"Profile image updated\"],\"0utuU6\":[\"Copy checklists\"],\"0xD8Of\":[\"The page you're looking for doesn't exist or has been moved.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Import board (1)\"],\"other\":[\"Import boards (\",[\"boardCount\"],\")\"]}]],\"11dHnN\":[\"You were removed from\"],\"14Xi3Z\":[\"Adding a new member will cost an additional \",[\"price\"],\" (\",[\"billingType\"],\") per seat.\"],\"1H5u1m\":[\"Questions?\"],\"1WuwiM\":[\"Go to settings\"],\"1bJKhj\":[\"Copy link to card\"],\"1hzdxO\":[\"Workspace permissions\"],\"1iShX0\":[\"Due today\"],\"1njn7W\":[\"Light\"],\"1rVAfU\":[\"Load more activities\"],\"1rWxEw\":[\"Awaiting Customer\"],\"1sRmLC\":[\"Discuss and collaborate on cards.\"],\"1wCGT0\":[\"Unlimited boards\"],\"25fAUC\":[\"Your unsubscribe link is missing a token. Please open the latest email and try again.\"],\"25mvI+\":[\"Invite links require a Team or Pro subscription. Please upgrade your workspace.\"],\"29sSki\":[\"completed checklist item <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"List\"],\"2Bu8xj\":[\"No boards found\"],\"2M84k3\":[\"Custom permissions\"],\"2MPcep\":[\"Import complete\"],\"2POOFK\":[\"Free\"],\"2Py5S/\":[\"I acknowledge that all of the workspace data will be permanently deleted and want to proceed.\"],\"2Q871c\":[\"Unable to add label\"],\"2QGEbi\":[\"Unable to delete comment\"],\"2SePRT\":[\"You've been invited to join a workspace on kan.bn.\"],\"2X4ecw\":[\"Webhook deleted successfully\"],\"2h4PVB\":[\"Your workspace name has been updated.\"],\"2liqDZ\":[\"I acknowledge that all of my account data will be permanently deleted and want to proceed.\"],\"2q/Q7x\":[\"Visibility\"],\"2roTVj\":[\"Feedback sent\"],\"3LDCpD\":[\"This action can't be undone.\"],\"3WXdoZ\":[\"You can always change these later in settings.\"],\"3ZjRJY\":[\"renamed checklist <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Anyone with this link can join your workspace\"],\"3d54Wj\":[\"Webhook updated successfully\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Connect GitHub\"],\"3pIq39\":[\"Admin roles\"],\"4630Pc\":[\"Card updated\"],\"479pdJ\":[\"Confirm your new password\"],\"4DOCMI\":[\"YouTube URL\"],\"4Revpc\":[\"Small\"],\"4RoY9J\":[\"Blog Post\"],\"4XF0BB\":[\"Profile picture\"],\"4gAX8s\":[\"Toggle menu\"],\"4kJRen\":[\"Writing\"],\"4obmDr\":[\"404 - Page Not Found | kan.bn\"],\"4sxGcV\":[\"You were assigned to a card\"],\"51UCsN\":[\"Move to another list\"],\"53QYh8\":[\"Failed to create board\"],\"55xJ/O\":[\"Error Changing Password\"],\"58AiWX\":[\"Please confirm your new password\"],\"5ACX4z\":[\"Newsletter\"],\"5IXWmO\":[\"Check your inbox\"],\"5P4rhH\":[\"Unable to update members\"],\"5RkSzq\":[\"Copy board link\"],\"5eZwRW\":[\"Connect your Trello account to import boards.\"],\"5h8ooz\":[\"API keys\"],\"5iplxh\":[\"New password must be different from current password\"],\"5k0NLb\":[\"Review\"],\"5lWFkC\":[\"Sign in\"],\"5ntVtp\":[\"Failed to test webhook\"],\"5y6qY8\":[\"added an attachment\"],\"69b7aE\":[\"Open command menu\"],\"6EWT6T\":[\"Recruitment\"],\"6FDocz\":[\"Sign up with \"],\"6FsGbN\":[\"Get started by creating a new \",[\"0\"]],\"6OTo9n\":[\"Template name is required\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"New \",[\"0\"]],\"6YtxFj\":[\"Name\"],\"6mbe4b\":[\"Individuals\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"The member's permissions have been updated.\"],\"6uBU1F\":[\"Full API access\"],\"6zeSBB\":[\"Can create cards\"],\"74F7N/\":[\"Are you sure you want to delete your account?\"],\"7EhE4k\":[\"Update label\"],\"7L01XJ\":[\"Actions\"],\"7PzzBU\":[\"User\"],\"7Qqqyu\":[\"New comment on\"],\"7RpHg/\":[\"Custom username\"],\"7Ufoyg\":[\"Unlimited lists\"],\"7aONWr\":[\"URL cannot exceed 2048 characters\"],\"7b2yuC\":[\"Please enter a valid password\"],\"7d1a0d\":[\"Public\"],\"7eMo+U\":[\"Go Home\"],\"7hktsm\":[\"Getting started\"],\"7i8j3G\":[\"Company\"],\"8+BY11\":[\"Board URL copied to clipboard\"],\"86FLn5\":[\"Unlimited file uploads\"],\"86XI28\":[\"Confirm your email preferences:\"],\"8AbRER\":[\"Set due date\"],\"8AwlaR\":[\"Unlimited members and a custom workspace username for teams ready to scale.\"],\"8F1i42\":[\"Page not found\"],\"8Is1ih\":[\"Launch offer\"],\"8RdLDU\":[\"Personal Project\"],\"8TveY+\":[\"Boards\"],\"8Z4pNX\":[\"Can create lists\"],\"8iP0S8\":[\"Everything in the free plan, plus:\"],\"8iP9oQ\":[\"Webhook test failed\"],\"8yFGGF\":[\"Unable to remove member\"],\"99VIgC\":[\"Remove member\"],\"9HDx2Z\":[\"You were mentioned in\"],\"9PaIxv\":[\"Core features\"],\"9Xigls\":[\"Under Review\"],\"9YPBHv\":[\"Failed to delete webhook\"],\"9cDpsw\":[\"Permissions\"],\"9eF5oV\":[\"Welcome back\"],\"9h7RDh\":[\"Offer\"],\"9lFfqv\":[\"/month\"],\"9s9O5h\":[\"Error deleting workspace\"],\"9u5BOr\":[\"Members | \",[\"0\"]],\"9wdpwp\":[\"Billing portal\"],\"9x4DAL\":[[\"0\"],\" not found\"],\"9y1RcT\":[\"We're just getting started. \"],\"A23Y7X\":[\"Join workspace | kan.bn\"],\"A42Dqn\":[\"Custom branding\"],\"A5hiCy\":[\"Create template\"],\"A8jqN7\":[\"Unable to send feedback\"],\"ABCjd9\":[\"Publishing\"],\"ADEin1\":[\"Settings | Billing\"],\"ALhEZV\":[\"Can invite members\"],\"ANyn0x\":[\"Everything you need, free forever. Unlimited boards, unlimited lists, unlimited cards. Upgrade any time.\"],\"ARvBT/\":[\"billed annually\"],\"ASjvm9\":[\"Workspace URL\"],\"AUYALh\":[\"Coming soon\"],\"AX4ktp\":[\"Content Creation\"],\"AZI/wb\":[\"Labels & filters\"],\"AdxYds\":[\"Your GitHub account has been disconnected.\"],\"AeXO77\":[\"Account\"],\"Alp2ti\":[\"Contact Sales\"],\"Ax/hYa\":[\"Workspace description cannot exceed 280 characters\"],\"B3xxao\":[\"Add a card\"],\"BBUDfW\":[\"Urgent\"],\"BEVzjL\":[\"Import failed\"],\"BJbLe4\":[\"We are using the <0>AGPL-3.0 license.\"],\"BMkVQ3\":[\"deleted checklist <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"moved the card from <0>\",[\"0\"],\" to<1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Duplicate card\"],\"BZkYSt\":[\"removed \",[\"0\"],\" labels: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Are you sure you want to delete the workspace \",[\"0\"],\"?\"],\"Bhgd0l\":[\"Contact us\"],\"BzEFor\":[\"or\"],\"C56tim\":[\"Unable to update due date\"],\"C6gv54\":[\"The board has been unarchived.\"],\"CAL6E9\":[\"Teams\"],\"CB/NpV\":[\"High Priority\"],\"CHZ1jC\":[\"deleted checklist item <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Please enter a valid name\"],\"CJWDTP\":[\"Your Trello account has been disconnected.\"],\"CJukzS\":[[\"0\"],\" labels\"],\"CTqTgr\":[\"Shortcuts\"],\"CYWHT+\":[\"Error uploading profile image\"],\"Cb5YSG\":[\"You were added to\"],\"Cd4sTD\":[\"Best for individuals and solo creators getting started\"],\"Ci/KUX\":[\"Settings | Workspace\"],\"CkVV1t\":[\"Error updating workspace description\"],\"Cmudpi\":[\"Can delete workspace\"],\"CozWO1\":[\"Workspace name\"],\"CujNX4\":[\"added an attachment <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"System\"],\"D0esZz\":[\"Activity log\"],\"D3C4Yx\":[\"Current password is required\"],\"D7/JvJ\":[\"Adjust the square crop to fit your avatar.\"],\"D9ROdV\":[\"Invite links\"],\"DAV3uK\":[\"Permissions updated\"],\"DBC3t5\":[\"Sunday\"],\"DFjdv0\":[\"Delete template\"],\"DMeWZD\":[\"Are you sure you want to delete this \",[\"0\"],\"?\"],\"DPfwMq\":[\"Done\"],\"DSGzV+\":[\"Workspace username\"],\"DahTzR\":[\"Unable to delete checklist\"],\"DbZgsJ\":[\"Make template\"],\"DtXlZq\":[\"Unable to update checklist\"],\"Dz63YI\":[\"An error occurred while disconnecting your GitHub account.\"],\"E0t3jO\":[\"added checklist item <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Per-seat pricing\"],\"E8zYtd\":[\"unassigned <0>\",[\"0\"],\" from the card\"],\"ECJKc4\":[\"API key created\"],\"EEHmPC\":[\"Launch offer: Get unlimited members with Pro\"],\"EH8IL3\":[\"Checklists\"],\"EII/X8\":[\"All Teams features +\"],\"ERpq2P\":[\"No results found for \\\"\",[\"debouncedQuery\"],\"\\\".\"],\"ESClHO\":[\"Priority email support\"],\"EYpSRU\":[\"You were added to a workspace\"],\"Eg99Sc\":[\"No authentication methods are currently available\"],\"Eit43O\":[\"set the due date\"],\"EkH9pt\":[\"Update\"],\"EvArWh\":[\"Collaborate seamlessly with your team.\"],\"F/FPk/\":[\"Settings | Permissions\"],\"F/vB2g\":[\"Ideas to improve this page...\"],\"F0YmUY\":[\"Copy card link\"],\"F3bW6y\":[\"Platform\"],\"F4KRmY\":[\"$8/month\"],\"F4PLG4\":[\"Workspace description updated\"],\"F6m23G\":[\"File uploads\"],\"F6pfE9\":[\"Active\"],\"F8DaWi\":[\"View only\"],\"FEr96N\":[\"Theme\"],\"FdtSNC\":[\"Create workspace\"],\"FmN5me\":[\"Resolution\"],\"FmfJjN\":[\"View and manage your API keys.\"],\"Fpci8b\":[\"Are you sure you want to delete this checklist?\"],\"G1Gw0v\":[\"New template\"],\"GAD3Dx\":[\"Custom domain\"],\"GDvlUT\":[\"Role\"],\"GKeVeM\":[\"Your role was changed\"],\"GRAGsB\":[\"Your workspace\"],\"GYv20o\":[\"Unable to update permissions\"],\"GdWB+V\":[\"Webhook created successfully\"],\"GnRmu4\":[\"Checklist name\"],\"GnSSGm\":[\"Your workspace description has been updated.\"],\"GoDLB9\":[\"Your account has been deleted.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Extended Roadmap\"],\"Gxxi5J\":[\"Add checklist\"],\"H5G+qG\":[\"What's the difference between Kan and Trello?\"],\"HBI6nY\":[\"Need help?\"],\"HO+uOC\":[\"Triaging\"],\"HQVm6e\":[\"This URL has already been taken\"],\"HVIzNO\":[\"Can view lists\"],\"HYV6Lq\":[\"Failed to accept invitation. Please try again later, or contact customer support.\"],\"HbXReU\":[\"No notifications yet\"],\"HcT8J4\":[\"Your GitHub account has been connected.\"],\"HeFWjW\":[\"Next Steps\"],\"Hf1cEZ\":[\"Webhook URL is required\"],\"Hg1qE9\":[\"Your workspace slug has been updated.\"],\"I+AROe\":[\"Can edit cards\"],\"I0gAKM\":[\"Unable to update list\"],\"IDvohQ\":[\"marked a checklist item as incomplete\"],\"IFgUX6\":[\"Can remove members\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Upgrade to Pro\"],\"Iqh0Uv\":[\"Planned\"],\"IqjpYe\":[\"Email visibility\"],\"IrZaAn\":[\"Password Changed\"],\"It4/FS\":[\"Unarchive board\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Continue with \"],\"J4+OTA\":[\"Move to list\"],\"J5nbej\":[\"Critical\"],\"J5pbP6\":[\"Can edit member roles and permissions\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JBaoDB\":[[\"overflow\"],\" more viewers\"],\"JCdzgZ\":[\"Feature Request\"],\"JUce1S\":[\"Assignees\"],\"JbXXUW\":[\"Keep in mind that this action is irreversible.\"],\"JcCDm9\":[\"Template created\"],\"Jgaz7E\":[\"Permissions reset\"],\"JjEJSy\":[\"Set up your workspace\"],\"JnWJXY\":[\"magic link\"],\"JxhWxU\":[\"in\"],\"JyXBgS\":[\"docs\"],\"K3iLeO\":[\"See what our users are saying about Kan\"],\"K4xHKu\":[\"New comment on a card\"],\"K7k9u3\":[\"Unable to move card\"],\"KAsRdK\":[\"Go to members\"],\"KEim/+\":[\"removed an attachment\"],\"KFJgmZ\":[\"Display name must be at least 3 characters long\"],\"KLJ4eD\":[\"Invite link copied\"],\"KM6m8p\":[\"Team\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Advanced admin controls\"],\"KiVc+q\":[\"Full-time\"],\"KuSt9W\":[\"How do I self-host?\"],\"L5WQLg\":[\"Token is required\"],\"L5ZPjz\":[\"updated a checklist item\"],\"LTGE7Y\":[\"Workspace created successfully. You can upgrade later in settings.\"],\"LeM5RY\":[\"Unable to clear overrides\"],\"LoUCpj\":[\"Error updating workspace name\"],\"LqWW5F\":[\"Your display name has been updated.\"],\"LrcnbT\":[\"Host Kan on your own infrastructure. Ideal for organisations that need complete control over their data.\"],\"Lt+ZP3\":[\"completed a checklist item\"],\"M9p3Vw\":[\"Unlimited activity log\"],\"MCIXdZ\":[\"Connect your GitHub account to import projects.\"],\"MFKlMB\":[\"Invite\"],\"MHrjPM\":[\"Title\"],\"MI5OBT\":[\"URL can only contain letters, numbers, and hyphens\"],\"MK16u2\":[\"No dates\"],\"MKAScN\":[\"Can view boards\"],\"MN6YzG\":[\"Workspace slug updated\"],\"MWrbWq\":[\"Settings | Account\"],\"MdN5zD\":[\"You need to be an admin to manage workspace permissions.\"],\"MdwUGG\":[\"Save time with reusable board templates.\"],\"MeO/vH\":[\"This will result in the permanent deletion of all data associated with this workspace.\"],\"MlyjJu\":[\"Display name cannot exceed 280 characters\"],\"MxQXhL\":[\"Unable to create workspace\"],\"N/bcWA\":[\"Login | kan.bn\"],\"N3380t\":[\"Can create boards\"],\"N7aud6\":[\"Intelligent search\"],\"NH54UR\":[\"renamed checklist item to <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"The board has been archived.\"],\"NgaR6B\":[\"Enter your password\"],\"NnH3pK\":[\"Test\"],\"NoNwIX\":[\"Inactive\"],\"NypLoL\":[\"renamed a checklist\"],\"O0li0W\":[\"Enter your current password and choose a new secure password.\"],\"O1wAlQ\":[\"Guest\"],\"O3oNi5\":[\"Email\"],\"O83K21\":[\"added a checklist item\"],\"O9jVbx\":[\"Low Priority\"],\"OAYToL\":[\"This will remove all custom member permissions in this workspace. Members will inherit permissions only from their roles.\"],\"OIA0ad\":[\"Workspace name updated\"],\"OTxjpR\":[\"your-workspace\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Disconnect GitHub\"],\"Oi+J+N\":[\"Pick a plan to get started. All paid plans include a 14-day free trial.\"],\"OkTY4+\":[\"Secret cannot exceed 512 characters\"],\"Oo4E6p\":[\"Unable to duplicate card\"],\"OpNhRn\":[\"No credit card required\"],\"OtjenF\":[\"Please enter a valid email address\"],\"OvoEq7\":[\"Member\"],\"OwneeH\":[\"Custom workspace username\"],\"Ozt2vv\":[\"Your password has been changed.\"],\"P6dJdq\":[\"Overrides cleared\"],\"P8Cunr\":[\"Default username\"],\"PCIlOO\":[\"Add member\"],\"PELbXB\":[\"Your GitHub account is connected.\"],\"PRjvDT\":[\"Are you sure you want to delete this comment?\"],\"PRofO0\":[\"Edit YouTube Video\"],\"PTzsxH\":[\"Board visibility updated\"],\"PVT7q7\":[\"GitHub connected\"],\"PZCqeW\":[\"Please try again later.\"],\"Pat4r8\":[\"Basic Roadmap\"],\"PpZkda\":[\"Features\"],\"PyYD/v\":[\"assigned <0>\",[\"0\"],\" to the card\"],\"Q60WUZ\":[\"Unable to start checkout\"],\"Q9pQaX\":[\"No roles found for this workspace yet.\"],\"QD8opX\":[\"Board\"],\"QHhZeE\":[\"Template created successfully\"],\"QNtP5M\":[\"Use template\"],\"Qh7QmR\":[\"Removed from favorites\"],\"QnzD50\":[\"On-premise\"],\"QtACvI\":[\"Create label\"],\"Qtzfdk\":[\"Pro Plan ∞\"],\"R+w/Va\":[\"Billing\"],\"R1c3Mq\":[\"Board name is required\"],\"R275Pz\":[\"You have unlimited seats with your Pro Plan. There is no additional charge for new members!\"],\"R3FsF4\":[\"Download failed\"],\"R41XLH\":[\"Failed to update webhook\"],\"R6pB8R\":[\"Star on Github\"],\"RHZu7R\":[\"Loved by teams worldwide\"],\"RJA+sg\":[\"New Ticket\"],\"RRn9jf\":[\"Click on the link we've sent to \",[\"magicLinkRecipient\"],\" to sign in.\"],\"RSGOS1\":[\"Can delete lists\"],\"RfgJqw\":[\"updated the due date\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Send feedback\"],\"RtlIYB\":[\"You are about to change your password.\"],\"RzxgOE\":[\"Roles & permissions\"],\"SFnH1j\":[\"Why make an open source Trello?\"],\"SMaFdc\":[\"Unsubscribe\"],\"SNfg0e\":[\"Can view workspace\"],\"SPLN9O\":[\"Own your data\"],\"SRvxId\":[\"HMAC secret for signature verification\"],\"STSYcd\":[\"Can delete comments\"],\"SUXBxp\":[\"Engineering\"],\"SUvm1Y\":[\"Good for individuals starting out who just need the essentials.\"],\"SWEskc\":[\"URL must be at least 3 characters long\"],\"Sb2gYF\":[\"New list\"],\"ScJ9fj\":[\"Privacy policy\"],\"Se/UIp\":[\"To Do\"],\"SiPp29\":[\"Create webhook\"],\"SkCNhl\":[\"Search boards and cards...\"],\"SlfejT\":[\"Error\"],\"T/pF0Z\":[\"Remove from favorites\"],\"T21jY/\":[\"added a label to the card\"],\"T7DJ2k\":[\"Unable to add comment\"],\"T7LJic\":[\"moved the card to another list\"],\"T7Mywq\":[\"Unable to update board\"],\"TCOMOO\":[\"Edit permissions\"],\"TCt/8K\":[\"Limited API access\"],\"TFv5tM\":[\"Unable to update role\"],\"TH3Irz\":[\"Permission\"],\"TKFUnX\":[\"Account deleted\"],\"TX0bT7\":[\"No webhooks configured. Add a webhook to receive notifications.\"],\"TXO5TM\":[\"No keyboard shortcuts registered.\"],\"TYli1B\":[\"Can edit comments\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Code Review\"],\"TdfEV7\":[\"Archived\"],\"TjREUS\":[\"New API key\"],\"TmvrjU\":[\"Board URL must be at least 3 characters long\"],\"TvY/XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TztLaN\":[\"Unable to create list\"],\"U2+rn0\":[\"Webhook name is required\"],\"U3pytU\":[\"Admin\"],\"U5dMR6\":[\"View workspace\"],\"UCLeG0\":[\"Terms of service\"],\"UGCIzB\":[\"Add / edit label\"],\"UQbwrz\":[\"All systems operational\"],\"URAE3q\":[\"Paused\"],\"USVCGU\":[\"Error deactivating invite link\"],\"UbRKMZ\":[\"Pending\"],\"UbYdrA\":[\"Payment frequency\"],\"UeDFpo\":[\"How is the project funded?\"],\"UirJfL\":[\"Custom SLA\"],\"UlhdTP\":[\"Workspace deleted\"],\"Un80BR\":[\"OSS Friends\"],\"UoSI+i\":[\"Best for small and growing teams that need collaboration\"],\"UveK6V\":[\"Go to app\"],\"Uworke\":[\"Part-time\"],\"UxKoFf\":[\"Navigation\"],\"V1KOLq\":[\"Email notifications for mentions\"],\"V3MPSQ\":[\"updated the title\"],\"V8YRD4\":[\"Viewing now: \",[\"0\"]],\"V8YWP3\":[\"Enter a custom title\"],\"VHS0aJ\":[\"Clear all custom permissions?\"],\"VKoDQD\":[\"Create new \",[\"0\"]],\"VUZDlr\":[\"Testimonials\"],\"VXk54Y\":[\"self-assigned the card\"],\"VbyRUy\":[\"Comments\"],\"VhMDMg\":[\"Change Password\"],\"Vt50G1\":[\"Basic Kanban\"],\"W/Elkg\":[\"Medium Priority\"],\"W/nQk1\":[\"Free Plan\"],\"W1ewR0\":[\"Unable to copy link\"],\"W5r8Qh\":[\"deleted a checklist item\"],\"W8oT+L\":[\"Failed to fetch video information\"],\"WHHLh9\":[\"Unable to delete attachment\"],\"WI4eGo\":[\"How do I get a custom URL?\"],\"WQPDcG\":[\"Unable to update checklist item\"],\"WRkpB1\":[\"Sign up disabled\"],\"WRsbHO\":[\"Your Trello account is connected.\"],\"WYDptz\":[\"Subscription Required\"],\"WYwN1G\":[\"New import\"],\"WbTDwg\":[\"In Progress\"],\"Weq9zb\":[\"General\"],\"WmPhYW\":[\"An error occurred while disconnecting your Trello account.\"],\"WnEwDO\":[\"Already have an account? <0><1>Sign in\"],\"Ws+3X+\":[\"Unlimited seats and advanced features for growing teams.\"],\"Ws1I0u\":[\"A card was updated\"],\"Wy6pcF\":[\"Unable to update board visibility\"],\"X0N0PA\":[\" (edited)\"],\"XDRXbZ\":[\"Workspace description must be at least 3 characters long\"],\"XEoGkQ\":[\"Go to homepage\"],\"XILg0L\":[\"Invalid email address\"],\"XJOV1Y\":[\"Activity\"],\"XNxYxq\":[\"Board templates\"],\"XTKtey\":[\"Create list\"],\"XXbgHS\":[\"Hired\"],\"XYLcNv\":[\"Support\"],\"XicmhT\":[\"Due date\"],\"Xid3K6\":[\"Board URL can only contain letters, numbers, and hyphens\"],\"Xjj/kS\":[\"Kanban reimagined\"],\"XpcjLO\":[\"Unable to update board URL\"],\"Y8yzGg\":[\"Start free. Upgrade as your team grows. No hidden fees, no contracts.\"],\"YBBifR\":[\"Disconnect Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Unable to reorder checklist item\"],\"YRk79X\":[\"Advanced security, compliance, and dedicated support for large organizations.\"],\"YVT40D\":[\"removed label <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Error upgrading subscription\"],\"YcyP2z\":[\"Unable to create template\"],\"YdIn4I\":[\"You were removed from a workspace\"],\"Yf9FAx\":[\"They won't be able to access this workspace.\"],\"YhvWXb\":[\"Board analytics\"],\"YirHq7\":[\"Feedback\"],\"YkfDoz\":[\"Annual\"],\"YoyKbT\":[\"This API key will only be shown once. Please save it in a secure location.\"],\"Ypy5pZ\":[\"Are you sure you want to delete the webhook \\\"\",[\"webhookName\"],\"\\\"? This action cannot be undone.\"],\"YtUfwW\":[\"Failed to login with \",[\"0\"],\". Please try again.\"],\"Yx0Ud8\":[\"Requested\"],\"Z3FXyt\":[\"Loading...\"],\"Z3krJD\":[\"Allow workspace members to see each other's email addresses\"],\"Z6r9z1\":[\"Unable to delete card\"],\"ZAs2NN\":[\"All Pro features +\"],\"ZDGm40\":[\"Delete account\"],\"ZDIydz\":[\"Get started\"],\"ZDPJBc\":[\"Custom usernames require upgrading to a Pro plan\"],\"ZDo4HN\":[\"Brainstorming\"],\"ZH7TVS\":[\"Card title\"],\"ZL1A+p\":[\"Failed to upload attachment. Please try again.\"],\"ZT4Khw\":[\"Are you sure you want to delete this card?\"],\"ZU5IYI\":[\"Unlimited boards, unlimited lists, unlimited cards. No credit card required.\"],\"ZXSPJt\":[\"An unexpected error occurred. Please try again later.\"],\"ZqDqbi\":[\"Organize and find cards quickly with powerful filtering tools.\"],\"Zz1qkk\":[\"Unlimited cards\"],\"a3LDKx\":[\"Security\"],\"aHCEmh\":[\"Pricing\"],\"aHRWVI\":[\"removed the due date\"],\"aJ4pMe\":[\"FAQs\"],\"aKJHG+\":[\"Archive board\"],\"aW3TOw\":[\"Email notifications\"],\"aWDhU5\":[\"Kanban is better with a team. Perfect for small and growing teams looking to collaborate.\"],\"aWlSc/\":[\"Create new list\"],\"abUZlY\":[\"Add details...\"],\"aelko+\":[\"You can get a custom workspace URL, like <0>kan.bn/kan, by going into your <1>workspace settings and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!\"],\"agPptk\":[\"Medium\"],\"aiHZVP\":[\"View docs\"],\"b/LfJo\":[\"email\"],\"b3Thhd\":[\"Upload failed\"],\"b5FKyH\":[\"added label <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Create \",[\"0\"]],\"bD8I7O\":[\"Complete\"],\"bDI6VI\":[[\"0\"],\" has been removed from your favorites.\"],\"bFREhu\":[\"End of list\"],\"bJZm1W\":[\"Applicants\"],\"bJtM0P\":[\"This workspace URL is reserved\"],\"bKzM8L\":[\"Dedicated account manager\"],\"bZSICm\":[\"Unable to add checklist item\"],\"bcIybO\":[\"Workspace name is required\"],\"bdztP2\":[\"Research\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"The member's role has been updated.\"],\"bff61F\":[\"Team Plan\"],\"bfgr/e\":[\"Question\"],\"bmXKoX\":[\"added \",[\"0\"],\" labels: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Error deleting account\"],\"c/IAuR\":[\"Important\"],\"c3b0B0\":[\"Get Started\"],\"c4nMcR\":[\"Your avatar\"],\"c9AJhn\":[\"Join workspace\"],\"cAgBMh\":[\"Complete control and ownership:\"],\"cFQEU/\":[\"Open keyboard shortcuts\"],\"cOh+MI\":[\"Screening\"],\"cWXW+7\":[\"Add webhook\"],\"cWcxrL\":[\"New checklist\"],\"cWtfn1\":[\"Upgrade to Pro ($29/month)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Workspace description\"],\"cji2nM\":[\"Error creating invite link\"],\"cnGeoo\":[\"Delete\"],\"cp1rsD\":[\"Deactivate invite link\"],\"csFbe+\":[\"Go to templates\"],\"curoK5\":[\"New workspace\"],\"d+F6q9\":[\"Created\"],\"d33Usy\":[\"Create checklist\"],\"dEgA5A\":[\"Cancel\"],\"dUh9QW\":[\"Planning\"],\"ddrz1m\":[\"Overdue\"],\"delOXn\":[\"Unable to update labels\"],\"dgr4Kq\":[\"Edit label\"],\"dmKdk0\":[\"Once you delete your workspace, there is no going back. This action cannot be undone.\"],\"dsLT3m\":[\"Create card\"],\"dtQIWT\":[\"Collaboration\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"This workspace URL has already been taken\"],\"e1v+J3\":[\"Secret (optional)\"],\"e4hPSt\":[\"Reset to role defaults\"],\"e6wIqm\":[\"You were mentioned in a card\"],\"eEQyz+\":[\"Track all card changes with detailed activity history.\"],\"ePK91l\":[\"Edit\"],\"eZCGbT\":[\"Yes, we offer an forever free plan for individual use. No restrictions, no paywalls, no limits.\"],\"edWbV6\":[\"Link copied\"],\"ekCRTP\":[\"Rejected\"],\"en3oy5\":[\"Feature\"],\"euc6Ns\":[\"Duplicate\"],\"eus61c\":[\"Send test\"],\"evg7+A\":[\"Your boards have been imported.\"],\"evj0lK\":[\"Do you offer a free plan?\"],\"f8fH8W\":[\"Design\"],\"f8lDFq\":[\"created the card\"],\"fDQ7hA\":[\"Copy labels\"],\"fEY2vP\":[\"Card not found\"],\"fQCrjt\":[\"The visibility of your board has been set to \",[\"0\"],\".\"],\"fR9laE\":[\"Enter your current password\"],\"fSf2ee\":[\"View our roadmap.\"],\"fW5sSv\":[\"Edit webhook\"],\"fYVH36\":[\"Unable to update comment\"],\"fcWrnU\":[\"Sign out\"],\"fuwKpE\":[\"Please try again.\"],\"fvLNDy\":[\"No lists have been created yet\"],\"fzGyWs\":[\"Change the application font size.\"],\"fziA2d\":[\"Unlimited comments\"],\"g2xBxu\":[\"Importing your Trello boards into Kan is easy. You can follow our step-by-step guide <0>here.\"],\"g9NChz\":[\"Account manager\"],\"gGx5tM\":[\"Editing\"],\"gKmoow\":[\"This URL is reserved\"],\"gL/7jw\":[\"Add description... (type '/' to open commands or '@' to mention)\"],\"gQ/02p\":[\"Error disconnecting GitHub\"],\"gUX7b+\":[\"The open source <0/> alternative to Trello\"],\"gZxH/p\":[\"changed the due date to <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"Workspace name cannot exceed 64 characters\"],\"gkxGkF\":[\"14 day free trial · Switch plans or cancel anytime\"],\"gkzAEM\":[\"Continue with \",[\"0\"]],\"goklcJ\":[\"Interviewing\"],\"gpfJ3v\":[\"Free, forever\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"Board URL cannot exceed 60 characters\"],\"h16FyT\":[\"Lists\"],\"h2FKMV\":[\"You don't have permission\"],\"h2ztFt\":[\"All Free features +\"],\"h4VV67\":[\"added a checklist\"],\"h7MgpO\":[\"Keyboard Shortcuts\"],\"h8DugX\":[\"Labels\"],\"hAMddS\":[\"unassigned themselves from the card\"],\"hB02vO\":[\"Manage members\"],\"hXMFoN\":[\"No lists\"],\"hYzsXr\":[\"Settings | Integrations\"],\"hty0d5\":[\"Monday\"],\"i0ZMQl\":[\"Board archived\"],\"i30J2U\":[\"No projects found\"],\"i5rE2/\":[\"URL cannot exceed 64 characters\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iHcdea\":[\"Due next week\"],\"iLbjv+\":[\"Can edit workspace\"],\"iQmbPb\":[\"License\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iVIGZb\":[\"Attachment uploaded\"],\"isRobC\":[\"New\"],\"itgYbC\":[\"Test webhook sent successfully!\"],\"iwr7AP\":[\"Ideas\"],\"iy1wb+\":[\"Settings | API\"],\"j0o6ml\":[\"Your workspace description\"],\"j1+HPc\":[\"An error occurred while connecting your GitHub account.\"],\"j2+d/o\":[\"API Reference\"],\"j77sVH\":[\"You were assigned to\"],\"j9IZZ0\":[\"Custom workspace URL\"],\"jDRt4n\":[\"Do you want to unsubscribe?\"],\"jEw0Mr\":[\"Please enter a valid URL\"],\"jIuWsV\":[\"Webhook name cannot exceed 255 characters\"],\"jL82rC\":[\"Clear custom permissions\"],\"jNuzV/\":[\"Can delete cards\"],\"jQ6I8X\":[\"Role updated\"],\"jZBHkN\":[\"Workspace name must be at least 3 characters long\"],\"jfC/xh\":[\"Contact\"],\"jl3aEJ\":[\"marked checklist item <0>\",[\"0\"],\" as incomplete\"],\"jlB2RY\":[\"The current password you entered is incorrect.\"],\"jwI32v\":[\"Board not found\"],\"k7rCa/\":[\"Large\"],\"kECVpo\":[\"Are you sure you want to delete this label?\"],\"kQwvU8\":[\"removed a label from the card\"],\"kSxwQL\":[\"You can invite team members by clicking the \\\"Invite\\\" button in the top right corner of the <0>members page and entering their email address. They will receive an email with a link to join the workspace.\"],\"kYu0eF\":[\"Delete workspace\"],\"kfOGMr\":[\"Quick Win\"],\"klpSmb\":[\"Edit workspace URL\"],\"kp6L3T\":[\"This workspace username has already been taken\"],\"kryGs+\":[\"Card\"],\"kuoc68\":[\"$10/month\"],\"kxEs5t\":[\"Trello imports\"],\"l2PIAy\":[\"Self host with Github\"],\"l31EoQ\":[\"Find answers to common questions about Kan. Can't find what you're looking for? Feel free to <0>contact us.\"],\"l3s5ri\":[\"Import\"],\"l4asa1\":[\"This board is private or does not exist\"],\"lGjicL\":[\", or see our\"],\"lKAvEd\":[\"Error disconnecting Trello\"],\"lXvXNI\":[\"Failed to copy invite link\"],\"lYT7pQ\":[\"Delete list\"],\"lkz85l\":[\"The main difference between Kan and Trello is that Kan is open source, allowing anyone to view, modify, and contribute to our code. Our cloud offering also offers no restrictions on features for individual use, whereas Trello locks basic features such as the number of boards you can create behind a paywall.\"],\"lo8xBK\":[\"Are you sure want to remove \",[\"entityLabel\"],\"?\"],\"lpIMne\":[\"Passwords do not match\"],\"lsgnzd\":[\"Error upgrading to Pro\"],\"lyqwgn\":[\"Add label\"],\"m2nk0i\":[\"Simple pricing\"],\"mErq7F\":[\"Sign Up\"],\"mHhffx\":[\"Unable to create checklist\"],\"mTGd3+\":[\"deleted a checklist\"],\"mTwGOf\":[\"This invitation link is invalid or has expired.\"],\"mU+M00\":[[\"0\"],\" has been added to your favorites.\"],\"mVZH9V\":[\"When Trello launched in 2011, it blew everyone away with its carefully designed simplicity, but over the years it lost its magic and grew into something closer to \\\"Jira Lite\\\". This project is our attempt to recapture the original magic of Trello's simplicity, in open source.\"],\"mZGPxt\":[\"Invite link copied to clipboard\"],\"mchgzf\":[\"You have been signed up successfully.\"],\"mgXgHu\":[\"Go to boards\"],\"mrhyIB\":[\"Perfect for small and growing teams looking to collaborate.\"],\"mwBdZ2\":[\"This will result in the permanent deletion of all data associated with your account.\"],\"mx8+1u\":[\"Unlimited members\"],\"n+xLOH\":[\"Customer Support\"],\"n1GRql\":[\"New label\"],\"n1ekoW\":[\"Sign In\"],\"n6EWYz\":[\"Used to sign webhook payloads for verification. Leave blank to keep existing secret.\"],\"n9V+ps\":[\"Enter your name\"],\"nKBUeF\":[\"The card has been duplicated.\"],\"nOhz3x\":[\"Logout\"],\"nYNMZZ\":[\"Position in list (0 = first, leave empty for end)\"],\"nabda1\":[\"Delete card\"],\"nbfdhU\":[\"Integrations\"],\"ngBZOd\":[\"Add comment... (type '/' to open commands or '@' to mention)\"],\"nhMhRr\":[\"Thank you for your feedback!\"],\"njJFtc\":[\"Delete comment\"],\"nk7caK\":[\"Connect Trello\"],\"nol/Fb\":[\"How do I invite team members?\"],\"notwF1\":[\"Template name cannot exceed 100 characters\"],\"nq7q3Z\":[\"API key name cannot exceed 30 characters\"],\"nqdIhs\":[\"Custom board templates\"],\"nryrgW\":[\"All member permission overrides have been reset to their role defaults.\"],\"o+JCfN\":[\"Trusted by fast-moving teams<0/>around the world\"],\"o4e/70\":[\"Select at least one event\"],\"o4sQAg\":[\"Failed to create webhook\"],\"o7J4JM\":[\"Filter\"],\"o8adVG\":[\"10mb file uploads\"],\"o9WLwO\":[\"Unable to update card\"],\"oVBq1w\":[\"per user/month\"],\"oW13KZ\":[\"Get started for free today\"],\"odFCYX\":[\"Invalid invitation\"],\"okpxfB\":[\"Create new key\"],\"onllUU\":[\"Mark all as read\"],\"oyRjD/\":[\"Pro Plan\"],\"p/hk9N\":[\"You have been logged in successfully.\"],\"pBsoKL\":[\"Add to favorites\"],\"pFGfsR\":[\"Check out some of our favorite open source projects.\"],\"pFKC6A\":[\"API key name\"],\"pL78ec\":[\"Added to favorites\"],\"pM1sn/\":[\"New notification\"],\"pVctI7\":[\"On-premise deployment option\"],\"pXVFJy\":[\"Can delete boards\"],\"pa9o5D\":[\"Crop your avatar\"],\"pfa8F0\":[\"Display name\"],\"pmUArF\":[\"Workspace\"],\"pnrmSP\":[\"New card\"],\"ppaRWv\":[\"Self Host\"],\"pvnfJD\":[\"Dark\"],\"q+lt9D\":[\"Error deleting label\"],\"q3il6U\":[\"Font size\"],\"qPP4lD\":[\"Inviting members requires a Team Plan. You'll be redirected to upgrade your workspace.\"],\"qQXocp\":[\"Can manage workspace settings\"],\"qaS+1/\":[\"Best for teams that want to scale without limits\"],\"qfUS/w\":[\"Open Source Friends\"],\"qkjvgj\":[\"Your workspace has been deleted.\"],\"qlAIQ1\":[\"Remote\"],\"qtE5nt\":[\"Add an item...\"],\"qzdST2\":[\"Board visibility\"],\"r6BgwX\":[\"Password is required to login.\"],\"rD6UIt\":[\"Get started on Cloud\"],\"rF8SEQ\":[\"Edit comment\"],\"rQRXo8\":[\"Enter new secret to update\"],\"rQXTmd\":[\"Card URL copied to clipboard\"],\"rRM7r0\":[\"Import your Trello boards and hit the ground running.\"],\"rYUZIe\":[\"Select source\"],\"raHesj\":[\"You have been unsubscribed!\"],\"rarRW/\":[\"Error inviting member\"],\"ri1hHe\":[\"Due next month\"],\"rmN315\":[\"Fun\"],\"rs7L54\":[\"added a member to the card\"],\"rtbVvN\":[\"Can edit lists\"],\"s+MGs7\":[\"Resources\"],\"s6iE/c\":[\"Sign up is currently disabled. Please try again later.\"],\"sBhOFG\":[\"Simple, visual task management that just works. Drag and drop cards, collaborate with your team, and get more done.\"],\"sDLCvT\":[\"Connect your favorite tools to streamline your workflow.\"],\"sDuhfK\":[\"Launch offer: unlimited seats for just $29/month with Pro\"],\"sU2uWc\":[\"Card duplicated\"],\"sUZo7y\":[\"Sign up | kan.bn\"],\"sVBn4K\":[\"Error updating display name\"],\"sY2lzr\":[\"No download URL available for this attachment.\"],\"sbNNyi\":[\"New webhook\"],\"snMaH4\":[\"Delete webhook\"],\"t+R8+P\":[\"Execution\"],\"t/YqKh\":[\"Remove\"],\"t0dTPm\":[\"Configure webhooks to receive notifications when cards are created, updated, moved, or deleted.\"],\"t2nDzl\":[\"View and manage your billing and subscription.\"],\"t6FvJH\":[\"Can add comments\"],\"tGwwnq\":[\"updated the description\"],\"tHcbLF\":[\"Can edit boards\"],\"tIdipJ\":[\"Edit board URL\"],\"tMYIu7\":[\"Activity logs\"],\"tOZp9v\":[\"Configurable user roles and permissions\"],\"tTbref\":[\"Password is required to sign up.\"],\"tYN21H\":[\"User is already a member of this workspace\"],\"tbNcu4\":[\"Board unarchived\"],\"tca56/\":[\"Your file has been uploaded successfully.\"],\"tfDRzk\":[\"Save\"],\"tlhgDC\":[\"No archived boards\"],\"tmlJN1\":[\"Please enter a valid YouTube URL\"],\"tmpW+w\":[\"Delete board\"],\"tst44n\":[\"Events\"],\"tyHiOa\":[\"Please try again later, or contact customer support.\"],\"u2+JIh\":[\"Custom URLs require upgrading to a Pro plan\"],\"u8JHrO\":[\"Clear filters\"],\"uAQUqI\":[\"Status\"],\"uEGGDs\":[\"My webhook\"],\"uOqaMC\":[\"You've been invited to join a workspace.\"],\"uP4V6I\":[\"Free for everyone\"],\"uXGLuq\":[\"Create API key\"],\"uZg2+w\":[\"Supercharge your workspace for just $29/month. Here's what you'll get:\"],\"uck1tz\":[\"removed a member from the card\"],\"usVytm\":[\"Once you delete your account, there is no going back. This action cannot be undone.\"],\"uvH2xS\":[\"Copy members\"],\"v+Wp++\":[\"Open source\"],\"v1kQyJ\":[\"Webhooks\"],\"v3YoMA\":[\"Senior\"],\"vAR/I8\":[\"Run on your own infrastructure\"],\"vAj6xG\":[\"You can self-host by following the instructions in our <0>repo.\"],\"vSJd18\":[\"Video\"],\"vUr5JT\":[\"Don't have an account? <0><1>Sign up\"],\"vXIe7J\":[\"Language\"],\"vXemf6\":[\"Bug\"],\"va/3u1\":[\"Control who can view and edit your boards.\"],\"vbskQn\":[\"API key name is required\"],\"veIDCY\":[\"Start 14 day free trial\"],\"vfRdCZ\":[\"Unable to reset permissions\"],\"vgdzLf\":[\"Create another\"],\"vifyyw\":[\"Legal\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"This member's permissions have been reset to their role defaults.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"monthly billing\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Long-term\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"wIb7Ng\":[\"Software Development\"],\"wK4OTM\":[\"Title (optional)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Please select a file to upload.\"],\"wY+6Ye\":[\"This board URL has already been taken\"],\"wakO3W\":[\"added checklist <0>\",[\"0\"],\"\"],\"wewm3j\":[\"Board name cannot exceed 100 characters\"],\"wgNoIs\":[\"Select all\"],\"wlQNTg\":[\"Members\"],\"wqkcin\":[\"Can view comments\"],\"wqxglO\":[\"Learning\"],\"wruKPE\":[\"Support the development of the project\"],\"wsy94z\":[\"Best for large organizations with advanced needs\"],\"wtxjAY\":[\"Workspace members\"],\"x0kMO/\":[\"Error updating workspace URL\"],\"x8GeCD\":[\"Display name updated\"],\"xEbBrW\":[\"What license are you using?\"],\"xGVfLh\":[\"Continue\"],\"xLTZVf\":[\"Week start day\"],\"xMn+V9\":[\"Importing from Trello\"],\"xRPn3U\":[\"Enter your email address\"],\"xvcYhz\":[\"Clear any custom member permissions so that all members only inherit permissions from their role defaults.\"],\"y3aU20\":[\"Save changes\"],\"yD3ZSw\":[\"Change your language preferences.\"],\"yV7o5I\":[\"How do I import my Trello boards?\"],\"yb/fjw\":[\"Approval\"],\"yhLUU8\":[\"Error connecting GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Import project (1)\"],\"other\":[\"Import projects (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Close\"],\"zC8Whw\":[\"Get started by creating a new list\"],\"zERArS\":[\"updated the title to <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Create invite link\"],\"zMlxCA\":[\"1 user\"],\"zMquA7\":[\"Choose a plan\"],\"zQPhSa\":[\"Convert to link\"],\"zQX5Dj\":[\"List name\"],\"zYRVNp\":[\"Select a list\"],\"zkWmBh\":[\"Yearly\"],\"zl1b97\":[\"Unable to create card\"],\"zoEbXq\":[\"Can view cards\"],\"zt/6cS\":[\"Best for small teams who want to collaborate and move faster together.\"],\"zto8aj\":[\"Trello disconnected\"],\"zwBp5t\":[\"Private\"],\"zwTiVn\":[\"removed an attachment <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Learn more\"],\"zxKs+y\":[\"Due tomorrow\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No newline at end of file diff --git a/apps/web/src/locales/es/messages.json b/apps/web/src/locales/es/messages.json index 84b8396f9..e14566c72 100644 --- a/apps/web/src/locales/es/messages.json +++ b/apps/web/src/locales/es/messages.json @@ -3,23 +3,40 @@ "message": " (edited)", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 153]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 153 + ] + ], "translation": " (editado)" }, "lGjicL": { "message": ", or see our", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 102]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 102 + ] + ], "translation": ", o consulta nuestro" }, "J/hVSQ": { "message": "{0}", "placeholders": { - "0": ["isTemplate ? \"Templates\" : \"Boards\""] + "0": [ + "isTemplate ? \"Templates\" : \"Boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/index.tsx", 53]], + "origin": [ + [ + "src/views/boards/index.tsx", + 53 + ] + ], "translation": "{0}" }, "JArWcF": { @@ -29,74 +46,146 @@ "card?.title ?? t`Card`", "isTemplate ? \"Templates\" : \"Boards\"" ], - "1": ["board?.name ?? t`Board`", "workspace.name ?? t`Workspace`"] + "1": [ + "board?.name ?? t`Board`", + "workspace.name ?? t`Workspace`" + ] }, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 48], - ["src/views/card/index.tsx", 317] + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/card/index.tsx", + 364 + ] ], "translation": "{0} | {1}" }, "mU+M00": { "message": "{0} has been added to your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 56]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 56 + ] + ], "translation": "{0} se ha añadido a tus favoritos." }, "bDI6VI": { "message": "{0} has been removed from your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 57]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 57 + ] + ], "translation": "{0} se ha eliminado de tus favoritos." }, "CJukzS": { "message": "{0} labels", "placeholders": { - "0": ["labelPublicIds.length"] + "0": [ + "labelPublicIds.length" + ] }, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 455]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 455 + ] + ], "translation": "{0} etiquetas" }, "9x4DAL": { "message": "{0} not found", "placeholders": { - "0": ["isTemplate ? \"Template\" : \"Board\""] + "0": [ + "isTemplate ? \"Template\" : \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/index.tsx", 557]], + "origin": [ + [ + "src/views/board/index.tsx", + 561 + ] + ], "translation": "{0} no encontrado" }, "0xWkkH": { "message": "{boardCount, plural, one {Import board (1)} other {Import boards ({boardCount})}}", "placeholders": { - "boardCount": ["boardCount"] + "boardCount": [ + "boardCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 489]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 489 + ] + ], "translation": "{boardCount, plural, one {Importar tablero (1)} other {Importar tableros ({boardCount})}}" }, + "JBaoDB": { + "message": "{overflow} more viewers", + "placeholders": { + "overflow": [ + "overflow" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 70 + ] + ], + "translation": "" + }, "yndBF+": { "message": "{projectCount, plural, one {Import project (1)} other {Import projects ({projectCount})}}", "placeholders": { - "projectCount": ["projectCount"] + "projectCount": [ + "projectCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 341]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 341 + ] + ], "translation": "{projectCount, plural, one {Importar proyecto (1)} other {Importar proyectos ({projectCount})}}" }, "9lFfqv": { "message": "/month", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 207]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 207 + ] + ], "translation": "/mes" }, "be30i9": { @@ -104,8 +193,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 30], - ["src/views/pricing/components/PricingTiers.tsx", 30] + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ] ], "translation": "$0" }, @@ -114,8 +209,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 158], - ["src/views/members/components/InviteMemberForm.tsx", 170] + [ + "src/views/members/components/InviteMemberForm.tsx", + 158 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] ], "translation": "$10/mes" }, @@ -123,7 +224,12 @@ "message": "$8/month", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 170]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] + ], "translation": "$8/mes" }, "zMlxCA": { @@ -131,9 +237,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 82], - ["src/views/pricing/components/Pricing.tsx", 36], - ["src/views/pricing/components/PricingTiers.tsx", 35] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 82 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 36 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 35 + ] ], "translation": "1 usuario" }, @@ -141,7 +256,12 @@ "message": "10mb file uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 90]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 90 + ] + ], "translation": "Subidas de archivos de 10 mb" }, "gkxGkF": { @@ -149,9 +269,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 66], - ["src/views/pricing/components/PricingTiers.tsx", 88], - ["src/views/pricing/components/PricingTiers.tsx", 263] + [ + "src/views/pricing/components/PricingTiers.tsx", + 66 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 88 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 263 + ] ], "translation": "Prueba gratuita de 14 días · Cambia de plan o cancela en cualquier momento" }, @@ -159,21 +288,48 @@ "message": "404 - Page Not Found | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 11]], + "origin": [ + [ + "src/pages/404.tsx", + 11 + ] + ], "translation": "404 - Página no encontrada | kan.bn" }, + "Ws1I0u": { + "message": "A card was updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 54 + ] + ], + "translation": "" + }, "/rn4RE": { "message": "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 71]], + "origin": [ + [ + "src/views/home/index.tsx", + 71 + ] + ], "translation": "Una aplicación kanban potente y flexible que te ayuda a organizar el trabajo, hacer seguimiento del progreso y obtener resultados, todo en un solo lugar." }, "AeXO77": { "message": "Account", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 41]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 41 + ] + ], "translation": "Cuenta" }, "TKFUnX": { @@ -181,7 +337,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 27 + ] ], "translation": "Cuenta eliminada" }, @@ -190,7 +349,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 283] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 283 + ] ], "translation": "Gestor de cuenta" }, @@ -198,7 +360,12 @@ "message": "Actions", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 56]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 56 + ] + ], "translation": "Acciones" }, "F6pfE9": { @@ -206,9 +373,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 26], - ["src/views/settings/components/NewWebhookModal.tsx", 293], - ["src/views/settings/components/WebhookList.tsx", 106] + [ + "src/views/boards/index.tsx", + 26 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 293 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] ], "translation": "Activo" }, @@ -217,8 +393,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 455], - ["src/views/public/board/CardModal.tsx", 200] + [ + "src/views/card/index.tsx", + 502 + ], + [ + "src/views/public/board/CardModal.tsx", + 200 + ] ], "translation": "Actividad" }, @@ -227,7 +409,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 148] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 148 + ] ], "translation": "Registro de actividad" }, @@ -235,35 +420,60 @@ "message": "Activity logs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 110]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 110 + ] + ], "translation": "Registros de actividad" }, "UGCIzB": { "message": "Add / edit label", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 50]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 50 + ] + ], "translation": "Añadir / editar etiqueta" }, "B3xxao": { "message": "Add a card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 136]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 136 + ] + ], "translation": "Añadir una tarjeta" }, "qtE5nt": { "message": "Add an item...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 141]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 141 + ] + ], "translation": "Añadir un elemento..." }, "Gxxi5J": { "message": "Add checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 65]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 65 + ] + ], "translation": "Añadir lista de verificación" }, "ngBZOd": { @@ -271,8 +481,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/Comment.tsx", 185], - ["src/views/card/components/NewCommentForm.tsx", 68] + [ + "src/views/card/components/Comment.tsx", + 185 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 68 + ] ], "translation": "Añadir comentario... (escribe '/' para abrir comandos o '@' para mencionar)" }, @@ -280,14 +496,24 @@ "message": "Add description... (type '/' to open commands or '@' to mention)", "placeholders": {}, "comments": [], - "origin": [["src/components/Editor.tsx", 482]], + "origin": [ + [ + "src/components/Editor.tsx", + 482 + ] + ], "translation": "Añadir descripción... (escribe '/' para abrir comandos o '@' para mencionar)" }, "abUZlY": { "message": "Add details...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 189 + ] + ], "translation": "Añadir detalles..." }, "lyqwgn": { @@ -295,8 +521,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/LabelSelector.tsx", 114], - ["src/views/card/components/LabelSelector.tsx", 119] + [ + "src/views/card/components/LabelSelector.tsx", + 114 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 119 + ] ], "translation": "Añadir etiqueta" }, @@ -305,8 +537,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 135], - ["src/views/members/components/InviteMemberForm.tsx", 257] + [ + "src/views/card/components/MemberSelector.tsx", + 135 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 257 + ] ], "translation": "Añadir miembro" }, @@ -314,126 +552,222 @@ "message": "Add to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 122]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 122 + ] + ], "translation": "Añadir a favoritos" }, "cWXW+7": { "message": "Add webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 36 + ] + ], "translation": "Agregar webhook" }, "bmXKoX": { "message": "added {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 102]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 102 + ] + ], "translation": "añadió {0} etiquetas: <0>{labelList}" }, "h4VV67": { "message": "added a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 132]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 132 + ] + ], "translation": "añadió una lista de verificación" }, "O83K21": { "message": "added a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 135]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 135 + ] + ], "translation": "añadió un elemento de lista de verificación" }, "T21jY/": { "message": "added a label to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 128]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 128 + ] + ], "translation": "añadió una etiqueta a la tarjeta" }, "rs7L54": { "message": "added a member to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 130]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 130 + ] + ], "translation": "añadió un miembro a la tarjeta" }, "5y6qY8": { "message": "added an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 140]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 140 + ] + ], "translation": "añadió un archivo adjunto" }, "CujNX4": { "message": "added an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 278]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 278 + ] + ], "translation": "añadió un archivo adjunto <0>{0}" }, "wakO3W": { "message": "added checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 208]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 208 + ] + ], "translation": "añadió la lista de verificación <0>{0}" }, "E0t3jO": { "message": "added checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 232]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 232 + ] + ], "translation": "añadió el elemento de lista de verificación <0>{0}" }, "b5FKyH": { "message": "added label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 192]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 192 + ] + ], "translation": "añadió la etiqueta <0>{0}" }, "pL78ec": { "message": "Added to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 53]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 53 + ] + ], "translation": "Añadido a favoritos" }, "14Xi3Z": { "message": "Adding a new member will cost an additional {price} ({billingType}) per seat.", "placeholders": { - "price": ["price"], - "billingType": ["billingType"] + "price": [ + "price" + ], + "billingType": [ + "billingType" + ] }, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 327]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 327 + ] + ], "translation": "Añadir un nuevo miembro costará {price} adicionales ({billingType}) por puesto." }, "D7/JvJ": { "message": "Adjust the square crop to fit your avatar.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 256]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 256 + ] + ], "translation": "Ajusta el recorte cuadrado para que se adapte a tu avatar." }, "U3pytU": { "message": "Admin", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 201]], + "origin": [ + [ + "src/views/members/index.tsx", + 201 + ] + ], "translation": "Administrador" }, "3pIq39": { @@ -441,19 +775,39 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 264], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 265], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 266], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 267], - ["src/views/pricing/components/Pricing.tsx", 55] - ], - "translation": "Roles de administrador" - }, + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 264 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 265 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 266 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 267 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 55 + ] + ], + "translation": "Roles de administrador" + }, "Kec+/t": { "message": "Advanced admin controls", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 103]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 103 + ] + ], "translation": "Controles avanzados de administrador" }, "/jd3aj": { @@ -461,7 +815,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 268] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 268 + ] ], "translation": "Roles avanzados de administrador" }, @@ -469,42 +826,72 @@ "message": "Advanced security, compliance, and dedicated support for large organizations.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 97 + ] + ], "translation": "Seguridad avanzada, cumplimiento normativo y soporte dedicado para grandes organizaciones." }, "h2ztFt": { "message": "All Free features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 56]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 56 + ] + ], "translation": "Todas las funciones gratuitas +" }, "nryrgW": { "message": "All member permission overrides have been reset to their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 26 + ] + ], "translation": "Todas las anulaciones de permisos de miembros se han restablecido a los valores predeterminados de su rol." }, "ZAs2NN": { "message": "All Pro features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 101]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 101 + ] + ], "translation": "Todas las funciones Pro +" }, "UQbwrz": { "message": "All systems operational", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 18]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 18 + ] + ], "translation": "Todos los sistemas operativos" }, "EII/X8": { "message": "All Teams features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 79]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 79 + ] + ], "translation": "Todas las funciones de Teams +" }, "Z3krJD": { @@ -523,28 +910,48 @@ "message": "Already have an account? <0><1>Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 90]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 90 + ] + ], "translation": "¿Ya tienes una cuenta? <0><1>Inicia sesión" }, "j1+HPc": { "message": "An error occurred while connecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 107]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 107 + ] + ], "translation": "Ocurrió un error al conectar tu cuenta de GitHub." }, "Dz63YI": { "message": "An error occurred while disconnecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 130]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 130 + ] + ], "translation": "Ocurrió un error al desconectar tu cuenta de GitHub." }, "WmPhYW": { "message": "An error occurred while disconnecting your Trello account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 87]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 87 + ] + ], "translation": "Se produjo un error al desconectar tu cuenta de Trello." }, "ZXSPJt": { @@ -552,7 +959,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 90] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 90 + ] ], "translation": "Se produjo un error inesperado. Por favor, inténtalo de nuevo más tarde." }, @@ -560,14 +970,24 @@ "message": "Annual", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 63]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 63 + ] + ], "translation": "Anual" }, "3bqt9U": { "message": "Anyone with this link can join your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 311]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 311 + ] + ], "translation": "Cualquiera con este enlace puede unirse a tu espacio de trabajo" }, "OZtEcz": { @@ -575,8 +995,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 65], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 237] + [ + "src/components/SettingsLayout.tsx", + 65 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 237 + ] ], "translation": "API" }, @@ -584,119 +1010,196 @@ "message": "API key created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 91]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 91 + ] + ], "translation": "Clave de API creada" }, "pFKC6A": { "message": "API key name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 161]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 161 + ] + ], "translation": "Nombre de la clave de API" }, "nq7q3Z": { "message": "API key name cannot exceed 30 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 25 + ] + ], "translation": "El nombre de la clave de API no puede superar los 30 caracteres" }, "vbskQn": { "message": "API key name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 24 + ] + ], "translation": "El nombre de la clave de API es obligatorio" }, "5h8ooz": { "message": "API keys", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 22]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 22 + ] + ], "translation": "Claves de API" }, "j2+d/o": { "message": "API Reference", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 31]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 31 + ] + ], "translation": "Referencia de API" }, "bJZm1W": { "message": "Applicants", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 75]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 75 + ] + ], "translation": "Solicitantes" }, "yb/fjw": { "message": "Approval", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 46]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 46 + ] + ], "translation": "Aprobación" }, "aKJHG+": { "message": "Archive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Archivar tablero" }, "TdfEV7": { "message": "Archived", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 27]], + "origin": [ + [ + "src/views/boards/index.tsx", + 27 + ] + ], "translation": "Archivado" }, "lo8xBK": { "message": "Are you sure want to remove {entityLabel}?", "placeholders": { - "entityLabel": ["entityLabel"] + "entityLabel": [ + "entityLabel" + ] }, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 47] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 47 + ] ], "translation": "¿Estás seguro de que quieres eliminar {entityLabel}?" }, "Ypy5pZ": { "message": "Are you sure you want to delete the webhook \"{webhookName}\"? This action cannot be undone.", "placeholders": { - "webhookName": ["webhookName"] + "webhookName": [ + "webhookName" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 60 + ] ], "translation": "¿Está seguro de que desea eliminar el webhook \"{webhookName}\"? Esta acción no se puede deshacer." }, "BhDZlc": { "message": "Are you sure you want to delete the workspace {0}?", "placeholders": { - "0": ["workspace.name"] + "0": [ + "workspace.name" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 62] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 62 + ] ], "translation": "¿Estás seguro de que quieres eliminar el espacio de trabajo {0}?" }, "DMeWZD": { "message": "Are you sure you want to delete this {0}?", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/DeleteBoardConfirmation.tsx", 36]], + "origin": [ + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 36 + ] + ], "translation": "¿Estás seguro de que quieres eliminar este {0}?" }, "ZT4Khw": { "message": "Are you sure you want to delete this card?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 75]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 75 + ] + ], "translation": "¿Estás seguro de que quieres eliminar esta tarjeta?" }, "Fpci8b": { @@ -704,7 +1207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 56] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 56 + ] ], "translation": "¿Estás seguro de que quieres eliminar esta lista de verificación?" }, @@ -712,14 +1218,24 @@ "message": "Are you sure you want to delete this comment?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 66]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 66 + ] + ], "translation": "¿Estás seguro de que quieres eliminar este comentario?" }, "kECVpo": { "message": "Are you sure you want to delete this label?", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 41]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 41 + ] + ], "translation": "¿Estás seguro de que quieres eliminar esta etiqueta?" }, "74F7N/": { @@ -727,17 +1243,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 54] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 54 + ] ], "translation": "¿Estás seguro de que quieres eliminar tu cuenta?" }, "PyYD/v": { "message": "assigned <0>{0} to the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 172]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 172 + ] + ], "translation": "asignó <0>{0} a la tarjeta" }, "JUce1S": { @@ -745,7 +1271,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 199] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 199 + ] ], "translation": "Asignados" }, @@ -753,91 +1282,156 @@ "message": "Attachment uploaded", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 45]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 45 + ] + ], "translation": "Archivo adjunto subido" }, "1rWxEw": { "message": "Awaiting Customer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 59]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 59 + ] + ], "translation": "Esperando al cliente" }, "iH8pgl": { "message": "Back", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 275]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 275 + ] + ], "translation": "Atrás" }, "KNKCTb": { "message": "Backlog", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Pendientes" }, "Vt50G1": { "message": "Basic Kanban", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 16]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 16 + ] + ], "translation": "Kanban básico" }, "Pat4r8": { "message": "Basic Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 28]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 28 + ] + ], "translation": "Hoja de ruta básica" }, "Cd4sTD": { "message": "Best for individuals and solo creators getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 32]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 32 + ] + ], "translation": "Ideal para individuos y creadores en solitario que están empezando" }, "wsy94z": { "message": "Best for large organizations with advanced needs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 98 + ] + ], "translation": "Ideal para grandes organizaciones con necesidades avanzadas" }, "UoSI+i": { "message": "Best for small and growing teams that need collaboration", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 53]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 53 + ] + ], "translation": "Ideal para equipos pequeños y en crecimiento que necesitan colaboración" }, "zt/6cS": { "message": "Best for small teams who want to collaborate and move faster together.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 86]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 86 + ] + ], "translation": "Ideal para equipos pequeños que desean colaborar y avanzar más rápido juntos." }, "qaS+1/": { "message": "Best for teams that want to scale without limits", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 76]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 76 + ] + ], "translation": "Ideal para equipos que quieren escalar sin límites" }, "ARvBT/": { "message": "billed annually", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "facturado anualmente" }, "+VoTOr": { "message": "billed monthly", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "facturado mensualmente" }, "R+w/Va": { @@ -845,9 +1439,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 58], - ["src/views/boards/components/TemplateBoards.tsx", 68], - ["src/views/settings/BillingSettings.tsx", 39] + [ + "src/components/SettingsLayout.tsx", + 58 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 68 + ], + [ + "src/views/settings/BillingSettings.tsx", + 39 + ] ], "translation": "Facturación" }, @@ -855,14 +1458,24 @@ "message": "Billing portal", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 49 + ] + ], "translation": "Portal de facturación" }, "4RoY9J": { "message": "Blog Post", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Artículo de blog" }, "QD8opX": { @@ -870,9 +1483,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/card/index.tsx", 317], - ["src/views/public/board/index.tsx", 125] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/card/index.tsx", + 364 + ], + [ + "src/views/public/board/index.tsx", + 125 + ] ], "translation": "Tablero" }, @@ -881,8 +1503,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 314], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 85] + [ + "src/components/NewWorkspaceForm.tsx", + 314 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 85 + ] ], "translation": "Analíticas del tablero" }, @@ -890,28 +1518,48 @@ "message": "Board archived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Tablero archivado" }, "wewm3j": { "message": "Board name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 23 + ] + ], "translation": "El nombre del tablero no puede exceder los 100 caracteres" }, "R1c3Mq": { "message": "Board name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 22 + ] + ], "translation": "El nombre del tablero es obligatorio" }, "jwI32v": { "message": "Board not found", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 181]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 181 + ] + ], "translation": "Tablero no encontrado" }, "XNxYxq": { @@ -919,7 +1567,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 116] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 116 + ] ], "translation": "Plantillas de tablero" }, @@ -927,21 +1578,36 @@ "message": "Board unarchived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Tablero desarchivado" }, "Xid3K6": { "message": "Board URL can only contain letters, numbers, and hyphens", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 46]], - "translation": "La URL del tablero solo puede contener letras, números y guiones" - }, - "gv5kbo": { + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 46 + ] + ], + "translation": "La URL del tablero solo puede contener letras, números y guiones" + }, + "gv5kbo": { "message": "Board URL cannot exceed 60 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 44]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 44 + ] + ], "translation": "La URL del tablero no puede exceder 60 caracteres" }, "8+BY11": { @@ -949,8 +1615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 82], - ["src/views/public/board/index.tsx", 79] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 82 + ], + [ + "src/views/public/board/index.tsx", + 79 + ] ], "translation": "URL del tablero copiada al portapapeles" }, @@ -958,7 +1630,12 @@ "message": "Board URL must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 42]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 42 + ] + ], "translation": "La URL del tablero debe tener al menos 3 caracteres" }, "qzdST2": { @@ -966,8 +1643,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 85], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 132] + [ + "src/views/home/components/Features.tsx", + 85 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 132 + ] ], "translation": "Visibilidad del tablero" }, @@ -975,7 +1658,12 @@ "message": "Board visibility updated", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 49]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 49 + ] + ], "translation": "Visibilidad del tablero actualizada" }, "8TveY+": { @@ -983,8 +1671,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 99], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 73] + [ + "src/components/SideNavigation.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 73 + ] ], "translation": "Tableros" }, @@ -992,28 +1686,48 @@ "message": "Boards you archive will appear here.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Los tableros que archives aparecerán aquí." }, "ZDo4HN": { "message": "Brainstorming", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 42]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 42 + ] + ], "translation": "Lluvia de ideas" }, "vXemf6": { "message": "Bug", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 24]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ] + ], "translation": "Error" }, "/asTmx": { "message": "Bug Report", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 64]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 64 + ] + ], "translation": "Reporte de error" }, "t6FvJH": { @@ -1021,8 +1735,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 146], - ["src/views/settings/components/RolePermissions.tsx", 35] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 146 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 35 + ] ], "translation": "Puede añadir comentarios" }, @@ -1031,8 +1751,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 131], - ["src/views/settings/components/RolePermissions.tsx", 20] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 131 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 20 + ] ], "translation": "Puede crear tableros" }, @@ -1041,8 +1767,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 141], - ["src/views/settings/components/RolePermissions.tsx", 30] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 141 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 30 + ] ], "translation": "Puede crear tarjetas" }, @@ -1051,8 +1783,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 136], - ["src/views/settings/components/RolePermissions.tsx", 25] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 136 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 25 + ] ], "translation": "Puede crear listas" }, @@ -1061,8 +1799,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 133], - ["src/views/settings/components/RolePermissions.tsx", 22] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 133 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 22 + ] ], "translation": "Puede eliminar tableros" }, @@ -1071,8 +1815,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 143], - ["src/views/settings/components/RolePermissions.tsx", 32] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 143 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 32 + ] ], "translation": "Puede eliminar tarjetas" }, @@ -1081,8 +1831,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 148], - ["src/views/settings/components/RolePermissions.tsx", 37] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 148 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 37 + ] ], "translation": "Puede eliminar comentarios" }, @@ -1091,8 +1847,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 138], - ["src/views/settings/components/RolePermissions.tsx", 27] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 138 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 27 + ] ], "translation": "Puede eliminar listas" }, @@ -1101,8 +1863,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 127], - ["src/views/settings/components/RolePermissions.tsx", 16] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 127 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 16 + ] ], "translation": "Puede eliminar espacio de trabajo" }, @@ -1111,8 +1879,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 132], - ["src/views/settings/components/RolePermissions.tsx", 21] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 132 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 21 + ] ], "translation": "Puede editar tableros" }, @@ -1121,8 +1895,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 142], - ["src/views/settings/components/RolePermissions.tsx", 31] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 142 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 31 + ] ], "translation": "Puede editar tarjetas" }, @@ -1131,8 +1911,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 147], - ["src/views/settings/components/RolePermissions.tsx", 36] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 147 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 36 + ] ], "translation": "Puede editar comentarios" }, @@ -1141,8 +1927,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 137], - ["src/views/settings/components/RolePermissions.tsx", 26] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 137 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 26 + ] ], "translation": "Puede editar listas" }, @@ -1151,8 +1943,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 152], - ["src/views/settings/components/RolePermissions.tsx", 41] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 152 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 41 + ] ], "translation": "Puede editar roles y permisos de miembros" }, @@ -1161,8 +1959,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 126], - ["src/views/settings/components/RolePermissions.tsx", 15] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 126 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 15 + ] ], "translation": "Puede editar espacio de trabajo" }, @@ -1171,8 +1975,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 151], - ["src/views/settings/components/RolePermissions.tsx", 40] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 151 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 40 + ] ], "translation": "Puede invitar miembros" }, @@ -1181,8 +1991,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 128], - ["src/views/settings/components/RolePermissions.tsx", 17] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 128 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 17 + ] ], "translation": "Puede gestionar la configuración del espacio de trabajo" }, @@ -1191,8 +2007,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 153], - ["src/views/settings/components/RolePermissions.tsx", 42] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 153 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 42 + ] ], "translation": "Puede eliminar miembros" }, @@ -1201,8 +2023,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 130], - ["src/views/settings/components/RolePermissions.tsx", 19] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 130 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 19 + ] ], "translation": "Puede ver tableros" }, @@ -1211,8 +2039,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 140], - ["src/views/settings/components/RolePermissions.tsx", 29] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 140 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 29 + ] ], "translation": "Puede ver tarjetas" }, @@ -1221,8 +2055,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 145], - ["src/views/settings/components/RolePermissions.tsx", 34] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 145 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 34 + ] ], "translation": "Puede ver comentarios" }, @@ -1231,8 +2071,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 135], - ["src/views/settings/components/RolePermissions.tsx", 24] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 135 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 24 + ] ], "translation": "Puede ver listas" }, @@ -1241,8 +2087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 150], - ["src/views/settings/components/RolePermissions.tsx", 39] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 150 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 39 + ] ], "translation": "Puede ver miembros" }, @@ -1251,8 +2103,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 125], - ["src/views/settings/components/RolePermissions.tsx", 14] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 125 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 14 + ] ], "translation": "Puede ver el espacio de trabajo" }, @@ -1261,26 +2119,74 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 49], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 176], - ["src/views/board/components/CardContextDuplicateModal.tsx", 267], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 44], - ["src/views/card/components/Comment.tsx", 195], - ["src/views/card/components/DeleteCardConfirmation.tsx", 86], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 64], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 77], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 55], - ["src/views/onboarding/select-plan/index.tsx", 209], - ["src/views/settings/components/Avatar.tsx", 287], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 168], + [ + "src/components/DeleteLabelConfirmation.tsx", + 49 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 176 + ], + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 267 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 44 + ], + [ + "src/views/card/components/Comment.tsx", + 195 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 86 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 64 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 77 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 55 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 209 + ], + [ + "src/views/settings/components/Avatar.tsx", + 287 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 168 + ], [ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 40 ], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 88], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 108] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 88 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 66 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 98 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 108 + ] ], "translation": "Cancelar" }, @@ -1288,7 +2194,12 @@ "message": "Card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 317]], + "origin": [ + [ + "src/views/card/index.tsx", + 364 + ] + ], "translation": "Tarjeta" }, "sU2uWc": { @@ -1296,7 +2207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 67] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 67 + ] ], "translation": "Tarjeta duplicada" }, @@ -1305,8 +2219,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 363], - ["src/views/card/index.tsx", 400] + [ + "src/views/card/index.tsx", + 410 + ], + [ + "src/views/card/index.tsx", + 447 + ] ], "translation": "Tarjeta no encontrada" }, @@ -1314,17 +2234,43 @@ "message": "Card title", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 321]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 321 + ] + ], "translation": "Título de la tarjeta" }, + "4630Pc": { + "message": "Card updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 53 + ] + ], + "translation": "" + }, "rQXTmd": { "message": "Card URL copied to clipboard", "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 308], - ["src/views/card/components/Dropdown.tsx", 44], - ["src/views/public/board/CardModal.tsx", 38] + [ + "src/views/board/index.tsx", + 312 + ], + [ + "src/views/card/components/Dropdown.tsx", + 44 + ], + [ + "src/views/public/board/CardModal.tsx", + 38 + ] ], "translation": "URL de la tarjeta copiada al portapapeles" }, @@ -1333,10 +2279,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 88], - ["src/views/settings/AccountSettings.tsx", 98], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 109], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 178] + [ + "src/views/settings/AccountSettings.tsx", + 88 + ], + [ + "src/views/settings/AccountSettings.tsx", + 98 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 109 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 178 + ] ], "translation": "Cambiar contraseña" }, @@ -1344,25 +2302,43 @@ "message": "Change the application font size.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 63]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 63 + ] + ], "translation": "Cambia el tamaño de fuente de la aplicación." }, "yD3ZSw": { "message": "Change your language preferences.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 53 + ] + ], "translation": "Cambia tus preferencias de idioma." }, "gZxH/p": { "message": "changed the due date to <0>{formattedDate}", "placeholders": { - "formattedDate": ["formattedDate"] + "formattedDate": [ + "formattedDate" + ] }, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 303], - ["src/views/card/components/ActivityList.tsx", 317] + [ + "src/views/card/components/ActivityList.tsx", + 303 + ], + [ + "src/views/card/components/ActivityList.tsx", + 317 + ] ], "translation": "cambió la fecha de vencimiento a <0>{formattedDate}" }, @@ -1370,7 +2346,12 @@ "message": "Check out some of our favorite open source projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 61]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 61 + ] + ], "translation": "Echa un vistazo a algunos de nuestros proyectos de código abierto favoritos." }, "5IXWmO": { @@ -1378,8 +2359,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 43], - ["src/views/auth/signup/index.tsx", 71] + [ + "src/views/auth/login/index.tsx", + 43 + ], + [ + "src/views/auth/signup/index.tsx", + 71 + ] ], "translation": "Revisa tu bandeja de entrada" }, @@ -1387,7 +2374,12 @@ "message": "Checklist name", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 119]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 119 + ] + ], "translation": "Nombre de la lista de verificación" }, "EH8IL3": { @@ -1395,8 +2387,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 108], - ["src/views/pricing/components/PricingTiers.tsx", 39] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 108 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 39 + ] ], "translation": "Listas de verificación" }, @@ -1404,7 +2402,12 @@ "message": "Choose a plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 122]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 122 + ] + ], "translation": "Elige un plan" }, "VHS0aJ": { @@ -1423,7 +2426,12 @@ "message": "Clear any custom member permissions so that all members only inherit permissions from their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 67]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 67 + ] + ], "translation": "Elimina cualquier permiso personalizado de miembros para que todos los miembros solo hereden permisos de sus roles predeterminados." }, "jL82rC": { @@ -1435,7 +2443,10 @@ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 48 ], - ["src/views/settings/PermissionsSettings.tsx", 80] + [ + "src/views/settings/PermissionsSettings.tsx", + 80 + ] ], "translation": "Eliminar permisos personalizados" }, @@ -1443,18 +2454,31 @@ "message": "Clear filters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 227]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 227 + ] + ], "translation": "Limpiar filtros" }, "RRn9jf": { "message": "Click on the link we've sent to {magicLinkRecipient} to sign in.", "placeholders": { - "magicLinkRecipient": ["magicLinkRecipient"] + "magicLinkRecipient": [ + "magicLinkRecipient" + ] }, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 48], - ["src/views/auth/signup/index.tsx", 76] + [ + "src/views/auth/login/index.tsx", + 48 + ], + [ + "src/views/auth/signup/index.tsx", + 76 + ] ], "translation": "Haz clic en el enlace que hemos enviado a {magicLinkRecipient} para iniciar sesión." }, @@ -1463,9 +2487,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 354], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 172], - ["src/views/settings/components/NewApiKeyModal.tsx", 136] + [ + "src/views/card/index.tsx", + 401 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 172 + ], + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 136 + ] ], "translation": "Cerrar" }, @@ -1473,14 +2506,24 @@ "message": "Code Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Revisión de código" }, "EvArWh": { "message": "Collaborate seamlessly with your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 91 + ] + ], "translation": "Colabora sin problemas con tu equipo." }, "dtQIWT": { @@ -1488,7 +2531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 309] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 309 + ] ], "translation": "Colaboración" }, @@ -1497,9 +2543,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 317], - ["src/views/home/components/Features.tsx", 67], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 88] + [ + "src/components/NewWorkspaceForm.tsx", + 317 + ], + [ + "src/views/home/components/Features.tsx", + 67 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 88 + ] ], "translation": "Próximamente" }, @@ -1508,8 +2563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 105], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 156] + [ + "src/views/home/components/Features.tsx", + 105 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 156 + ] ], "translation": "Comentarios" }, @@ -1517,65 +2578,112 @@ "message": "Company", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 95 + ] + ], "translation": "Empresa" }, "bD8I7O": { "message": "Complete", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 94]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 94 + ] + ], "translation": "Completar" }, "cAgBMh": { "message": "Complete control and ownership:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 70]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 70 + ] + ], "translation": "Control y propiedad completos:" }, "Lt+ZP3": { "message": "completed a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 137]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 137 + ] + ], "translation": "completó un elemento de la lista de verificación" }, "29sSki": { "message": "completed checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 249]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 249 + ] + ], "translation": "completó el elemento de la lista de verificación <0>{0}" }, "tOZp9v": { "message": "Configurable user roles and permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 82]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 82 + ] + ], "translation": "Roles de usuario y permisos configurables" }, "t0dTPm": { "message": "Configure webhooks to receive notifications when cards are created, updated, moved, or deleted.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 31]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 31 + ] + ], "translation": "Configure webhooks para recibir notificaciones cuando se creen, actualicen, muevan o eliminen tarjetas." }, "/f3t6v": { "message": "Configure which actions are allowed for each workspace role. These permissions apply to all members with that role.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 56]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 56 + ] + ], "translation": "Configura qué acciones están permitidas para cada rol del espacio de trabajo. Estos permisos se aplican a todos los miembros con ese rol." }, "86XI28": { "message": "Confirm your email preferences:", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 81]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 81 + ] + ], "translation": "Confirma tus preferencias de correo electrónico:" }, "479pdJ": { @@ -1583,7 +2691,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 150] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 150 + ] ], "translation": "Confirma tu nueva contraseña" }, @@ -1591,42 +2702,72 @@ "message": "Connect", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Conectar" }, "3jod3l": { "message": "Connect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 212]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 212 + ] + ], "translation": "Conectar GitHub" }, "nk7caK": { "message": "Connect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 162]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 162 + ] + ], "translation": "Conectar Trello" }, "sDLCvT": { "message": "Connect your favorite tools to streamline your workflow.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 122]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 122 + ] + ], "translation": "Conecta tus herramientas favoritas para optimizar tu flujo de trabajo." }, "MCIXdZ": { "message": "Connect your GitHub account to import projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 191]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 191 + ] + ], "translation": "Conecta tu cuenta de GitHub para importar proyectos." }, "5eZwRW": { "message": "Connect your Trello account to import boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 149]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 149 + ] + ], "translation": "Conecta tu cuenta de Trello para importar tableros." }, "jfC/xh": { @@ -1634,8 +2775,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 38], - ["src/views/home/components/Header.tsx", 42] + [ + "src/views/home/components/Footer.tsx", + 38 + ], + [ + "src/views/home/components/Header.tsx", + 42 + ] ], "translation": "Contacto" }, @@ -1643,7 +2790,12 @@ "message": "Contact Sales", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 95]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 95 + ] + ], "translation": "Contactar con ventas" }, "Bhgd0l": { @@ -1651,9 +2803,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 96], - ["src/views/pricing/components/PricingTiers.tsx", 96] + [ + "src/components/FeedbackModal.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ] ], "translation": "Contáctanos" }, @@ -1661,7 +2822,12 @@ "message": "Content Creation", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 40]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 40 + ] + ], "translation": "Creación de contenido" }, "xGVfLh": { @@ -1669,8 +2835,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 212], - ["src/views/onboarding/workspace-details/index.tsx", 291] + [ + "src/views/onboarding/select-plan/index.tsx", + 212 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 291 + ] ], "translation": "Continuar" }, @@ -1678,44 +2850,76 @@ "message": "Continue with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "Continuar con " }, "gkzAEM": { "message": "Continue with {0}", "placeholders": { - "0": ["key === \"oidc\" ? oidcProviderName : provider.name"] + "0": [ + "key === \"oidc\" ? oidcProviderName : provider.name" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 355]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 355 + ] + ], "translation": "Continuar con {0}" }, "va/3u1": { "message": "Control who can view and edit your boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 86 + ] + ], "translation": "Controla quién puede ver y editar tus tableros." }, "zQPhSa": { "message": "Convert to link", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 47]], + "origin": [ + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 47 + ] + ], "translation": "Convertir en enlace" }, "5RkSzq": { "message": "Copy board link", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugButton.tsx", 87]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 87 + ] + ], "translation": "Copiar enlace del tablero" }, "F0YmUY": { "message": "Copy card link", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 58]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 58 + ] + ], "translation": "Copiar enlace de la tarjeta" }, "0utuU6": { @@ -1723,7 +2927,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 257] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 257 + ] ], "translation": "Copiar listas de verificación" }, @@ -1732,7 +2939,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 221] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 221 + ] ], "translation": "Copiar etiquetas" }, @@ -1740,7 +2950,12 @@ "message": "Copy link to card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 62]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 62 + ] + ], "translation": "Copiar enlace a la tarjeta" }, "uvH2xS": { @@ -1748,7 +2963,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 239] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 239 + ] ], "translation": "Copiar miembros" }, @@ -1757,17 +2975,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 305] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 305 + ] ], "translation": "Funciones principales" }, "b9XOHo": { "message": "Create {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 166]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 166 + ] + ], "translation": "Crear {0}" }, "vgdzLf": { @@ -1775,9 +3003,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 213], - ["src/views/board/components/NewCardForm.tsx", 520], - ["src/views/board/components/NewListForm.tsx", 141] + [ + "src/components/LabelForm.tsx", + 213 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 520 + ], + [ + "src/views/board/components/NewListForm.tsx", + 141 + ] ], "translation": "Crear otro" }, @@ -1785,53 +3022,91 @@ "message": "Create API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 175]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 175 + ] + ], "translation": "Crear clave API" }, "dsLT3m": { "message": "Create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 530]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 530 + ] + ], "translation": "Crear tarjeta" }, "d33Usy": { "message": "Create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 135]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 135 + ] + ], "translation": "Crear lista de verificación" }, "zKY5xi": { "message": "Create invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 349]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 349 + ] + ], "translation": "Crear enlace de invitación" }, "QtACvI": { "message": "Create label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Crear etiqueta" }, "XTKtey": { "message": "Create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 153]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 153 + ] + ], "translation": "Crear lista" }, "VKoDQD": { "message": "Create new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], "origin": [ - ["src/views/boards/components/BoardsList.tsx", 80], - ["src/views/boards/index.tsx", 41] + [ + "src/views/boards/components/BoardsList.tsx", + 80 + ], + [ + "src/views/boards/index.tsx", + 41 + ] ], "translation": "Crear nuevo {0}" }, @@ -1839,7 +3114,12 @@ "message": "Create new key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 30 + ] + ], "translation": "Crear nueva clave" }, "0+0/3e": { @@ -1847,8 +3127,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewCardForm.tsx", 417], - ["src/views/card/components/LabelSelector.tsx", 101] + [ + "src/views/board/components/NewCardForm.tsx", + 417 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 101 + ] ], "translation": "Crear nueva etiqueta" }, @@ -1857,8 +3143,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 92], - ["src/views/board/index.tsx", 671] + [ + "src/views/board/index.tsx", + 94 + ], + [ + "src/views/board/index.tsx", + 676 + ] ], "translation": "Crear nueva lista" }, @@ -1866,14 +3158,24 @@ "message": "Create template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 132]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 132 + ] + ], "translation": "Crear plantilla" }, "SiPp29": { "message": "Create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Crear webhook" }, "FdtSNC": { @@ -1881,8 +3183,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 352], - ["src/components/WorkspaceMenu.tsx", 160] + [ + "src/components/NewWorkspaceForm.tsx", + 352 + ], + [ + "src/components/WorkspaceMenu.tsx", + 160 + ] ], "translation": "Crear espacio de trabajo" }, @@ -1890,14 +3198,24 @@ "message": "Created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 236]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 236 + ] + ], "translation": "Creado" }, "f8lDFq": { "message": "created the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 124]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 124 + ] + ], "translation": "creó la tarjeta" }, "J5nbej": { @@ -1905,9 +3223,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Crítico" }, @@ -1915,7 +3242,12 @@ "message": "Crop your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 253]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 253 + ] + ], "translation": "Recorta tu avatar" }, "D3C4Yx": { @@ -1923,7 +3255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 19] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 19 + ] ], "translation": "Se requiere la contraseña actual" }, @@ -1931,7 +3266,12 @@ "message": "Custom board templates", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 38 + ] + ], "translation": "Plantillas de tablero personalizadas" }, "A42Dqn": { @@ -1939,8 +3279,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 172], - ["src/views/pricing/components/PricingTiers.tsx", 83] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 172 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 83 + ] ], "translation": "Marca personalizada" }, @@ -1948,28 +3294,48 @@ "message": "Custom domain", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 74]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 74 + ] + ], "translation": "Dominio personalizado" }, "2M84k3": { "message": "Custom permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 64]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 64 + ] + ], "translation": "Permisos personalizados" }, "UirJfL": { "message": "Custom SLA", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 105]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 105 + ] + ], "translation": "SLA personalizado" }, "u2+JIh": { "message": "Custom URLs require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 283]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 283 + ] + ], "translation": "Las URLs personalizadas requieren actualizar a un plan Pro" }, "7RpHg/": { @@ -1977,8 +3343,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 100], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 101] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 101 + ] ], "translation": "Nombre de usuario personalizado" }, @@ -1986,7 +3358,12 @@ "message": "Custom usernames require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 220]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 220 + ] + ], "translation": "Los nombres de usuario personalizados requieren actualizar a un plan Pro" }, "j9IZZ0": { @@ -1994,8 +3371,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 307], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 78] + [ + "src/components/NewWorkspaceForm.tsx", + 307 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 78 + ] ], "translation": "URL del espacio de trabajo personalizada" }, @@ -2003,35 +3386,60 @@ "message": "Custom workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 81]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 81 + ] + ], "translation": "Nombre de usuario del espacio de trabajo personalizado" }, "n+xLOH": { "message": "Customer Support", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 54]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 54 + ] + ], "translation": "Atención al cliente" }, "pvnfJD": { "message": "Dark", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 158]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 158 + ] + ], "translation": "Oscuro" }, "cp1rsD": { "message": "Deactivate invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 348]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 348 + ] + ], "translation": "Desactivar enlace de invitación" }, "bKzM8L": { "message": "Dedicated account manager", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 104]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 104 + ] + ], "translation": "Gestor de cuenta dedicado" }, "P8Cunr": { @@ -2039,8 +3447,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 98], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 99] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 98 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 99 + ] ], "translation": "Nombre de usuario predeterminado" }, @@ -2049,15 +3463,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 51], - ["src/components/LabelForm.tsx", 228], - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 52], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 47], - ["src/views/card/components/DeleteCardConfirmation.tsx", 92], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 67], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 83], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 73], - ["src/views/settings/components/WebhookList.tsx", 140] + [ + "src/components/DeleteLabelConfirmation.tsx", + 51 + ], + [ + "src/components/LabelForm.tsx", + 228 + ], + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 52 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 47 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 92 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 67 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 83 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 73 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 140 + ] ], "translation": "Eliminar" }, @@ -2066,9 +3507,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 70], - ["src/views/settings/AccountSettings.tsx", 80], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 96] + [ + "src/views/settings/AccountSettings.tsx", + 70 + ], + [ + "src/views/settings/AccountSettings.tsx", + 80 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 96 + ] ], "translation": "Eliminar cuenta" }, @@ -2076,7 +3526,12 @@ "message": "Delete board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Eliminar tablero" }, "nabda1": { @@ -2084,8 +3539,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMenu.tsx", 74], - ["src/views/card/components/Dropdown.tsx", 76] + [ + "src/views/board/components/CardContextMenu.tsx", + 74 + ], + [ + "src/views/card/components/Dropdown.tsx", + 76 + ] ], "translation": "Eliminar tarjeta" }, @@ -2093,21 +3554,36 @@ "message": "Delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 120]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 120 + ] + ], "translation": "Eliminar comentario" }, "lYT7pQ": { "message": "Delete list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 147]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 147 + ] + ], "translation": "Eliminar lista" }, "DFjdv0": { "message": "Delete template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Eliminar plantilla" }, "snMaH4": { @@ -2115,7 +3591,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 46] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 46 + ] ], "translation": "Eliminar webhook" }, @@ -2124,9 +3603,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 106], - ["src/views/settings/WorkspaceSettings.tsx", 125], - ["src/views/settings/WorkspaceSettings.tsx", 136] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 106 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 125 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 136 + ] ], "translation": "Eliminar espacio de trabajo" }, @@ -2134,116 +3622,200 @@ "message": "deleted a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 134]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 134 + ] + ], "translation": "eliminó una lista de verificación" }, "W5r8Qh": { "message": "deleted a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 139]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 139 + ] + ], "translation": "eliminó un elemento de la lista de verificación" }, "BMkVQ3": { "message": "deleted checklist <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 224]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 224 + ] + ], "translation": "eliminó la lista de verificación <0>{0}" }, "CHZ1jC": { "message": "deleted checklist item <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 267]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 267 + ] + ], "translation": "eliminó el elemento de la lista de verificación <0>{0}" }, "f8fH8W": { "message": "Design", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 45]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 45 + ] + ], "translation": "Diseño" }, "Odv3J6": { "message": "Disconnect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 223]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 223 + ] + ], "translation": "Desconectar GitHub" }, "YBBifR": { "message": "Disconnect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 177]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 177 + ] + ], "translation": "Desconectar Trello" }, "1sRmLC": { "message": "Discuss and collaborate on cards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 106]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 106 + ] + ], "translation": "Discute y colabora en tarjetas." }, "pfa8F0": { "message": "Display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 36 + ] + ], "translation": "Nombre para mostrar" }, "MlyjJu": { "message": "Display name cannot exceed 280 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 22]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 22 + ] + ], "translation": "El nombre para mostrar no puede exceder 280 caracteres" }, "KFJgmZ": { "message": "Display name must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 19 + ] + ], "translation": "El nombre para mostrar debe tener al menos 3 caracteres" }, "x8GeCD": { "message": "Display name updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 41]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 41 + ] + ], "translation": "Nombre para mostrar actualizado" }, "evj0lK": { "message": "Do you offer a free plan?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 83]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 83 + ] + ], "translation": "¿Ofrecéis un plan gratuito?" }, "jDRt4n": { "message": "Do you want to unsubscribe?", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 78]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 78 + ] + ], "translation": "¿Quieres cancelar la suscripción?" }, "JyXBgS": { "message": "docs", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 109]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 109 + ] + ], "translation": "docs" }, "TbjyhA": { "message": "Docs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 20]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 20 + ] + ], "translation": "Docs" }, "TvY/XA": { @@ -2251,12 +3823,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 209], - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36], - ["src/views/home/components/Footer.tsx", 78], - ["src/views/home/components/Header.tsx", 36] + [ + "src/components/UserMenu.tsx", + 209 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ], + [ + "src/views/home/components/Footer.tsx", + 78 + ], + [ + "src/views/home/components/Header.tsx", + 36 + ] ], "translation": "Documentación" }, @@ -2264,7 +3854,12 @@ "message": "Don't have an account? <0><1>Sign up", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 63]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 63 + ] + ], "translation": "¿No tienes una cuenta? <0><1>Regístrate" }, "DPfwMq": { @@ -2272,15 +3867,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 36], - ["src/views/board/components/CardContextLabelsModal.tsx", 48], - ["src/views/board/components/CardContextMembersModal.tsx", 68], - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 48], - ["src/views/boards/components/TemplateBoards.tsx", 61] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 36 + ], + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 48 + ], + [ + "src/views/board/components/CardContextMembersModal.tsx", + 68 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 48 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 61 + ] ], "translation": "Hecho" }, @@ -2288,7 +3910,12 @@ "message": "Download failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 142]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 142 + ] + ], "translation": "Error en la descarga" }, "XicmhT": { @@ -2296,9 +3923,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/Filters.tsx", 171], - ["src/views/board/components/NewCardForm.tsx", 472], - ["src/views/card/index.tsx", 153] + [ + "src/views/board/components/Filters.tsx", + 171 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 472 + ], + [ + "src/views/card/index.tsx", + 155 + ] ], "translation": "Fecha de vencimiento" }, @@ -2306,28 +3942,48 @@ "message": "Due next month", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 132]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 132 + ] + ], "translation": "Vence el próximo mes" }, "iHcdea": { "message": "Due next week", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 127]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 127 + ] + ], "translation": "Vence la próxima semana" }, "1iShX0": { "message": "Due today", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 117]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 117 + ] + ], "translation": "Vence hoy" }, "zxKs+y": { "message": "Due tomorrow", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 122]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 122 + ] + ], "translation": "Vence mañana" }, "euc6Ns": { @@ -2335,7 +3991,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Duplicar" }, @@ -2344,8 +4003,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 111], - ["src/views/board/components/CardContextMenu.tsx", 68] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 111 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 68 + ] ], "translation": "Duplicar tarjeta" }, @@ -2354,7 +4019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Duplicando…" }, @@ -2363,8 +4031,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 42], - ["src/views/settings/components/WebhookList.tsx", 132] + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 42 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 132 + ] ], "translation": "Editar" }, @@ -2373,8 +4047,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/BoardDropdown.tsx", 102], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 116] + [ + "src/views/board/components/BoardDropdown.tsx", + 102 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 116 + ] ], "translation": "Editar URL del tablero" }, @@ -2382,14 +4062,24 @@ "message": "Edit comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 111]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 111 + ] + ], "translation": "Editar comentario" }, "dgr4Kq": { "message": "Edit label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Editar etiqueta" }, "TCOMOO": { @@ -2397,8 +4087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 162], - ["src/views/members/index.tsx", 224] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 162 + ], + [ + "src/views/members/index.tsx", + 224 + ] ], "translation": "Editar permisos" }, @@ -2406,35 +4102,60 @@ "message": "Edit webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Editar webhook" }, "klpSmb": { "message": "Edit workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 162]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 162 + ] + ], "translation": "Editar URL del espacio de trabajo" }, "PRofO0": { "message": "Edit YouTube Video", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 108]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 108 + ] + ], "translation": "Editar video de YouTube" }, "gGx5tM": { "message": "Editing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 44]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 44 + ] + ], "translation": "Editando" }, "b/LfJo": { "message": "email", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "email" }, "O3oNi5": { @@ -2442,8 +4163,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 272], - ["src/views/settings/AccountSettings.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 272 + ], + [ + "src/views/settings/AccountSettings.tsx", + 43 + ] ], "translation": "Email" }, @@ -2452,7 +4179,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 191] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 191 + ] ], "translation": "Notificaciones por email" }, @@ -2460,14 +4190,24 @@ "message": "Email notifications for mentions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 60]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 60 + ] + ], "translation": "Notificaciones por email para menciones" }, "IqjpYe": { "message": "Email visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 100 + ] + ], "translation": "Visibilidad del email" }, "bFREhu": { @@ -2475,7 +4215,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 200] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 200 + ] ], "translation": "Fin de la lista" }, @@ -2483,7 +4226,12 @@ "message": "Engineering", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Ingeniería" }, "0+ewPp": { @@ -2491,9 +4239,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Mejora" }, @@ -2501,14 +4258,24 @@ "message": "Enter a custom title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 131]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 131 + ] + ], "translation": "Introduce un título personalizado" }, "rQRXo8": { "message": "Enter new secret to update", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "Ingrese el nuevo secreto para actualizar" }, "fR9laE": { @@ -2516,7 +4283,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 122] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 122 + ] ], "translation": "Introduce tu contraseña actual" }, @@ -2525,7 +4295,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 111] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 111 + ] ], "translation": "Introduce tu contraseña actual y elige una nueva contraseña segura." }, @@ -2533,14 +4306,24 @@ "message": "Enter your email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 402]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 402 + ] + ], "translation": "Introduce tu dirección de email" }, "n9V+ps": { "message": "Enter your name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 390]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 390 + ] + ], "translation": "Introduce tu nombre" }, "0StR7t": { @@ -2548,7 +4331,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 136] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 136 + ] ], "translation": "Introduce tu nueva contraseña" }, @@ -2556,7 +4342,12 @@ "message": "Enter your password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 416]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 416 + ] + ], "translation": "Introduce tu contraseña" }, "GpB8YV": { @@ -2564,8 +4355,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 334], - ["src/views/pricing/components/PricingTiers.tsx", 92] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 334 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 92 + ] ], "translation": "Enterprise" }, @@ -2574,9 +4371,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 77], - ["src/views/boards/components/NewBoardForm.tsx", 92], - ["src/views/members/components/InviteMemberForm.tsx", 215] + [ + "src/views/boards/components/NewBoardForm.tsx", + 77 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 92 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 215 + ] ], "translation": "Error" }, @@ -2585,7 +4391,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 89] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 89 + ] ], "translation": "Error al cambiar la contraseña" }, @@ -2593,21 +4402,36 @@ "message": "Error connecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 106]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 106 + ] + ], "translation": "Error al conectar GitHub" }, "cji2nM": { "message": "Error creating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 128]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 128 + ] + ], "translation": "Error al crear el enlace de invitación" }, "USVCGU": { "message": "Error deactivating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 144]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 144 + ] + ], "translation": "Error al desactivar el enlace de invitación" }, "bqAQaT": { @@ -2615,7 +4439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 39] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 39 + ] ], "translation": "Error al eliminar la cuenta" }, @@ -2623,7 +4450,12 @@ "message": "Error deleting label", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 25]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 25 + ] + ], "translation": "Error al eliminar la etiqueta" }, "9s9O5h": { @@ -2631,7 +4463,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 45] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 45 + ] ], "translation": "Error al eliminar el espacio de trabajo" }, @@ -2639,14 +4474,24 @@ "message": "Error disconnecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 129]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 129 + ] + ], "translation": "Error al desconectar GitHub" }, "lKAvEd": { "message": "Error disconnecting Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 86 + ] + ], "translation": "Error al desconectar Trello" }, "rarRW/": { @@ -2654,8 +4499,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 97], - ["src/views/members/components/InviteMemberForm.tsx", 103] + [ + "src/views/members/components/InviteMemberForm.tsx", + 97 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 103 + ] ], "translation": "Error al invitar al miembro" }, @@ -2663,7 +4514,12 @@ "message": "Error updating display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 54]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 54 + ] + ], "translation": "Error al actualizar el nombre para mostrar" }, "CkVV1t": { @@ -2671,7 +4527,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 63 + ] ], "translation": "Error al actualizar la descripción del espacio de trabajo" }, @@ -2680,7 +4539,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 58] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 58 + ] ], "translation": "Error al actualizar el nombre del espacio de trabajo" }, @@ -2689,7 +4551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 75] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 75 + ] ], "translation": "Error al actualizar la URL del espacio de trabajo" }, @@ -2698,8 +4563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 240 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 43 + ] ], "translation": "Error al actualizar la suscripción" }, @@ -2707,7 +4578,12 @@ "message": "Error upgrading to Pro", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 146]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 146 + ] + ], "translation": "Error al actualizar a Pro", "obsolete": true }, @@ -2716,8 +4592,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/Avatar.tsx", 69], - ["src/views/settings/components/Avatar.tsx", 199] + [ + "src/views/settings/components/Avatar.tsx", + 69 + ], + [ + "src/views/settings/components/Avatar.tsx", + 199 + ] ], "translation": "Error al subir la imagen de perfil" }, @@ -2726,8 +4608,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 245], - ["src/views/settings/components/WebhookList.tsx", 224] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 245 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 224 + ] ], "translation": "Eventos" }, @@ -2735,42 +4623,72 @@ "message": "Everything in the free plan, plus:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 52 + ] + ], "translation": "Todo lo del plan gratuito, más:" }, "ANyn0x": { "message": "Everything you need, free forever. Unlimited boards, unlimited lists, unlimited cards. Upgrade any time.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 33]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 33 + ] + ], "translation": "Todo lo que necesitas, gratis para siempre. Tableros ilimitados, listas ilimitadas, tarjetas ilimitadas. Actualiza cuando quieras." }, "t+R8+P": { "message": "Execution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 91]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 91 + ] + ], "translation": "Ejecución" }, "GwNIE2": { "message": "Extended Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 34]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 34 + ] + ], "translation": "Hoja de ruta extendida" }, "HYV6Lq": { "message": "Failed to accept invitation. Please try again later, or contact customer support.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 41]], + "origin": [ + [ + "src/views/invite/index.tsx", + 41 + ] + ], "translation": "No se pudo aceptar la invitación. Por favor, inténtalo de nuevo más tarde o contacta con atención al cliente." }, "lXvXNI": { "message": "Failed to copy invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 216]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 216 + ] + ], "translation": "No se pudo copiar el enlace de invitación" }, "53QYh8": { @@ -2778,8 +4696,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 78], - ["src/views/boards/components/NewBoardForm.tsx", 93] + [ + "src/views/boards/components/NewBoardForm.tsx", + 78 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 93 + ] ], "translation": "No se pudo crear el tablero" }, @@ -2787,7 +4711,12 @@ "message": "Failed to create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 109]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 109 + ] + ], "translation": "Error al crear el webhook" }, "9YPBHv": { @@ -2795,7 +4724,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 28 + ] ], "translation": "Error al eliminar el webhook" }, @@ -2803,16 +4735,28 @@ "message": "Failed to fetch video information", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 82]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 82 + ] + ], "translation": "No se pudo obtener la información del vídeo" }, "YtUfwW": { "message": "Failed to login with {0}. Please try again.", "placeholders": { - "0": ["provider.at(0)?.toUpperCase() + provider.slice(1)"] + "0": [ + "provider.at(0)?.toUpperCase() + provider.slice(1)" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 291]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 291 + ] + ], "translation": "No se pudo iniciar sesión con {0}. Por favor, inténtalo de nuevo." }, "5ntVtp": { @@ -2820,8 +4764,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 143], - ["src/views/settings/components/WebhookList.tsx", 184] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 143 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 184 + ] ], "translation": "Error al probar el webhook" }, @@ -2829,21 +4779,36 @@ "message": "Failed to update webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 123]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 123 + ] + ], "translation": "Error al actualizar el webhook" }, "ZL1A+p": { "message": "Failed to upload attachment. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 52]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 52 + ] + ], "translation": "No se pudo subir el archivo adjunto. Por favor, inténtalo de nuevo." }, "/lDBHm": { "message": "FAQ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 41 + ] + ], "translation": "Preguntas frecuentes" }, "aJ4pMe": { @@ -2851,8 +4816,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Faqs.tsx", 143], - ["src/views/home/components/Footer.tsx", 52] + [ + "src/views/home/components/Faqs.tsx", + 143 + ], + [ + "src/views/home/components/Footer.tsx", + 52 + ] ], "translation": "Preguntas frecuentes" }, @@ -2861,9 +4832,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Función" }, @@ -2871,7 +4851,12 @@ "message": "Feature Request", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 65]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 65 + ] + ], "translation": "Solicitud de función" }, "PpZkda": { @@ -2879,10 +4864,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 132], - ["src/views/home/components/Footer.tsx", 50], - ["src/views/home/components/Header.tsx", 17], - ["src/views/home/components/Header.tsx", 33] + [ + "src/views/home/components/Features.tsx", + 132 + ], + [ + "src/views/home/components/Footer.tsx", + 50 + ], + [ + "src/views/home/components/Header.tsx", + 17 + ], + [ + "src/views/home/components/Header.tsx", + 33 + ] ], "translation": "Funciones" }, @@ -2891,8 +4888,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 59], - ["src/components/UserMenu.tsx", 217] + [ + "src/components/FeedbackModal.tsx", + 59 + ], + [ + "src/components/UserMenu.tsx", + 217 + ] ], "translation": "Comentarios" }, @@ -2900,42 +4903,72 @@ "message": "Feedback sent", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 33]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 33 + ] + ], "translation": "Comentarios enviados" }, "F6m23G": { "message": "File uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 89]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 89 + ] + ], "translation": "Subida de archivos" }, "o7J4JM": { "message": "Filter", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 221]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 221 + ] + ], "translation": "Filtrar" }, "l31EoQ": { "message": "Find answers to common questions about Kan. Can't find what you're looking for? Feel free to <0>contact us.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 150]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 150 + ] + ], "translation": "Encuentra respuestas a preguntas frecuentes sobre Kan. ¿No encuentras lo que buscas? No dudes en <0>contactarnos." }, "q3il6U": { "message": "Font size", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 60]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 60 + ] + ], "translation": "Tamaño de fuente" }, "+3TYXa": { "message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 41 + ] + ], "translation": "Para la sostenibilidad a largo plazo, reconocemos que todos los buenos proyectos de código abierto necesitan una fuente de ingresos. La nuestra proviene de la oferta de pago en la nube para espacios de trabajo con múltiples usuarios y para slugs de espacio de trabajo personalizados. No hay obligación de usarla, y puedes alojar el software en tu propia infraestructura de forma gratuita." }, "2POOFK": { @@ -2943,12 +4976,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 77], - ["src/views/onboarding/select-plan/index.tsx", 78], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 331], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/PricingTiers.tsx", 26] + [ + "src/views/onboarding/select-plan/index.tsx", + 77 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 78 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 331 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 26 + ] ], "translation": "Gratis" }, @@ -2956,7 +5007,12 @@ "message": "Free for everyone", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 31]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 31 + ] + ], "translation": "Gratis para todos" }, "W/nQk1": { @@ -2964,8 +5020,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 333], - ["src/views/members/index.tsx", 293] + [ + "src/views/members/components/InviteMemberForm.tsx", + 333 + ], + [ + "src/views/members/index.tsx", + 293 + ] ], "translation": "Plan gratuito" }, @@ -2973,7 +5035,12 @@ "message": "Free, forever", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 34]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 34 + ] + ], "translation": "Gratis, para siempre" }, "6uBU1F": { @@ -2981,9 +5048,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 239], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 240], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 241] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 239 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 240 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 241 + ] ], "translation": "Acceso completo a la API" }, @@ -2991,21 +5067,36 @@ "message": "Full-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Tiempo completo" }, "rmN315": { "message": "Fun", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Diversión" }, "Weq9zb": { "message": "General", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 54]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 54 + ] + ], "translation": "General" }, "ZDIydz": { @@ -3013,12 +5104,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 71], - ["src/views/home/components/Cta.tsx", 61], - ["src/views/home/components/Header.tsx", 106], - ["src/views/pricing/components/PricingTiers.tsx", 29], - ["src/views/pricing/components/PricingTiers.tsx", 50], - ["src/views/pricing/components/PricingTiers.tsx", 73] + [ + "src/views/auth/signup/index.tsx", + 71 + ], + [ + "src/views/home/components/Cta.tsx", + 61 + ], + [ + "src/views/home/components/Header.tsx", + 106 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 29 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 50 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 73 + ] ], "translation": "Comenzar" }, @@ -3027,53 +5136,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 31], - ["src/views/pricing/components/Pricing.tsx", 49] + [ + "src/views/pricing/components/Pricing.tsx", + 31 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 49 + ] ], "translation": "Comenzar" }, "6FsGbN": { "message": "Get started by creating a new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Comienza creando un nuevo {0}" }, "zC8Whw": { "message": "Get started by creating a new list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 656]], + "origin": [ + [ + "src/views/board/index.tsx", + 661 + ] + ], "translation": "Comienza creando una nueva lista" }, "oW13KZ": { "message": "Get started for free today", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 54]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 54 + ] + ], "translation": "Comienza gratis hoy" }, "+OhFss": { "message": "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 92]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 92 + ] + ], "translation": "Comienza gratis, sin límites de uso. Para colaboración, actualiza a un plan que se ajuste al tamaño de tu equipo." }, "rD6UIt": { "message": "Get started on Cloud", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 75]], + "origin": [ + [ + "src/views/home/index.tsx", + 75 + ] + ], "translation": "Comenzar en la nube" }, "7hktsm": { "message": "Getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 25 + ] + ], "translation": "Primeros pasos" }, "RkXlPZ": { @@ -3081,8 +5228,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 37], - ["src/views/settings/IntegrationsSettings.tsx", 186] + [ + "src/views/home/components/Footer.tsx", + 37 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 186 + ] ], "translation": "GitHub" }, @@ -3090,21 +5243,36 @@ "message": "GitHub connected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 99]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 99 + ] + ], "translation": "GitHub conectado" }, "/bBVaD": { "message": "GitHub disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 122]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 122 + ] + ], "translation": "GitHub desconectado" }, "7eMo+U": { "message": "Go Home", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 113]], + "origin": [ + [ + "src/views/invite/index.tsx", + 113 + ] + ], "translation": "Ir al inicio" }, "UveK6V": { @@ -3112,8 +5280,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Header.tsx", 100], - ["src/views/invite/index.tsx", 144] + [ + "src/views/home/components/Header.tsx", + 100 + ], + [ + "src/views/invite/index.tsx", + 144 + ] ], "translation": "Ir a la aplicación" }, @@ -3122,8 +5296,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 107], - ["src/pages/404.tsx", 44] + [ + "src/components/SideNavigation.tsx", + 108 + ], + [ + "src/pages/404.tsx", + 44 + ] ], "translation": "Ir a tableros" }, @@ -3131,35 +5311,60 @@ "message": "Go to homepage", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 38]], + "origin": [ + [ + "src/pages/404.tsx", + 38 + ] + ], "translation": "Ir a la página principal" }, "KAsRdK": { "message": "Go to members", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 131]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 132 + ] + ], "translation": "Ir a miembros" }, "1WuwiM": { "message": "Go to settings", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 143]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 144 + ] + ], "translation": "Ir a configuración" }, "csFbe+": { "message": "Go to templates", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 119]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 120 + ] + ], "translation": "Ir a plantillas" }, "SUvm1Y": { "message": "Good for individuals starting out who just need the essentials.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 79]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 79 + ] + ], "translation": "Ideal para personas que comienzan y solo necesitan lo esencial." }, "cdyS7J": { @@ -3167,9 +5372,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 257], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 258], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 259] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 257 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 258 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 259 + ] ], "translation": "Google SSO" }, @@ -3178,7 +5392,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 260] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 260 + ] ], "translation": "Google SSO + SAML" }, @@ -3186,77 +5403,132 @@ "message": "Guest", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 203]], + "origin": [ + [ + "src/views/members/index.tsx", + 203 + ] + ], "translation": "Invitado" }, "CB/NpV": { "message": "High Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Prioridad alta" }, "XXbgHS": { "message": "Hired", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 80]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 80 + ] + ], "translation": "Contratado" }, "SRvxId": { "message": "HMAC secret for signature verification", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "Secreto HMAC para verificación de firma" }, "LrcnbT": { "message": "Host Kan on your own infrastructure. Ideal for organisations that need complete control over their data.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 69]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 69 + ] + ], "translation": "Aloja Kan en tu propia infraestructura. Ideal para organizaciones que necesitan control completo sobre sus datos." }, "WI4eGo": { "message": "How do I get a custom URL?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 64]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 64 + ] + ], "translation": "¿Cómo obtengo una URL personalizada?" }, "yV7o5I": { "message": "How do I import my Trello boards?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 46]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 46 + ] + ], "translation": "¿Cómo importo mis tableros de Trello?" }, "nol/Fb": { "message": "How do I invite team members?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 108]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 108 + ] + ], "translation": "¿Cómo invito a miembros del equipo?" }, "KuSt9W": { "message": "How do I self-host?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 124]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 124 + ] + ], "translation": "¿Cómo hago el auto-alojamiento?" }, "UeDFpo": { "message": "How is the project funded?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 38]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 38 + ] + ], "translation": "¿Cómo se financia el proyecto?" }, "6S8zjx": { "message": "https://www.youtube.com/watch?v=...", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 151]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 151 + ] + ], "translation": "https://www.youtube.com/watch?v=..." }, "2liqDZ": { @@ -3264,7 +5536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 82] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 82 + ] ], "translation": "Reconozco que todos los datos de mi cuenta se eliminarán permanentemente y quiero continuar." }, @@ -3273,7 +5548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 92] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 92 + ] ], "translation": "Reconozco que todos los datos del espacio de trabajo se eliminarán permanentemente y quiero continuar." }, @@ -3281,21 +5559,36 @@ "message": "Ideas", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 88]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 88 + ] + ], "translation": "Ideas" }, "F/vB2g": { "message": "Ideas to improve this page...", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 75]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 75 + ] + ], "translation": "Ideas para mejorar esta página..." }, "l3s5ri": { "message": "Import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 73]], + "origin": [ + [ + "src/views/boards/index.tsx", + 73 + ] + ], "translation": "Importar" }, "2MPcep": { @@ -3303,8 +5596,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 229], - ["src/views/boards/components/ImportBoardsForm.tsx", 381] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 229 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 381 + ] ], "translation": "Importación completada" }, @@ -3313,8 +5612,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 242], - ["src/views/boards/components/ImportBoardsForm.tsx", 394] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 242 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 394 + ] ], "translation": "Importación fallida" }, @@ -3322,28 +5627,48 @@ "message": "Import your Trello boards and hit the ground running.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 96]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 96 + ] + ], "translation": "Importa tus tableros de Trello y empieza a trabajar de inmediato." }, "c/IAuR": { "message": "Important", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Importante" }, "xMn+V9": { "message": "Importing from Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 27]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 27 + ] + ], "translation": "Importando desde Trello" }, "g2xBxu": { "message": "Importing your Trello boards into Kan is easy. You can follow our step-by-step guide <0>here.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 49]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 49 + ] + ], "translation": "Importar tus tableros de Trello a Kan es fácil. Puedes seguir nuestra guía paso a paso <0>aquí." }, "02i3WU": { @@ -3351,7 +5676,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 313] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 313 + ] ], "translation": "Importaciones" }, @@ -3359,7 +5687,12 @@ "message": "in", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 167]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 167 + ] + ], "translation": "en" }, "WbTDwg": { @@ -3367,11 +5700,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 58] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 58 + ] ], "translation": "En progreso" }, @@ -3379,14 +5727,24 @@ "message": "Inactive", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 106]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] + ], "translation": "Inactivo" }, "6mbe4b": { "message": "Individuals", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 28]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 28 + ] + ], "translation": "Individuales" }, "nbfdhU": { @@ -3394,8 +5752,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 77], - ["src/views/home/components/Features.tsx", 121] + [ + "src/components/SettingsLayout.tsx", + 77 + ], + [ + "src/views/home/components/Features.tsx", + 121 + ] ], "translation": "Integraciones" }, @@ -3404,7 +5768,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 140] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 140 + ] ], "translation": "Búsqueda inteligente" }, @@ -3412,42 +5779,72 @@ "message": "Interviewing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 77]], - "translation": "Entrevistando" - }, - "XILg0L": { + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 77 + ] + ], + "translation": "Entrevistando" + }, + "XILg0L": { "message": "Invalid email address", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 51]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 51 + ] + ], "translation": "Dirección de correo electrónico no válida" }, "odFCYX": { "message": "Invalid invitation", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 105]], + "origin": [ + [ + "src/views/invite/index.tsx", + 105 + ] + ], "translation": "Invitación no válida" }, "MFKlMB": { "message": "Invite", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 306]], + "origin": [ + [ + "src/views/members/index.tsx", + 306 + ] + ], "translation": "Invitar" }, "KLJ4eD": { "message": "Invite link copied", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 209]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 209 + ] + ], "translation": "Enlace de invitación copiado" }, "mZGPxt": { "message": "Invite link copied to clipboard", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 210]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 210 + ] + ], "translation": "Enlace de invitación copiado al portapapeles" }, "D9ROdV": { @@ -3455,8 +5852,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 207], - ["src/views/pricing/components/PricingTiers.tsx", 58] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 207 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 58 + ] ], "translation": "Enlaces de invitación" }, @@ -3464,7 +5867,12 @@ "message": "Invite links require a Team or Pro subscription. Please upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 123]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 123 + ] + ], "translation": "Los enlaces de invitación requieren una suscripción Team o Pro. Por favor, actualiza tu espacio de trabajo." }, "+djOzj": { @@ -3472,8 +5880,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 115], - ["src/views/members/components/InviteMemberForm.tsx", 367] + [ + "src/views/card/components/MemberSelector.tsx", + 115 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 367 + ] ], "translation": "Invitar miembro" }, @@ -3481,7 +5895,12 @@ "message": "Inviting members requires a Team Plan. You'll be redirected to upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 336]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 336 + ] + ], "translation": "Invitar miembros requiere un plan Team. Serás redirigido para actualizar tu espacio de trabajo." }, "c9AJhn": { @@ -3489,8 +5908,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/invite/index.tsx", 79], - ["src/views/invite/index.tsx", 129] + [ + "src/views/invite/index.tsx", + 79 + ], + [ + "src/views/invite/index.tsx", + 129 + ] ], "translation": "Unirse al espacio de trabajo" }, @@ -3498,28 +5923,48 @@ "message": "Join workspace | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 91]], + "origin": [ + [ + "src/views/invite/index.tsx", + 91 + ] + ], "translation": "Unirse al espacio de trabajo | kan.bn" }, "wM8xd8": { "message": "Junior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Junior" }, "aWDhU5": { "message": "Kanban is better with a team. Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 51]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 51 + ] + ], "translation": "Kanban es mejor en equipo. Perfecto para equipos pequeños y en crecimiento que buscan colaborar." }, "Xjj/kS": { "message": "Kanban reimagined", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 136]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 136 + ] + ], "translation": "Kanban reinventado" }, "JbXXUW": { @@ -3527,8 +5972,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 57], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 67] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 57 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 67 + ] ], "translation": "Ten en cuenta que esta acción es irreversible." }, @@ -3536,7 +5987,12 @@ "message": "Keyboard Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 321]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 321 + ] + ], "translation": "Atajos de teclado" }, "h8DugX": { @@ -3544,10 +6000,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextLabelsModal.tsx", 31], - ["src/views/board/components/Filters.tsx", 155], - ["src/views/board/components/NewCardForm.tsx", 421], - ["src/views/card/index.tsx", 133] + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 31 + ], + [ + "src/views/board/components/Filters.tsx", + 155 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 421 + ], + [ + "src/views/card/index.tsx", + 135 + ] ], "translation": "Etiquetas" }, @@ -3556,7 +6024,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 124] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 124 + ] ], "translation": "Etiquetas y filtros" }, @@ -3564,21 +6035,36 @@ "message": "Labels & Filters", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 100]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 100 + ] + ], "translation": "Etiquetas y filtros" }, "vXIe7J": { "message": "Language", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 50]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 50 + ] + ], "translation": "Idioma" }, "k7rCa/": { "message": "Large", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 9]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 9 + ] + ], "translation": "Grande" }, "8Is1ih": { @@ -3586,9 +6072,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 300], - ["src/views/pricing/components/PricingTiers.tsx", 159], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 71] + [ + "src/components/NewWorkspaceForm.tsx", + 300 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 159 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 71 + ] ], "translation": "Oferta de lanzamiento" }, @@ -3596,49 +6091,84 @@ "message": "Launch offer: Get unlimited members with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 276]], + "origin": [ + [ + "src/views/members/index.tsx", + 276 + ] + ], "translation": "Oferta de lanzamiento: obtén miembros ilimitados con Pro" }, "sDuhfK": { "message": "Launch offer: unlimited seats for just $29/month with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 98 + ] + ], "translation": "Oferta de lanzamiento: asientos ilimitados por solo $29/mes con Pro" }, "zwWKhA": { "message": "Learn more", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 110]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 110 + ] + ], "translation": "Más información" }, "wqxglO": { "message": "Learning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Aprendizaje" }, "vifyyw": { "message": "Legal", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 131]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 131 + ] + ], "translation": "Legal" }, "iQmbPb": { "message": "License", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 45]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 45 + ] + ], "translation": "Licencia" }, "1njn7W": { "message": "Light", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 172]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 172 + ] + ], "translation": "Claro" }, "TCt/8K": { @@ -3646,7 +6176,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 238] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 238 + ] ], "translation": "Acceso limitado a la API" }, @@ -3655,11 +6188,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 80], - ["src/views/board/index.tsx", 306], - ["src/views/card/components/Dropdown.tsx", 42], - ["src/views/public/board/CardModal.tsx", 36], - ["src/views/public/board/index.tsx", 77] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 80 + ], + [ + "src/views/board/index.tsx", + 310 + ], + [ + "src/views/card/components/Dropdown.tsx", + 42 + ], + [ + "src/views/public/board/CardModal.tsx", + 36 + ], + [ + "src/views/public/board/index.tsx", + 77 + ] ], "translation": "Enlace copiado" }, @@ -3668,8 +6216,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 117], - ["src/views/card/index.tsx", 124] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 117 + ], + [ + "src/views/card/index.tsx", + 126 + ] ], "translation": "Lista" }, @@ -3677,21 +6231,36 @@ "message": "List name", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 129]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 129 + ] + ], "translation": "Nombre de la lista" }, "h16FyT": { "message": "Lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 163]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 163 + ] + ], "translation": "Listas" }, "1rVAfU": { "message": "Load more activities", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Cargar más actividades" }, "0qyZ4b": { @@ -3699,7 +6268,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 180] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 180 + ] ], "translation": "Cargando permisos..." }, @@ -3707,56 +6279,96 @@ "message": "Loading...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Cargando..." }, "N/bcWA": { "message": "Login | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 33]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 33 + ] + ], "translation": "Iniciar sesión | kan.bn" }, "nOhz3x": { "message": "Logout", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 227]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 227 + ] + ], "translation": "Cerrar sesión" }, "vuxdLS": { "message": "Long-term", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Largo plazo" }, "RHZu7R": { "message": "Loved by teams worldwide", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 236]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 236 + ] + ], "translation": "Amado por equipos en todo el mundo" }, "O9jVbx": { "message": "Low Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Prioridad baja" }, "JnWJXY": { "message": "magic link", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "enlace mágico" }, "DbZgsJ": { "message": "Make template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 91]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 91 + ] + ], "translation": "Crear plantilla" }, "hB02vO": { @@ -3764,46 +6376,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMembersModal.tsx", 51], - ["src/views/board/components/CardContextMenu.tsx", 38] + [ + "src/views/board/components/CardContextMembersModal.tsx", + 51 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 38 + ] ], "translation": "Gestionar miembros" }, + "onllUU": { + "message": "Mark all as read", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 155 + ] + ], + "translation": "" + }, "IDvohQ": { "message": "marked a checklist item as incomplete", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 138]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 138 + ] + ], "translation": "marcó un elemento de la lista de verificación como incompleto" }, "jl3aEJ": { "message": "marked checklist item <0>{0} as incomplete", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 258]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 258 + ] + ], "translation": "marcó el elemento de la lista de verificación <0>{0} como incompleto" }, "vo2a+a": { "message": "Marketing", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Marketing" }, "agPptk": { "message": "Medium", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 8]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 8 + ] + ], "translation": "Mediano" }, "W/Elkg": { "message": "Medium Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Prioridad media" }, "OvoEq7": { @@ -3811,9 +6468,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 55], - ["src/views/card/components/ActivityList.tsx", 88], - ["src/views/members/index.tsx", 202] + [ + "src/views/card/components/ActivityList.tsx", + 55 + ], + [ + "src/views/card/components/ActivityList.tsx", + 88 + ], + [ + "src/views/members/index.tsx", + 202 + ] ], "translation": "Miembro" }, @@ -3822,22 +6488,47 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 123], - ["src/views/board/components/Filters.tsx", 147], - ["src/views/board/components/NewCardForm.tsx", 379], - ["src/views/card/index.tsx", 143], - ["src/views/members/index.tsx", 263], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 81] + [ + "src/components/SideNavigation.tsx", + 124 + ], + [ + "src/views/board/components/Filters.tsx", + 147 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 379 + ], + [ + "src/views/card/index.tsx", + 145 + ], + [ + "src/views/members/index.tsx", + 263 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 81 + ] ], "translation": "Miembros" }, "9u5BOr": { "message": "Members | {0}", "placeholders": { - "0": ["workspace.name ?? t`Workspace`"] + "0": [ + "workspace.name ?? t`Workspace`" + ] }, "comments": [], - "origin": [["src/views/members/index.tsx", 258]], + "origin": [ + [ + "src/views/members/index.tsx", + 258 + ] + ], "translation": "Miembros | {0}" }, "/bZzdR": { @@ -3845,7 +6536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 183] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 183 + ] ], "translation": "Menciones" }, @@ -3854,7 +6548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 53 + ] ], "translation": "Lunes" }, @@ -3863,9 +6560,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 62], - ["src/views/pricing/components/Pricing.tsx", 14], - ["src/views/pricing/index.tsx", 20] + [ + "src/views/onboarding/select-plan/index.tsx", + 62 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 14 + ], + [ + "src/views/pricing/index.tsx", + 20 + ] ], "translation": "Mensual" }, @@ -3873,45 +6579,79 @@ "message": "monthly billing", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 159]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 159 + ] + ], "translation": "facturación mensual" }, "51UCsN": { "message": "Move to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 44]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 44 + ] + ], "translation": "Mover a otra lista" }, "J4+OTA": { "message": "Move to list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 70]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 70 + ] + ], "translation": "Mover a lista" }, "BOqTi5": { "message": "moved the card from <0>{0} to<1>{1}", "placeholders": { - "0": ["truncate(fromList)"], - "1": ["truncate(toList)"] + "0": [ + "truncate(fromList)" + ], + "1": [ + "truncate(toList)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 160]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 160 + ] + ], "translation": "movió la tarjeta de <0>{0} a <1>{1}" }, "T7LJic": { "message": "moved the card to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 127]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 127 + ] + ], "translation": "movió la tarjeta a otra lista" }, "uEGGDs": { "message": "My webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 209]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 209 + ] + ], "translation": "Mi webhook" }, "6YtxFj": { @@ -3919,11 +6659,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 135], - ["src/views/board/components/NewTemplateForm.tsx", 118], - ["src/views/boards/components/NewBoardForm.tsx", 134], - ["src/views/settings/components/NewWebhookModal.tsx", 205], - ["src/views/settings/components/WebhookList.tsx", 212] + [ + "src/components/LabelForm.tsx", + 135 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 118 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 134 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 205 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 212 + ] ], "translation": "Nombre" }, @@ -3931,14 +6686,24 @@ "message": "Navigation", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 55]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 55 + ] + ], "translation": "Navegación" }, "HBI6nY": { "message": "Need help?", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 95]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 95 + ] + ], "translation": "¿Necesitas ayuda?" }, "isRobC": { @@ -3946,53 +6711,115 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 95], - ["src/views/home/components/Features.tsx", 73] + [ + "src/views/boards/index.tsx", + 95 + ], + [ + "src/views/home/components/Features.tsx", + 73 + ] ], "translation": "Nuevo" }, "6WSYbN": { "message": "New {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 120]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 120 + ] + ], "translation": "Nuevo {0}" }, "TjREUS": { "message": "New API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 147]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 147 + ] + ], "translation": "Nueva clave API" }, "pnrmSP": { "message": "New card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 304]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 304 + ] + ], "translation": "Nueva tarjeta" }, "cWcxrL": { "message": "New checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 103]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 103 + ] + ], "translation": "Nueva lista de verificación" }, + "7Qqqyu": { + "message": "New comment on", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 49 + ] + ], + "translation": "" + }, + "K4xHKu": { + "message": "New comment on a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 50 + ] + ], + "translation": "" + }, "WYwN1G": { "message": "New import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 513]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 513 + ] + ], "translation": "Nueva importación" }, "n1GRql": { "message": "New label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Nueva etiqueta" }, "Sb2gYF": { @@ -4000,17 +6827,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewListForm.tsx", 113], - ["src/views/board/index.tsx", 620] + [ + "src/views/board/components/NewListForm.tsx", + 113 + ], + [ + "src/views/board/index.tsx", + 624 + ] ], "translation": "Nueva lista" }, + "pM1sn/": { + "message": "New notification", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 56 + ] + ], + "translation": "" + }, "+MdEsf": { "message": "New password is required", "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 23] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 23 + ] ], "translation": "Se requiere una nueva contraseña" }, @@ -4019,7 +6867,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 31] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 31 + ] ], "translation": "La nueva contraseña debe ser diferente de la contraseña actual" }, @@ -4027,151 +6878,292 @@ "message": "New template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 104]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 104 + ] + ], "translation": "Nueva plantilla" }, "RJA+sg": { "message": "New Ticket", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 56]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 56 + ] + ], "translation": "Nuevo ticket" }, "sbNNyi": { "message": "New webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Nuevo webhook" }, "curoK5": { "message": "New workspace", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 208]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 208 + ] + ], "translation": "Nuevo espacio de trabajo" }, "5ACX4z": { "message": "Newsletter", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Newsletter" }, "HeFWjW": { "message": "Next Steps", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 93]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 93 + ] + ], "translation": "Próximos pasos" }, "/glL9Q": { "message": "No {0}", "placeholders": { - "0": ["isTemplate ? \"templates\" : \"boards\""] + "0": [ + "isTemplate ? \"templates\" : \"boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "No hay {0}" }, "tlhgDC": { "message": "No archived boards", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "No hay tableros archivados" }, "Eg99Sc": { "message": "No authentication methods are currently available", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 369]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 369 + ] + ], "translation": "No hay métodos de autenticación disponibles actualmente" }, "2Bu8xj": { "message": "No boards found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 432]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 432 + ] + ], "translation": "No se encontraron tableros" }, "OpNhRn": { "message": "No credit card required", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 85]], + "origin": [ + [ + "src/views/home/index.tsx", + 85 + ] + ], "translation": "No se requiere tarjeta de crédito" }, "MK16u2": { "message": "No dates", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 137]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 137 + ] + ], "translation": "Sin fechas" }, "sY2lzr": { "message": "No download URL available for this attachment.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 143]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 143 + ] + ], "translation": "No hay URL de descarga disponible para este adjunto." }, "TXO5TM": { "message": "No keyboard shortcuts registered.", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 334]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 334 + ] + ], "translation": "No hay atajos de teclado registrados." }, "hXMFoN": { "message": "No lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 652]], + "origin": [ + [ + "src/views/board/index.tsx", + 657 + ] + ], "translation": "Sin listas" }, "fvLNDy": { "message": "No lists have been created yet", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 657]], + "origin": [ + [ + "src/views/board/index.tsx", + 662 + ] + ], "translation": "Aún no se han creado listas" }, + "HbXReU": { + "message": "No notifications yet", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 192 + ] + ], + "translation": "" + }, "i30J2U": { "message": "No projects found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 283]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 283 + ] + ], "translation": "No se encontraron proyectos" }, "ERpq2P": { "message": "No results found for \"{debouncedQuery}\".", "placeholders": { - "debouncedQuery": ["debouncedQuery"] + "debouncedQuery": [ + "debouncedQuery" + ] }, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 183]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 183 + ] + ], "translation": "No se encontraron resultados para \"{debouncedQuery}\"." }, "Q9pQaX": { "message": "No roles found for this workspace yet.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 110]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 110 + ] + ], "translation": "Aún no se encontraron roles para este espacio de trabajo." }, "TX0bT7": { "message": "No webhooks configured. Add a webhook to receive notifications.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 194]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 194 + ] + ], "translation": "No hay webhooks configurados. Agregue un webhook para recibir notificaciones." }, + "iDNBZe": { + "message": "Notifications", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 119 + ], + [ + "src/components/NotificationBell.tsx", + 131 + ], + [ + "src/components/NotificationBell.tsx", + 147 + ] + ], + "translation": "" + }, "9h7RDh": { "message": "Offer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 78]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 78 + ] + ], "translation": "Oferta" }, "QnzD50": { @@ -4179,7 +7171,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 245] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 245 + ] ], "translation": "On-premise" }, @@ -4187,42 +7182,72 @@ "message": "On-premise deployment option", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 106]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 106 + ] + ], "translation": "Opción de despliegue on-premise" }, "gukxZ5": { "message": "Onboarding", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 79]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 79 + ] + ], "translation": "Onboarding" }, "usVytm": { "message": "Once you delete your account, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 73]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 73 + ] + ], "translation": "Una vez que elimines tu cuenta, no hay vuelta atrás. Esta acción no se puede deshacer." }, "dmKdk0": { "message": "Once you delete your workspace, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 128]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 128 + ] + ], "translation": "Una vez que elimines tu espacio de trabajo, no hay vuelta atrás. Esta acción no se puede deshacer." }, "69b7aE": { "message": "Open command menu", "placeholders": {}, "comments": [], - "origin": [["src/components/WorkspaceMenu.tsx", 34]], + "origin": [ + [ + "src/components/WorkspaceMenu.tsx", + 34 + ] + ], "translation": "Abrir menú de comandos" }, "cFQEU/": { "message": "Open keyboard shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 172]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 172 + ] + ], "translation": "Abrir atajos de teclado" }, "v+Wp++": { @@ -4230,7 +7255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 229] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 229 + ] ], "translation": "Código abierto" }, @@ -4238,21 +7266,36 @@ "message": "Open Source Friends", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 58]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 58 + ] + ], "translation": "Amigos de código abierto" }, "BzEFor": { "message": "or", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 380]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 380 + ] + ], "translation": "o" }, "ZqDqbi": { "message": "Organize and find cards quickly with powerful filtering tools.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 101]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 101 + ] + ], "translation": "Organiza y encuentra tarjetas rápidamente con potentes herramientas de filtrado." }, "Un80BR": { @@ -4260,8 +7303,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 39], - ["src/views/oss-friends/index.tsx", 52] + [ + "src/views/home/components/Footer.tsx", + 39 + ], + [ + "src/views/oss-friends/index.tsx", + 52 + ] ], "translation": "Amigos OSS" }, @@ -4269,35 +7318,60 @@ "message": "Overdue", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 112]], - "translation": "Atrasado" - }, - "P6dJdq": { + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 112 + ] + ], + "translation": "Atrasado" + }, + "P6dJdq": { "message": "Overrides cleared", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 25 + ] + ], "translation": "Anulaciones eliminadas" }, "SPLN9O": { "message": "Own your data", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 73]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 73 + ] + ], "translation": "Tus datos te pertenecen" }, "8F1i42": { "message": "Page not found", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 24]], + "origin": [ + [ + "src/pages/404.tsx", + 24 + ] + ], "translation": "Página no encontrada" }, "Uworke": { "message": "Part-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Tiempo parcial" }, "IrZaAn": { @@ -4305,7 +7379,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 69] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 69 + ] ], "translation": "Contraseña cambiada" }, @@ -4313,14 +7390,24 @@ "message": "Password is required to login.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 258]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 258 + ] + ], "translation": "Se requiere contraseña para iniciar sesión." }, "tTbref": { "message": "Password is required to sign up.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 257]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 257 + ] + ], "translation": "Se requiere contraseña para registrarse." }, "vwGkYB": { @@ -4328,7 +7415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 22] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 22 + ] ], "translation": "La contraseña debe tener al menos 8 caracteres" }, @@ -4337,7 +7427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 27] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 27 + ] ], "translation": "Las contraseñas no coinciden" }, @@ -4345,7 +7438,12 @@ "message": "Paused", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "Pausado" }, "UbYdrA": { @@ -4353,8 +7451,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 120] + [ + "src/views/pricing/components/Pricing.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 120 + ] ], "translation": "Frecuencia de pago" }, @@ -4362,7 +7466,12 @@ "message": "Pending", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "Pendiente" }, "oVBq1w": { @@ -4370,10 +7479,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 15], - ["src/views/pricing/components/Pricing.tsx", 20], - ["src/views/pricing/index.tsx", 21], - ["src/views/pricing/index.tsx", 26] + [ + "src/views/pricing/components/Pricing.tsx", + 15 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 20 + ], + [ + "src/views/pricing/index.tsx", + 21 + ], + [ + "src/views/pricing/index.tsx", + 26 + ] ], "translation": "por usuario/mes" }, @@ -4381,28 +7502,48 @@ "message": "Per-seat pricing", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 83]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 83 + ] + ], "translation": "Precio por usuario" }, "mrhyIB": { "message": "Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 52 + ] + ], "translation": "Perfecto para equipos pequeños y en crecimiento que buscan colaborar." }, "TH3Irz": { "message": "Permission", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 119]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 119 + ] + ], "translation": "Permiso" }, "9cDpsw": { "message": "Permissions", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 53]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 53 + ] + ], "translation": "Permisos" }, "Jgaz7E": { @@ -4410,7 +7551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 80] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 80 + ] ], "translation": "Permisos restablecidos" }, @@ -4419,8 +7563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 34], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 57] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 34 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 57 + ] ], "translation": "Permisos actualizados" }, @@ -4428,14 +7578,24 @@ "message": "Personal Project", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 86]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 86 + ] + ], "translation": "Proyecto personal" }, "Oi+J+N": { "message": "Pick a plan to get started. All paid plans include a 14-day free trial.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 125]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 125 + ] + ], "translation": "Elige un plan para comenzar. Todos los planes de pago incluyen una prueba gratuita de 14 días." }, "Iqh0Uv": { @@ -4443,8 +7603,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Planificado" }, @@ -4452,7 +7618,12 @@ "message": "Planning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 90]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 90 + ] + ], "translation": "Planificación" }, "F3bW6y": { @@ -4460,7 +7631,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 317] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 317 + ] ], "translation": "Plataforma" }, @@ -4469,7 +7643,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 24] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 24 + ] ], "translation": "Por favor, confirma tu nueva contraseña" }, @@ -4477,28 +7654,48 @@ "message": "Please enter a valid email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 406]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 406 + ] + ], "translation": "Por favor, introduce una dirección de correo electrónico válida" }, "CJ3zUq": { "message": "Please enter a valid name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 394]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 394 + ] + ], "translation": "Por favor, introduce un nombre válido" }, "7b2yuC": { "message": "Please enter a valid password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 421]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 421 + ] + ], "translation": "Por favor, introduce una contraseña válida" }, "jEw0Mr": { "message": "Please enter a valid URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 24 + ] + ], "translation": "Por favor, ingrese una URL válida" }, "tmlJN1": { @@ -4506,8 +7703,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 58], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 98] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 58 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 98 + ] ], "translation": "Por favor, introduce una URL de YouTube válida" }, @@ -4515,7 +7718,12 @@ "message": "Please select a file to upload.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 70]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 70 + ] + ], "translation": "Por favor, selecciona un archivo para subir." }, "tyHiOa": { @@ -4523,56 +7731,206 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 26], - ["src/components/FeedbackModal.tsx", 41], - ["src/components/NewWorkspaceForm.tsx", 123], - ["src/views/board/components/BoardDropdown.tsx", 65], - ["src/views/board/components/NewCardForm.tsx", 186], - ["src/views/board/components/NewListForm.tsx", 79], - ["src/views/board/components/NewTemplateForm.tsx", 61], - ["src/views/board/components/NewTemplateForm.tsx", 77], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 73], - ["src/views/board/components/VisibilityButton.tsx", 57], - ["src/views/board/index.tsx", 218], - ["src/views/board/index.tsx", 274], - ["src/views/boards/components/ImportBoardsForm.tsx", 243], - ["src/views/boards/components/ImportBoardsForm.tsx", 395], - ["src/views/card/components/AttachmentThumbnails.tsx", 74], - ["src/views/card/components/ChecklistItemRow.tsx", 67], - ["src/views/card/components/ChecklistItemRow.tsx", 95], - ["src/views/card/components/ChecklistNameInput.tsx", 47], - ["src/views/card/components/Checklists.tsx", 81], - ["src/views/card/components/Comment.tsx", 93], - ["src/views/card/components/DeleteCardConfirmation.tsx", 52], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 38], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 46], - ["src/views/card/components/DueDateSelector.tsx", 64], - ["src/views/card/components/LabelSelector.tsx", 75], - ["src/views/card/components/ListSelector.tsx", 55], - ["src/views/card/components/MemberSelector.tsx", 82], - ["src/views/card/components/NewChecklistForm.tsx", 71], - ["src/views/card/components/NewChecklistItemForm.tsx", 90], - ["src/views/card/components/NewCommentForm.tsx", 37], - ["src/views/card/index.tsx", 232], - ["src/views/card/index.tsx", 245], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 28], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 42], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 65], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 93], - ["src/views/members/components/InviteMemberForm.tsx", 104], - ["src/views/members/components/InviteMemberForm.tsx", 241], - ["src/views/members/index.tsx", 66], - ["src/views/onboarding/workspace-details/index.tsx", 101], - ["src/views/onboarding/workspace-details/index.tsx", 150], - ["src/views/settings/components/Avatar.tsx", 200], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 40], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 46], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 55], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 44], - ["src/views/settings/PermissionsSettings.tsx", 40] + [ + "src/components/DeleteLabelConfirmation.tsx", + 26 + ], + [ + "src/components/FeedbackModal.tsx", + 41 + ], + [ + "src/components/NewWorkspaceForm.tsx", + 123 + ], + [ + "src/views/board/components/BoardDropdown.tsx", + 65 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 186 + ], + [ + "src/views/board/components/NewListForm.tsx", + 79 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 61 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 77 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 73 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 57 + ], + [ + "src/views/board/index.tsx", + 222 + ], + [ + "src/views/board/index.tsx", + 278 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 243 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 395 + ], + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 74 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 68 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 96 + ], + [ + "src/views/card/components/ChecklistNameInput.tsx", + 47 + ], + [ + "src/views/card/components/Checklists.tsx", + 81 + ], + [ + "src/views/card/components/Comment.tsx", + 93 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 52 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 38 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 46 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 64 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 75 + ], + [ + "src/views/card/components/ListSelector.tsx", + 55 + ], + [ + "src/views/card/components/MemberSelector.tsx", + 82 + ], + [ + "src/views/card/components/NewChecklistForm.tsx", + 71 + ], + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 90 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 37 + ], + [ + "src/views/card/index.tsx", + 274 + ], + [ + "src/views/card/index.tsx", + 287 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 28 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 42 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 65 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 93 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 104 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 241 + ], + [ + "src/views/members/index.tsx", + 66 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 101 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 150 + ], + [ + "src/views/settings/components/Avatar.tsx", + 200 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 40 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 46 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 55 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 64 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 59 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 76 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 44 + ], + [ + "src/views/settings/PermissionsSettings.tsx", + 40 + ] ], "translation": "Por favor, inténtalo de nuevo más tarde o contacta con atención al cliente." }, @@ -4581,8 +7939,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 129], - ["src/views/members/components/InviteMemberForm.tsx", 145] + [ + "src/views/members/components/InviteMemberForm.tsx", + 129 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 145 + ] ], "translation": "Por favor, inténtalo de nuevo más tarde." }, @@ -4591,12 +7955,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 76], - ["src/views/board/components/CardContextMoveListModal.tsx", 42], - ["src/views/board/index.tsx", 315], - ["src/views/card/components/Dropdown.tsx", 51], - ["src/views/public/board/CardModal.tsx", 45], - ["src/views/public/board/index.tsx", 86] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 76 + ], + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 42 + ], + [ + "src/views/board/index.tsx", + 319 + ], + [ + "src/views/card/components/Dropdown.tsx", + 51 + ], + [ + "src/views/public/board/CardModal.tsx", + 45 + ], + [ + "src/views/public/board/index.tsx", + 86 + ] ], "translation": "Por favor, inténtalo de nuevo." }, @@ -4605,7 +7987,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 193] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 193 + ] ], "translation": "Posición en la lista (0 = primero, dejar vacío para el final)" }, @@ -4614,12 +7999,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 51], - ["src/views/home/components/Header.tsx", 18], - ["src/views/home/components/Header.tsx", 34], - ["src/views/pricing/components/Pricing.tsx", 85], - ["src/views/pricing/index.tsx", 34], - ["src/views/pricing/index.tsx", 40] + [ + "src/views/home/components/Footer.tsx", + 51 + ], + [ + "src/views/home/components/Header.tsx", + 18 + ], + [ + "src/views/home/components/Header.tsx", + 34 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 85 + ], + [ + "src/views/pricing/index.tsx", + 34 + ], + [ + "src/views/pricing/index.tsx", + 40 + ] ], "translation": "Precios" }, @@ -4628,10 +8031,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 275], - ["src/views/pricing/components/Pricing.tsx", 56], - ["src/views/pricing/components/PricingTiers.tsx", 61], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 95] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 275 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 56 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 61 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 95 + ] ], "translation": "Soporte prioritario por correo electrónico" }, @@ -4639,14 +8054,24 @@ "message": "Privacy policy", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 43]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 43 + ] + ], "translation": "Política de privacidad" }, "zwBp5t": { "message": "Private", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 84]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 84 + ] + ], "translation": "Privado" }, "3fPjUY": { @@ -4654,9 +8079,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 333], - ["src/views/pricing/components/PricingTiers.tsx", 70] + [ + "src/views/onboarding/select-plan/index.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 333 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 70 + ] ], "translation": "Pro" }, @@ -4664,84 +8098,156 @@ "message": "Pro Plan", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 290]], + "origin": [ + [ + "src/views/members/index.tsx", + 290 + ] + ], "translation": "Plan Pro" }, "Qtzfdk": { "message": "Pro Plan ∞", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 322]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ] + ], "translation": "Plan Pro ∞" }, "0rPv1T": { "message": "Profile image updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 189]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 189 + ] + ], "translation": "Imagen de perfil actualizada" }, "4XF0BB": { "message": "Profile picture", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 30 + ] + ], "translation": "Foto de perfil" }, "7d1a0d": { "message": "Public", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 79]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 79 + ] + ], "translation": "Público" }, "ABCjd9": { "message": "Publishing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 47]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 47 + ] + ], "translation": "Publicación" }, "bfgr/e": { "message": "Question", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 66 + ] + ], "translation": "Pregunta" }, "1H5u1m": { "message": "Questions?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 147]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 147 + ] + ], "translation": "¿Preguntas?" }, "kfOGMr": { "message": "Quick Win", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Victoria rápida" }, + "09Tv5j": { + "message": "Reconnecting…", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/ConnectionStatus.tsx", + 30 + ] + ], + "translation": "" + }, "6EWT6T": { "message": "Recruitment", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 73]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 73 + ] + ], "translation": "Reclutamiento" }, "ekCRTP": { "message": "Rejected", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "Rechazado" }, "qlAIQ1": { "message": "Remote", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Remoto" }, "t/YqKh": { @@ -4749,7 +8255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 58] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 58 + ] ], "translation": "Eliminar" }, @@ -4757,70 +8266,123 @@ "message": "Remove from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 121]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 121 + ] + ], "translation": "Eliminar de favoritos" }, "99VIgC": { "message": "Remove member", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 233]], + "origin": [ + [ + "src/views/members/index.tsx", + 233 + ] + ], "translation": "Eliminar miembro" }, "BZkYSt": { "message": "removed {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 116]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 116 + ] + ], "translation": "eliminó {0} etiquetas: <0>{labelList}" }, "kQwvU8": { "message": "removed a label from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 129]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 129 + ] + ], "translation": "eliminó una etiqueta de la tarjeta" }, "uck1tz": { "message": "removed a member from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 131]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 131 + ] + ], "translation": "eliminó un miembro de la tarjeta" }, "KEim/+": { "message": "removed an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 141]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 141 + ] + ], "translation": "eliminó un adjunto" }, "zwTiVn": { "message": "removed an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 288]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 288 + ] + ], "translation": "eliminó un adjunto <0>{0}" }, "Qh7QmR": { "message": "Removed from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 54]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 54 + ] + ], "translation": "Eliminado de favoritos" }, "YVT40D": { "message": "removed label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 200]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 200 + ] + ], "translation": "eliminó la etiqueta <0>{0}" }, "aHRWVI": { @@ -4828,8 +8390,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 144], - ["src/views/card/components/ActivityList.tsx", 324] + [ + "src/views/card/components/ActivityList.tsx", + 144 + ], + [ + "src/views/card/components/ActivityList.tsx", + 324 + ] ], "translation": "eliminó la fecha de vencimiento" }, @@ -4837,25 +8405,44 @@ "message": "renamed a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 133]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 133 + ] + ], "translation": "renombró una lista de verificación" }, "3ZjRJY": { "message": "renamed checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 216]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 216 + ] + ], "translation": "renombró la lista de verificación <0>{0}" }, "NH54UR": { "message": "renamed checklist item to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 240]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 240 + ] + ], "translation": "renombró el elemento de la lista de verificación a <0>{0}" }, "Yx0Ud8": { @@ -4863,8 +8450,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Solicitado" }, @@ -4872,7 +8465,12 @@ "message": "Research", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 89]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 89 + ] + ], "translation": "Investigación" }, "e4hPSt": { @@ -4880,7 +8478,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 245] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 245 + ] ], "translation": "Restablecer a valores predeterminados del rol" }, @@ -4888,21 +8489,36 @@ "message": "Resolution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 60]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 60 + ] + ], "translation": "Resolución" }, "s+MGs7": { "message": "Resources", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 114 + ] + ], "translation": "Recursos" }, "5k0NLb": { "message": "Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 92]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 92 + ] + ], "translation": "Revisar" }, "/gaSVU": { @@ -4910,10 +8526,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 36], - ["src/views/home/components/Header.tsx", 13], - ["src/views/home/components/Header.tsx", 28], - ["src/views/onboarding/workspace-details/index.tsx", 161] + [ + "src/views/home/components/Footer.tsx", + 36 + ], + [ + "src/views/home/components/Header.tsx", + 13 + ], + [ + "src/views/home/components/Header.tsx", + 28 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] ], "translation": "Hoja de ruta" }, @@ -4921,14 +8549,24 @@ "message": "Role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 328]], + "origin": [ + [ + "src/views/members/index.tsx", + 328 + ] + ], "translation": "Rol" }, "jQ6I8X": { "message": "Role updated", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 58]], + "origin": [ + [ + "src/views/members/index.tsx", + 58 + ] + ], "translation": "Rol actualizado" }, "RzxgOE": { @@ -4936,7 +8574,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 164] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 164 + ] ], "translation": "Roles y permisos" }, @@ -4944,14 +8585,24 @@ "message": "Run on your own infrastructure", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 72]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 72 + ] + ], "translation": "Ejecutar en tu propia infraestructura" }, "YEOVrT": { "message": "SAML SSO", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 102]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 102 + ] + ], "translation": "SAML SSO" }, "+5kO8P": { @@ -4959,7 +8610,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 54 + ] ], "translation": "Sábado" }, @@ -4968,9 +8622,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 183], - ["src/views/card/components/Comment.tsx", 202], - ["src/views/settings/components/Avatar.tsx", 290] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 183 + ], + [ + "src/views/card/components/Comment.tsx", + 202 + ], + [ + "src/views/settings/components/Avatar.tsx", + 290 + ] ], "translation": "Guardar" }, @@ -4978,42 +8641,72 @@ "message": "Save changes", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Guardar cambios" }, "MdwUGG": { "message": "Save time with reusable board templates.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 116]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 116 + ] + ], "translation": "Ahorra tiempo con plantillas de tableros reutilizables." }, "cOh+MI": { "message": "Screening", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 76]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 76 + ] + ], "translation": "Selección" }, "SkCNhl": { "message": "Search boards and cards...", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 104]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 104 + ] + ], "translation": "Buscar tableros y tarjetas..." }, "e1v+J3": { "message": "Secret (optional)", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 229]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 229 + ] + ], "translation": "Secreto (opcional)" }, "OkTY4+": { "message": "Secret cannot exceed 512 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 28]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 28 + ] + ], "translation": "El secreto no puede exceder los 512 caracteres" }, "a3LDKx": { @@ -5021,7 +8714,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 321] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 321 + ] ], "translation": "Seguridad" }, @@ -5029,7 +8725,12 @@ "message": "See what our users are saying about Kan", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 239]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 239 + ] + ], "translation": "Mira lo que nuestros usuarios dicen sobre Kan" }, "zYRVNp": { @@ -5037,7 +8738,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 131] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 131 + ] ], "translation": "Seleccionar una lista" }, @@ -5046,8 +8750,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 315], - ["src/views/boards/components/ImportBoardsForm.tsx", 464] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 315 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 464 + ] ], "translation": "Seleccionar todo" }, @@ -5055,56 +8765,96 @@ "message": "Select at least one event", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 32]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 32 + ] + ], "translation": "Seleccione al menos un evento" }, "rYUZIe": { "message": "Select source", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Seleccionar origen" }, "ppaRWv": { "message": "Self Host", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 64]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 64 + ] + ], "translation": "Autoalojamiento" }, "l2PIAy": { "message": "Self host with Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 81]], + "origin": [ + [ + "src/views/home/index.tsx", + 81 + ] + ], "translation": "Autoalojar con Github" }, "VXk54Y": { "message": "self-assigned the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 169 + ] + ], "translation": "se autoasignó la tarjeta" }, "RoafuO": { "message": "Send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 116]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 116 + ] + ], "translation": "Enviar comentarios" }, "eus61c": { "message": "Send test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 310]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 310 + ] + ], "translation": "Enviar prueba" }, "v3YoMA": { "message": "Senior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Senior" }, "8AbRER": { @@ -5112,9 +8862,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 20], - ["src/views/board/components/CardContextMenu.tsx", 56], - ["src/views/card/components/DueDateSelector.tsx", 121] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 20 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 56 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 121 + ] ], "translation": "Establecer fecha de vencimiento" }, @@ -5122,14 +8881,24 @@ "message": "set the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 142]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 142 + ] + ], "translation": "estableció la fecha de vencimiento" }, "JjEJSy": { "message": "Set up your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 179]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 179 + ] + ], "translation": "Configura tu espacio de trabajo" }, "Tz0i8g": { @@ -5137,8 +8906,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 102], - ["src/components/SideNavigation.tsx", 135] + [ + "src/components/SettingsLayout.tsx", + 102 + ], + [ + "src/components/SideNavigation.tsx", + 136 + ] ], "translation": "Configuración" }, @@ -5146,70 +8921,120 @@ "message": "Settings | Account", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 26 + ] + ], "translation": "Configuración | Cuenta" }, "iy1wb+": { "message": "Settings | API", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 18]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 18 + ] + ], "translation": "Configuración | API" }, "ADEin1": { "message": "Settings | Billing", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 35]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 35 + ] + ], "translation": "Configuración | Facturación" }, "hYzsXr": { "message": "Settings | Integrations", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 138]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 138 + ] + ], "translation": "Configuración | Integraciones" }, "F/FPk/": { "message": "Settings | Permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 49 + ] + ], "translation": "Configuración | Permisos" }, "+h2faV": { "message": "Settings | Webhooks", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 24]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 24 + ] + ], "translation": "Configuración | Webhooks" }, "Ci/KUX": { "message": "Settings | Workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 59]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 59 + ] + ], "translation": "Configuración | Espacio de trabajo" }, "CTqTgr": { "message": "Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 187]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 187 + ] + ], "translation": "Atajos" }, "5lWFkC": { "message": "Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 104]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 104 + ] + ], "translation": "Iniciar sesión" }, "n1ekoW": { "message": "Sign In", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 154]], + "origin": [ + [ + "src/views/invite/index.tsx", + 154 + ] + ], "translation": "Iniciar sesión" }, "fcWrnU": { @@ -5217,8 +9042,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 284], - ["src/views/onboarding/workspace-details/index.tsx", 362] + [ + "src/views/onboarding/select-plan/index.tsx", + 284 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 362 + ] ], "translation": "Cerrar sesión" }, @@ -5226,7 +9057,12 @@ "message": "Sign Up", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 162]], + "origin": [ + [ + "src/views/invite/index.tsx", + 162 + ] + ], "translation": "Registrarse" }, "sUZo7y": { @@ -5234,8 +9070,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 36], - ["src/views/auth/signup/index.tsx", 61] + [ + "src/views/auth/signup/index.tsx", + 36 + ], + [ + "src/views/auth/signup/index.tsx", + 61 + ] ], "translation": "Registrarse | kan.bn" }, @@ -5243,21 +9085,36 @@ "message": "Sign up disabled", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 46]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 46 + ] + ], "translation": "Registro deshabilitado" }, "s6iE/c": { "message": "Sign up is currently disabled. Please try again later.", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 49]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 49 + ] + ], "translation": "El registro está actualmente deshabilitado. Por favor, inténtalo de nuevo más tarde." }, "6FDocz": { "message": "Sign up with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "Registrarse con " }, "m2nk0i": { @@ -5265,8 +9122,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 89], - ["src/views/pricing/index.tsx", 44] + [ + "src/views/pricing/components/Pricing.tsx", + 89 + ], + [ + "src/views/pricing/index.tsx", + 44 + ] ], "translation": "Precios simples" }, @@ -5274,7 +9137,12 @@ "message": "Simple, visual task management that just works. Drag and drop cards, collaborate with your team, and get more done.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 139]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 139 + ] + ], "translation": "Gestión de tareas simple y visual que simplemente funciona. Arrastra y suelta tarjetas, colabora con tu equipo y haz más cosas." }, "zEcnBA": { @@ -5282,7 +9150,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 291] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 291 + ] ], "translation": "SLA" }, @@ -5290,28 +9161,48 @@ "message": "Small", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 7]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 7 + ] + ], "translation": "Pequeño" }, "++rVAm": { "message": "Social Media", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Redes sociales" }, "wIb7Ng": { "message": "Software Development", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 22 + ] + ], "translation": "Desarrollo de software" }, "6sKjjx": { "message": "Solo", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 76]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 76 + ] + ], "translation": "Individual" }, "vnS6Rf": { @@ -5319,7 +9210,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 256] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 256 + ] ], "translation": "SSO" }, @@ -5327,7 +9221,12 @@ "message": "Star on Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 37]], + "origin": [ + [ + "src/views/home/index.tsx", + 37 + ] + ], "translation": "Destacar en Github" }, "veIDCY": { @@ -5335,8 +9234,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 359], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 113] + [ + "src/views/members/components/InviteMemberForm.tsx", + 359 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 113 + ] ], "translation": "Iniciar prueba gratuita de 14 días" }, @@ -5344,21 +9249,36 @@ "message": "Start free. Upgrade as your team grows. No hidden fees, no contracts.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/index.tsx", 47]], + "origin": [ + [ + "src/views/pricing/index.tsx", + 47 + ] + ], "translation": "Comienza gratis. Actualiza a medida que tu equipo crece. Sin tarifas ocultas, sin contratos." }, "uAQUqI": { "message": "Status", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 230]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 230 + ] + ], "translation": "Estado" }, "WYDptz": { "message": "Subscription Required", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 122]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 122 + ] + ], "translation": "Suscripción requerida" }, "zzDlyQ": { @@ -5366,8 +9286,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/AuthForm.tsx", 215], - ["src/components/AuthForm.tsx", 232] + [ + "src/components/AuthForm.tsx", + 215 + ], + [ + "src/components/AuthForm.tsx", + 232 + ] ], "translation": "Éxito" }, @@ -5376,7 +9302,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 52 + ] ], "translation": "Domingo" }, @@ -5385,7 +9314,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 59] + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 59 + ] ], "translation": "Potencia tu espacio de trabajo por solo $29/mes. Esto es lo que obtendrás:" }, @@ -5394,8 +9326,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 198], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 325] + [ + "src/components/UserMenu.tsx", + 198 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 325 + ] ], "translation": "Soporte" }, @@ -5403,21 +9341,36 @@ "message": "Support the development of the project", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 57]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 57 + ] + ], "translation": "Apoya el desarrollo del proyecto" }, "D+NlUC": { "message": "System", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 144]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 144 + ] + ], "translation": "Sistema" }, "KM6m8p": { "message": "Team", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 83]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 83 + ] + ], "translation": "Equipo" }, "bff61F": { @@ -5425,8 +9378,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 322], - ["src/views/members/index.tsx", 292] + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ], + [ + "src/views/members/index.tsx", + 292 + ] ], "translation": "Plan de equipo" }, @@ -5435,9 +9394,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 332], - ["src/views/pricing/components/Pricing.tsx", 46], - ["src/views/pricing/components/PricingTiers.tsx", 47] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 332 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 46 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 47 + ] ], "translation": "Equipos" }, @@ -5446,8 +9414,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/board/index.tsx", 566] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/board/index.tsx", + 570 + ] ], "translation": "Plantilla" }, @@ -5455,28 +9429,48 @@ "message": "Template created", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 67]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 67 + ] + ], "translation": "Plantilla creada" }, "QHhZeE": { "message": "Template created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 68]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 68 + ] + ], "translation": "Plantilla creada correctamente" }, "notwF1": { "message": "Template name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 19]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 19 + ] + ], "translation": "El nombre de la plantilla no puede superar los 100 caracteres" }, "6OTo9n": { "message": "Template name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 18]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 18 + ] + ], "translation": "El nombre de la plantilla es obligatorio" }, "iTylMl": { @@ -5484,8 +9478,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 111], - ["src/views/home/components/Features.tsx", 115] + [ + "src/components/SideNavigation.tsx", + 112 + ], + [ + "src/views/home/components/Features.tsx", + 115 + ] ], "translation": "Plantillas" }, @@ -5493,14 +9493,24 @@ "message": "Terms of service", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 42]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 42 + ] + ], "translation": "Términos de servicio" }, "NnH3pK": { "message": "Test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 136]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 136 + ] + ], "translation": "Prueba" }, "itgYbC": { @@ -5508,8 +9518,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 132], - ["src/views/settings/components/WebhookList.tsx", 174] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 132 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 174 + ] ], "translation": "¡Webhook de prueba enviado correctamente!" }, @@ -5517,28 +9533,48 @@ "message": "Testimonials", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 232]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 232 + ] + ], "translation": "Testimonios" }, "nhMhRr": { "message": "Thank you for your feedback!", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 34]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 34 + ] + ], "translation": "¡Gracias por tus comentarios!" }, "NcFrgC": { "message": "The board has been archived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 46]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 46 + ] + ], "translation": "El tablero ha sido archivado." }, "C6gv54": { "message": "The board has been unarchived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 47]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 47 + ] + ], "translation": "El tablero ha sido desarchivado." }, "nKBUeF": { @@ -5546,7 +9582,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 69] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 69 + ] ], "translation": "La tarjeta ha sido duplicada." }, @@ -5555,7 +9594,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 84] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 84 + ] ], "translation": "La contraseña actual que ingresaste es incorrecta." }, @@ -5563,7 +9605,12 @@ "message": "The main difference between Kan and Trello is that Kan is open source, allowing anyone to view, modify, and contribute to our code. Our cloud offering also offers no restrictions on features for individual use, whereas Trello locks basic features such as the number of boards you can create behind a paywall.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 33]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 33 + ] + ], "translation": "La principal diferencia entre Kan y Trello es que Kan es de código abierto, lo que permite a cualquiera ver, modificar y contribuir a nuestro código. Nuestra oferta en la nube tampoco ofrece restricciones en las funciones para uso individual, mientras que Trello bloquea funciones básicas como el número de tableros que puedes crear detrás de un muro de pago." }, "6tDFBe": { @@ -5571,8 +9618,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 35], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 58] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 35 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 58 + ] ], "translation": "Los permisos del miembro se han actualizado." }, @@ -5580,37 +9633,64 @@ "message": "The member's role has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 59]], + "origin": [ + [ + "src/views/members/index.tsx", + 59 + ] + ], "translation": "El rol del miembro se ha actualizado." }, "gUX7b+": { "message": "The open source <0/> alternative to Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 65]], + "origin": [ + [ + "src/views/home/index.tsx", + 65 + ] + ], "translation": "La alternativa de código abierto <0/> a Trello" }, "0xD8Of": { "message": "The page you're looking for doesn't exist or has been moved.", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 29]], + "origin": [ + [ + "src/pages/404.tsx", + 29 + ] + ], "translation": "La página que buscas no existe o ha sido movida." }, "fQCrjt": { "message": "The visibility of your board has been set to {0}.", "placeholders": { - "0": ["isPublic ? \"public\" : \"private\""] + "0": [ + "isPublic ? \"public\" : \"private\"" + ] }, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 50]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 50 + ] + ], "translation": "La visibilidad de tu tablero se ha establecido en {0}." }, "FEr96N": { "message": "Theme", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 131]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 131 + ] + ], "translation": "Tema" }, "Yf9FAx": { @@ -5618,7 +9698,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 50] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 50 + ] ], "translation": "No podrán acceder a este espacio de trabajo." }, @@ -5627,11 +9710,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 44], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 39], - ["src/views/card/components/DeleteCardConfirmation.tsx", 78], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 59], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 69] + [ + "src/components/DeleteLabelConfirmation.tsx", + 44 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 39 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 78 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 59 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 69 + ] ], "translation": "Esta acción no se puede deshacer." }, @@ -5639,28 +9737,48 @@ "message": "This API key will only be shown once. Please save it in a secure location.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 129]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 129 + ] + ], "translation": "Esta clave API solo se mostrará una vez. Guárdala en un lugar seguro." }, "l4asa1": { "message": "This board is private or does not exist", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 184]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 184 + ] + ], "translation": "Este tablero es privado o no existe" }, "wY+6Ye": { "message": "This board URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 136]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 136 + ] + ], "translation": "Esta URL de tablero ya está en uso" }, "mTwGOf": { "message": "This invitation link is invalid or has expired.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 108]], + "origin": [ + [ + "src/views/invite/index.tsx", + 108 + ] + ], "translation": "Este enlace de invitación no es válido o ha caducado." }, "vlxQFL": { @@ -5668,7 +9786,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 81] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 81 + ] ], "translation": "Los permisos de este miembro se han restablecido a los valores predeterminados de su rol." }, @@ -5676,14 +9797,24 @@ "message": "This URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 73]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 73 + ] + ], "translation": "Esta URL ya está en uso" }, "gKmoow": { "message": "This URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 75]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 75 + ] + ], "translation": "Esta URL está reservada" }, "OAYToL": { @@ -5703,7 +9834,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 70] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 70 + ] ], "translation": "Esto resultará en la eliminación permanente de todos los datos asociados con este espacio de trabajo." }, @@ -5712,7 +9846,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 60 + ] ], "translation": "Esto resultará en la eliminación permanente de todos los datos asociados con tu cuenta." }, @@ -5720,14 +9857,24 @@ "message": "This workspace URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 252]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 252 + ] + ], "translation": "Esta URL de espacio de trabajo ya está en uso" }, "bJtM0P": { "message": "This workspace URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 254]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 254 + ] + ], "translation": "Esta URL de espacio de trabajo está reservada" }, "kp6L3T": { @@ -5735,7 +9882,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 125] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 125 + ] ], "translation": "Este nombre de usuario de espacio de trabajo ya está en uso" }, @@ -5743,7 +9893,12 @@ "message": "Title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 127]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 127 + ] + ], "translation": "Título" }, "wK4OTM": { @@ -5751,7 +9906,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 180] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 180 + ] ], "translation": "Título (opcional)" }, @@ -5760,8 +9918,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] ], "translation": "Por hacer" }, @@ -5769,21 +9933,36 @@ "message": "Toggle menu", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 114 + ] + ], "translation": "Alternar menú" }, "L5WQLg": { "message": "Token is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 19]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 19 + ] + ], "translation": "Se requiere el token" }, "eEQyz+": { "message": "Track all card changes with detailed activity history.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 111 + ] + ], "translation": "Rastrea todos los cambios de tarjetas con un historial de actividad detallado." }, "dtbpdR": { @@ -5791,8 +9970,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 218], - ["src/views/settings/IntegrationsSettings.tsx", 142] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 218 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 142 + ] ], "translation": "Trello" }, @@ -5800,56 +9985,96 @@ "message": "Trello disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 79]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 79 + ] + ], "translation": "Trello desconectado" }, "kxEs5t": { "message": "Trello imports", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 95 + ] + ], "translation": "Importaciones de Trello" }, "HO+uOC": { "message": "Triaging", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 57]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 57 + ] + ], "translation": "Clasificación" }, "o+JCfN": { "message": "Trusted by fast-moving teams<0/>around the world", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Logos.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Logos.tsx", + 67 + ] + ], "translation": "Confiado por equipos ágiles<0/>de todo el mundo" }, "bZSICm": { "message": "Unable to add checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 89]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 89 + ] + ], "translation": "No se pudo agregar el elemento de la lista de verificación" }, "T7DJ2k": { "message": "Unable to add comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewCommentForm.tsx", 36]], + "origin": [ + [ + "src/views/card/components/NewCommentForm.tsx", + 36 + ] + ], "translation": "No se pudo agregar el comentario" }, "2Q871c": { "message": "Unable to add label", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 244]], + "origin": [ + [ + "src/views/card/index.tsx", + 286 + ] + ], "translation": "No se pudo agregar la etiqueta" }, "LeM5RY": { "message": "Unable to clear overrides", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 39]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 39 + ] + ], "translation": "No se pudieron borrar las anulaciones" }, "W1ewR0": { @@ -5857,10 +10082,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 313], - ["src/views/card/components/Dropdown.tsx", 49], - ["src/views/public/board/CardModal.tsx", 43], - ["src/views/public/board/index.tsx", 84] + [ + "src/views/board/index.tsx", + 317 + ], + [ + "src/views/card/components/Dropdown.tsx", + 49 + ], + [ + "src/views/public/board/CardModal.tsx", + 43 + ], + [ + "src/views/public/board/index.tsx", + 84 + ] ], "translation": "No se pudo copiar el enlace" }, @@ -5868,21 +10105,36 @@ "message": "Unable to create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 183]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 183 + ] + ], "translation": "No se pudo crear la tarjeta" }, "mHhffx": { "message": "Unable to create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 70]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 70 + ] + ], "translation": "No se pudo crear la lista de verificación" }, "TztLaN": { "message": "Unable to create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 78]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 78 + ] + ], "translation": "No se pudo crear la lista" }, "YcyP2z": { @@ -5890,8 +10142,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewTemplateForm.tsx", 60], - ["src/views/board/components/NewTemplateForm.tsx", 76] + [ + "src/views/board/components/NewTemplateForm.tsx", + 60 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 76 + ] ], "translation": "No se pudo crear la plantilla" }, @@ -5900,8 +10158,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 122], - ["src/views/onboarding/workspace-details/index.tsx", 100] + [ + "src/components/NewWorkspaceForm.tsx", + 122 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 100 + ] ], "translation": "No se pudo crear el espacio de trabajo" }, @@ -5909,14 +10173,24 @@ "message": "Unable to delete attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 73]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 73 + ] + ], "translation": "No se pudo eliminar el archivo adjunto" }, "Z6r9z1": { "message": "Unable to delete card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 51]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 51 + ] + ], "translation": "No se pudo eliminar la tarjeta" }, "DahTzR": { @@ -5924,7 +10198,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 37] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 37 + ] ], "translation": "No se pudo eliminar la lista de verificación" }, @@ -5932,14 +10209,24 @@ "message": "Unable to delete checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 95 + ] + ], "translation": "No se pudo eliminar el elemento de la lista de verificación" }, "2QGEbi": { "message": "Unable to delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 45]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 45 + ] + ], "translation": "No se pudo eliminar el comentario" }, "Oo4E6p": { @@ -5947,7 +10234,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 75] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 75 + ] ], "translation": "No se puede duplicar la tarjeta" }, @@ -5955,7 +10245,12 @@ "message": "Unable to move card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 41]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 41 + ] + ], "translation": "No se puede mover la tarjeta" }, "8yFGGF": { @@ -5963,7 +10258,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 27] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 27 + ] ], "translation": "No se pudo eliminar el miembro" }, @@ -5971,7 +10269,12 @@ "message": "Unable to reorder checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Checklists.tsx", 80]], + "origin": [ + [ + "src/views/card/components/Checklists.tsx", + 80 + ] + ], "translation": "No se pudo reordenar el elemento de la lista de verificación" }, "vfRdCZ": { @@ -5979,7 +10282,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 92] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 92 + ] ], "translation": "No se pudieron restablecer los permisos" }, @@ -5987,35 +10293,60 @@ "message": "Unable to send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 40]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 40 + ] + ], "translation": "No se pudo enviar el comentario" }, "Q60WUZ": { "message": "Unable to start checkout", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 149]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 149 + ] + ], "translation": "No se pudo iniciar el proceso de pago" }, "T7Mywq": { "message": "Unable to update board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 64]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 64 + ] + ], "translation": "No se pudo actualizar el tablero" }, "XpcjLO": { "message": "Unable to update board URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 72]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 72 + ] + ], "translation": "No se pudo actualizar la URL del tablero" }, "Wy6pcF": { "message": "Unable to update board visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 56]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 56 + ] + ], "translation": "No se pudo actualizar la visibilidad del tablero" }, "o9WLwO": { @@ -6023,8 +10354,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 273], - ["src/views/card/index.tsx", 231] + [ + "src/views/board/index.tsx", + 277 + ], + [ + "src/views/card/index.tsx", + 273 + ] ], "translation": "No se pudo actualizar la tarjeta" }, @@ -6032,35 +10369,60 @@ "message": "Unable to update checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistNameInput.tsx", 46]], + "origin": [ + [ + "src/views/card/components/ChecklistNameInput.tsx", + 46 + ] + ], "translation": "No se pudo actualizar la lista de verificación" }, "WQPDcG": { "message": "Unable to update checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 67 + ] + ], "translation": "No se pudo actualizar el elemento de la lista de verificación" }, "fYVH36": { "message": "Unable to update comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 92]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 92 + ] + ], "translation": "No se pudo actualizar el comentario" }, "C56tim": { "message": "Unable to update due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DueDateSelector.tsx", 63]], + "origin": [ + [ + "src/views/card/components/DueDateSelector.tsx", + 63 + ] + ], "translation": "No se pudo actualizar la fecha de vencimiento" }, "delOXn": { "message": "Unable to update labels", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/LabelSelector.tsx", 74]], + "origin": [ + [ + "src/views/card/components/LabelSelector.tsx", + 74 + ] + ], "translation": "No se pudieron actualizar las etiquetas" }, "I0gAKM": { @@ -6068,8 +10430,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 217], - ["src/views/card/components/ListSelector.tsx", 54] + [ + "src/views/board/index.tsx", + 221 + ], + [ + "src/views/card/components/ListSelector.tsx", + 54 + ] ], "translation": "No se pudo actualizar la lista" }, @@ -6077,7 +10445,12 @@ "message": "Unable to update members", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/MemberSelector.tsx", 81]], + "origin": [ + [ + "src/views/card/components/MemberSelector.tsx", + 81 + ] + ], "translation": "No se pudieron actualizar los miembros" }, "GYv20o": { @@ -6085,8 +10458,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 41], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 64] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 41 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 64 + ] ], "translation": "No se pudieron actualizar los permisos" }, @@ -6094,44 +10473,76 @@ "message": "Unable to update role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 65]], + "origin": [ + [ + "src/views/members/index.tsx", + 65 + ] + ], "translation": "No se pudo actualizar el rol" }, "It4/FS": { "message": "Unarchive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Desarchivar tablero" }, "E8zYtd": { "message": "unassigned <0>{0} from the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 183]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 183 + ] + ], "translation": "desasignó a <0>{0} de la tarjeta" }, "hAMddS": { "message": "unassigned themselves from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 180]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 180 + ] + ], "translation": "se desasignó a sí mismo de la tarjeta" }, "9Xigls": { "message": "Under Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "En revisión" }, "M9p3Vw": { "message": "Unlimited activity log", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 41]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 41 + ] + ], "translation": "Registro de actividad ilimitado" }, "1wCGT0": { @@ -6139,12 +10550,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 74], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 75], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 76], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 77], - ["src/views/pricing/components/Pricing.tsx", 37], - ["src/views/pricing/components/PricingTiers.tsx", 36] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 74 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 75 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 76 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 77 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 37 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 36 + ] ], "translation": "Tableros ilimitados" }, @@ -6152,7 +10581,12 @@ "message": "Unlimited boards, unlimited lists, unlimited cards. No credit card required.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 57]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 57 + ] + ], "translation": "Tableros ilimitados, listas ilimitadas, tarjetas ilimitadas. No se requiere tarjeta de crédito." }, "Zz1qkk": { @@ -6160,8 +10594,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 39], - ["src/views/pricing/components/PricingTiers.tsx", 37] + [ + "src/views/pricing/components/Pricing.tsx", + 39 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 37 + ] ], "translation": "Tarjetas ilimitadas" }, @@ -6169,7 +10609,12 @@ "message": "Unlimited comments", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 40]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 40 + ] + ], "translation": "Comentarios ilimitados" }, "86FLn5": { @@ -6177,10 +10622,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 92], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 93], - ["src/views/pricing/components/PricingTiers.tsx", 59] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 92 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 93 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 59 + ] ], "translation": "Subidas de archivos ilimitadas" }, @@ -6188,7 +10645,12 @@ "message": "Unlimited lists", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 38 + ] + ], "translation": "Listas ilimitadas" }, "mx8+1u": { @@ -6196,11 +10658,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 297], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 84], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 85], - ["src/views/pricing/components/PricingTiers.tsx", 80], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 68] + [ + "src/components/NewWorkspaceForm.tsx", + 297 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 84 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 85 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 80 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 68 + ] ], "translation": "Miembros ilimitados" }, @@ -6208,14 +10685,24 @@ "message": "Unlimited members and a custom workspace username for teams ready to scale.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 94]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 94 + ] + ], "translation": "Miembros ilimitados y un nombre de usuario personalizado para el espacio de trabajo para equipos listos para escalar." }, "Ws+3X+": { "message": "Unlimited seats and advanced features for growing teams.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 75]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 75 + ] + ], "translation": "Plazas ilimitadas y funciones avanzadas para equipos en crecimiento." }, "SMaFdc": { @@ -6223,8 +10710,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/pages/unsubscribe/index.tsx", 68], - ["src/pages/unsubscribe/index.tsx", 93] + [ + "src/pages/unsubscribe/index.tsx", + 68 + ], + [ + "src/pages/unsubscribe/index.tsx", + 93 + ] ], "translation": "Cancelar suscripción" }, @@ -6233,11 +10726,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugForm.tsx", 175], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 80], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 94], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 89], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 157] + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 175 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 80 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 94 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 89 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 157 + ] ], "translation": "Actualizar" }, @@ -6245,44 +10753,76 @@ "message": "Update label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Actualizar etiqueta" }, "L5ZPjz": { "message": "updated a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 136]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 136 + ] + ], "translation": "actualizó un elemento de la lista de verificación" }, "tGwwnq": { "message": "updated the description", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 126]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 126 + ] + ], "translation": "actualizó la descripción" }, "RfgJqw": { "message": "updated the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 143]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 143 + ] + ], "translation": "actualizó la fecha de vencimiento" }, "V3MPSQ": { "message": "updated the title", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 125]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 125 + ] + ], "translation": "actualizó el título" }, "zERArS": { "message": "updated the title to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 152]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 152 + ] + ], "translation": "actualizó el título a <0>{0}" }, "IelE1h": { @@ -6290,9 +10830,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 55], - ["src/views/settings/WorkspaceSettings.tsx", 118] + [ + "src/components/SideNavigation.tsx", + 242 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 55 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 118 + ] ], "translation": "Actualizar a Pro" }, @@ -6301,8 +10850,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 337], - ["src/views/onboarding/workspace-details/index.tsx", 243] + [ + "src/components/NewWorkspaceForm.tsx", + 337 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 243 + ] ], "translation": "Actualizar a Pro ($29/mes)" }, @@ -6310,7 +10865,12 @@ "message": "Upload failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 51]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 51 + ] + ], "translation": "Error al subir" }, "BBUDfW": { @@ -6318,8 +10878,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 50], - ["src/views/boards/components/TemplateBoards.tsx", 67] + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 67 + ] ], "translation": "Urgente" }, @@ -6328,8 +10894,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 217], - ["src/views/settings/components/WebhookList.tsx", 218] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 217 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 218 + ] ], "translation": "URL" }, @@ -6338,8 +10910,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 38], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 38] + [ + "src/components/NewWorkspaceForm.tsx", + 38 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 38 + ] ], "translation": "La URL solo puede contener letras, números y guiones" }, @@ -6347,7 +10925,12 @@ "message": "URL cannot exceed 2048 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 25 + ] + ], "translation": "La URL no puede exceder 2048 caracteres" }, "i5rE2/": { @@ -6355,8 +10938,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 36], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 36] + [ + "src/components/NewWorkspaceForm.tsx", + 36 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 36 + ] ], "translation": "La URL no puede superar los 64 caracteres" }, @@ -6365,8 +10954,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 34], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 34] + [ + "src/components/NewWorkspaceForm.tsx", + 34 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 34 + ] ], "translation": "La URL debe tener al menos 3 caracteres" }, @@ -6374,112 +10969,208 @@ "message": "Use template", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 154]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 154 + ] + ], "translation": "Usar plantilla" }, "n6EWYz": { "message": "Used to sign webhook payloads for verification. Leave blank to keep existing secret.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 239]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 239 + ] + ], "translation": "Se utiliza para firmar las cargas útiles del webhook para verificación. Dejar en blanco para mantener el secreto existente." }, "7PzzBU": { "message": "User", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 322]], + "origin": [ + [ + "src/views/members/index.tsx", + 322 + ] + ], "translation": "Usuario" }, "tYN21H": { "message": "User is already a member of this workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 98]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 98 + ] + ], "translation": "El usuario ya es miembro de este espacio de trabajo" }, "vSJd18": { "message": "Video", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Vídeo" }, "FmfJjN": { "message": "View and manage your API keys.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 25 + ] + ], "translation": "Ver y gestionar tus claves de API." }, "t2nDzl": { "message": "View and manage your billing and subscription.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 42]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 42 + ] + ], "translation": "Ver y gestionar tu facturación y suscripción." }, "aiHZVP": { "message": "View docs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 67]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 67 + ] + ], "translation": "Ver documentación" }, "F8DaWi": { "message": "View only", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 153]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 153 + ] + ], "translation": "Solo lectura" }, "fSf2ee": { "message": "View our roadmap.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 154]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 154 + ] + ], "translation": "Ver nuestra hoja de ruta." }, "U5dMR6": { "message": "View workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 187]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 187 + ] + ], "translation": "Ver espacio de trabajo" }, + "V8YRD4": { + "message": "Viewing now: {0}", + "placeholders": { + "0": [ + "viewers.map((v) => v.userName).join(\", \")" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 61 + ] + ], + "translation": "" + }, "2q/Q7x": { "message": "Visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 103]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 103 + ] + ], "translation": "Visibilidad" }, "BJbLe4": { "message": "We are using the <0>AGPL-3.0 license.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 94]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 94 + ] + ], "translation": "Estamos usando la <0>licencia AGPL-3.0." }, "+EkBs0": { "message": "We couldn't update your preferences. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 63]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 63 + ] + ], "translation": "No pudimos actualizar tus preferencias. Por favor, inténtalo de nuevo." }, "9y1RcT": { "message": "We're just getting started. ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 152]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 152 + ] + ], "translation": "Apenas estamos empezando." }, "GdWB+V": { "message": "Webhook created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 104]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 104 + ] + ], "translation": "Webhook creado correctamente" }, "2X4ecw": { @@ -6487,7 +11178,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 23] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 23 + ] ], "translation": "Webhook eliminado correctamente" }, @@ -6495,14 +11189,24 @@ "message": "Webhook name cannot exceed 255 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 20]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 20 + ] + ], "translation": "El nombre del webhook no puede exceder 255 caracteres" }, "U2+rn0": { "message": "Webhook name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 19 + ] + ], "translation": "El nombre del webhook es obligatorio" }, "8iP9oQ": { @@ -6510,8 +11214,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 135], - ["src/views/settings/components/WebhookList.tsx", 177] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 135 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 177 + ] ], "translation": "La prueba del webhook falló" }, @@ -6519,14 +11229,24 @@ "message": "Webhook updated successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 118]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 118 + ] + ], "translation": "Webhook actualizado correctamente" }, "Hf1cEZ": { "message": "Webhook URL is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 23]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 23 + ] + ], "translation": "La URL del webhook es obligatoria" }, "v1kQyJ": { @@ -6534,8 +11254,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 71], - ["src/views/settings/WebhookSettings.tsx", 28] + [ + "src/components/SettingsLayout.tsx", + 71 + ], + [ + "src/views/settings/WebhookSettings.tsx", + 28 + ] ], "translation": "Webhooks" }, @@ -6543,42 +11269,72 @@ "message": "Week start day", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 91 + ] + ], "translation": "Día de inicio de semana" }, "9eF5oV": { "message": "Welcome back", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 43]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 43 + ] + ], "translation": "Bienvenido de nuevo" }, "xEbBrW": { "message": "What license are you using?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 91 + ] + ], "translation": "¿Qué licencia estás usando?" }, "H5G+qG": { "message": "What's the difference between Kan and Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 30]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 30 + ] + ], "translation": "¿Cuál es la diferencia entre Kan y Trello?" }, "mVZH9V": { "message": "When Trello launched in 2011, it blew everyone away with its carefully designed simplicity, but over the years it lost its magic and grew into something closer to \"Jira Lite\". This project is our attempt to recapture the original magic of Trello's simplicity, in open source.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 25 + ] + ], "translation": "Cuando Trello se lanzó en 2011, sorprendió a todos con su simplicidad cuidadosamente diseñada, pero con los años perdió su magia y se convirtió en algo más parecido a \"Jira Lite\". Este proyecto es nuestro intento de recuperar la magia original de la simplicidad de Trello, en código abierto." }, "SFnH1j": { "message": "Why make an open source Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 22]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 22 + ] + ], "translation": "¿Por qué hacer un Trello de código abierto?" }, "pmUArF": { @@ -6586,12 +11342,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 47], - ["src/views/board/index.tsx", 530], - ["src/views/boards/index.tsx", 48], - ["src/views/members/index.tsx", 258], - ["src/views/public/board/index.tsx", 125], - ["src/views/public/boards/index.tsx", 75] + [ + "src/components/SettingsLayout.tsx", + 47 + ], + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/members/index.tsx", + 258 + ], + [ + "src/views/public/board/index.tsx", + 125 + ], + [ + "src/views/public/boards/index.tsx", + 75 + ] ], "translation": "Espacio de trabajo" }, @@ -6599,7 +11373,12 @@ "message": "Workspace created successfully. You can upgrade later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 147]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 147 + ] + ], "translation": "Espacio de trabajo creado correctamente. Puedes actualizar más tarde en la configuración.", "obsolete": true }, @@ -6608,7 +11387,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 26] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 26 + ] ], "translation": "Espacio de trabajo eliminado" }, @@ -6617,8 +11399,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 253], - ["src/views/settings/WorkspaceSettings.tsx", 82] + [ + "src/views/onboarding/workspace-details/index.tsx", + 253 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 82 + ] ], "translation": "Descripción del espacio de trabajo" }, @@ -6627,7 +11415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 30] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 30 + ] ], "translation": "La descripción del espacio de trabajo no puede superar los 280 caracteres" }, @@ -6636,7 +11427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 27] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 27 + ] ], "translation": "La descripción del espacio de trabajo debe tener al menos 3 caracteres" }, @@ -6645,7 +11439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 50] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 50 + ] ], "translation": "Descripción del espacio de trabajo actualizada" }, @@ -6654,9 +11451,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 90], - ["src/views/pricing/components/Pricing.tsx", 54], - ["src/views/pricing/components/PricingTiers.tsx", 57] + [ + "src/views/home/components/Features.tsx", + 90 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 54 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 57 + ] ], "translation": "Miembros del espacio de trabajo" }, @@ -6665,9 +11471,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 227], - ["src/views/onboarding/workspace-details/index.tsx", 188], - ["src/views/settings/WorkspaceSettings.tsx", 63] + [ + "src/components/NewWorkspaceForm.tsx", + 227 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 188 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 63 + ] ], "translation": "Nombre del espacio de trabajo" }, @@ -6676,8 +11491,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 30], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 15] + [ + "src/components/NewWorkspaceForm.tsx", + 30 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 15 + ] ], "translation": "El nombre del espacio de trabajo no puede superar los 64 caracteres" }, @@ -6685,7 +11506,12 @@ "message": "Workspace name is required", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 29]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 29 + ] + ], "translation": "El nombre del espacio de trabajo es obligatorio" }, "jZBHkN": { @@ -6693,7 +11519,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 14] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 14 + ] ], "translation": "El nombre del espacio de trabajo debe tener al menos 3 caracteres" }, @@ -6702,7 +11531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 45] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 45 + ] ], "translation": "Nombre del espacio de trabajo actualizado" }, @@ -6710,7 +11542,12 @@ "message": "Workspace permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 53 + ] + ], "translation": "Permisos del espacio de trabajo" }, "MN6YzG": { @@ -6718,7 +11555,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 62] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 62 + ] ], "translation": "Slug del espacio de trabajo actualizado" }, @@ -6726,28 +11566,48 @@ "message": "Workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 72]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 72 + ] + ], "translation": "URL del espacio de trabajo" }, "DSGzV+": { "message": "Workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 97 + ] + ], "translation": "Nombre de usuario del espacio de trabajo" }, "/8pTF/": { "message": "workspace-url", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 241]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 241 + ] + ], "translation": "workspace-url" }, "4kJRen": { "message": "Writing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 43]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 43 + ] + ], "translation": "Escribiendo" }, "zkWmBh": { @@ -6755,8 +11615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 19], - ["src/views/pricing/index.tsx", 25] + [ + "src/views/pricing/components/Pricing.tsx", + 19 + ], + [ + "src/views/pricing/index.tsx", + 25 + ] ], "translation": "Anual" }, @@ -6764,42 +11630,72 @@ "message": "Yes, we offer an forever free plan for individual use. No restrictions, no paywalls, no limits.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 86 + ] + ], "translation": "Sí, ofrecemos un plan gratuito para siempre para uso individual. Sin restricciones, sin muros de pago, sin límites." }, "RtlIYB": { "message": "You are about to change your password.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 91 + ] + ], "translation": "Estás a punto de cambiar tu contraseña." }, "3WXdoZ": { "message": "You can always change these later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 182]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 182 + ] + ], "translation": "Siempre puedes cambiar esto más tarde en la configuración." }, "aelko+": { "message": "You can get a custom workspace URL, like <0>kan.bn/kan, by going into your <1>workspace settings and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 67 + ] + ], "translation": "Puedes obtener una URL personalizada para tu espacio de trabajo, como <0>kan.bn/kan, yendo a la <1>configuración de tu espacio de trabajo y comprando una suscripción pro. ¡Todas las suscripciones ayudan a financiar el desarrollo del proyecto!" }, "kSxwQL": { "message": "You can invite team members by clicking the \"Invite\" button in the top right corner of the <0>members page and entering their email address. They will receive an email with a link to join the workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 111 + ] + ], "translation": "Puedes invitar a miembros del equipo haciendo clic en el botón \"Invitar\" en la esquina superior derecha de la <0>página de miembros e ingresando su dirección de correo electrónico. Recibirán un correo con un enlace para unirse al espacio de trabajo." }, "vAj6xG": { "message": "You can self-host by following the instructions in our <0>repo.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 127]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 127 + ] + ], "translation": "Puedes auto-alojar siguiendo las instrucciones en nuestro <0>repositorio." }, "h2FKMV": { @@ -6807,14 +11703,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/List.tsx", 117], - ["src/views/board/components/UpdateBoardSlugButton.tsx", 58], - ["src/views/board/components/VisibilityButton.tsx", 72], - ["src/views/board/index.tsx", 604], - ["src/views/board/index.tsx", 662], - ["src/views/boards/components/BoardsList.tsx", 71], - ["src/views/boards/index.tsx", 59], - ["src/views/boards/index.tsx", 80] + [ + "src/views/board/components/List.tsx", + 117 + ], + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 58 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 72 + ], + [ + "src/views/board/index.tsx", + 608 + ], + [ + "src/views/board/index.tsx", + 667 + ], + [ + "src/views/boards/components/BoardsList.tsx", + 71 + ], + [ + "src/views/boards/index.tsx", + 59 + ], + [ + "src/views/boards/index.tsx", + 80 + ] ], "translation": "No tienes permiso" }, @@ -6822,49 +11742,180 @@ "message": "You have been logged in successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 233]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 233 + ] + ], "translation": "Has iniciado sesión correctamente." }, "mchgzf": { "message": "You have been signed up successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 216]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 216 + ] + ], "translation": "Te has registrado correctamente." }, "raHesj": { "message": "You have been unsubscribed!", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 98]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 98 + ] + ], "translation": "¡Te has dado de baja!" }, "R275Pz": { "message": "You have unlimited seats with your Pro Plan. There is no additional charge for new members!", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 326]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 326 + ] + ], "translation": "Tienes plazas ilimitadas con tu plan Pro. ¡No hay cargo adicional por nuevos miembros!" }, "MdN5zD": { "message": "You need to be an admin to manage workspace permissions.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 86 + ] + ], "translation": "Necesitas ser administrador para gestionar los permisos del espacio de trabajo." }, + "Cb5YSG": { + "message": "You were added to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 33 + ] + ], + "translation": "" + }, + "EYpSRU": { + "message": "You were added to a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 34 + ] + ], + "translation": "" + }, + "j77sVH": { + "message": "You were assigned to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 45 + ] + ], + "translation": "" + }, + "4sxGcV": { + "message": "You were assigned to a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 46 + ] + ], + "translation": "" + }, + "9HDx2Z": { + "message": "You were mentioned in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 29 + ] + ], + "translation": "" + }, + "e6wIqm": { + "message": "You were mentioned in a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 30 + ] + ], + "translation": "" + }, + "11dHnN": { + "message": "You were removed from", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 37 + ] + ], + "translation": "" + }, + "YdIn4I": { + "message": "You were removed from a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 38 + ] + ], + "translation": "" + }, "2SePRT": { "message": "You've been invited to join a workspace on kan.bn.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 134]], + "origin": [ + [ + "src/views/invite/index.tsx", + 134 + ] + ], "translation": "Has sido invitado a unirte a un espacio de trabajo en kan.bn." }, "uOqaMC": { "message": "You've been invited to join a workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 135]], + "origin": [ + [ + "src/views/invite/index.tsx", + 135 + ] + ], "translation": "Has sido invitado a unirte a un espacio de trabajo." }, "GoDLB9": { @@ -6872,7 +11923,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 28 + ] ], "translation": "Tu cuenta ha sido eliminada." }, @@ -6880,49 +11934,84 @@ "message": "Your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 229]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 229 + ] + ], "translation": "Tu avatar" }, "evg7+A": { "message": "Your boards have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 382]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 382 + ] + ], "translation": "Tus tableros han sido importados." }, "LqWW5F": { "message": "Your display name has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 42]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 42 + ] + ], "translation": "Tu nombre para mostrar ha sido actualizado." }, "tca56/": { "message": "Your file has been uploaded successfully.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 46]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 46 + ] + ], "translation": "Tu archivo se ha subido correctamente." }, "HcT8J4": { "message": "Your GitHub account has been connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 100 + ] + ], "translation": "Tu cuenta de GitHub ha sido conectada." }, "AdxYds": { "message": "Your GitHub account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 123]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 123 + ] + ], "translation": "Tu cuenta de GitHub ha sido desconectada." }, "PELbXB": { "message": "Your GitHub account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 220]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 220 + ] + ], "translation": "Tu cuenta de GitHub está conectada." }, "Ozt2vv": { @@ -6930,7 +12019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 70] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 70 + ] ], "translation": "Tu contraseña ha sido cambiada." }, @@ -6938,49 +12030,108 @@ "message": "Your profile image has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 190]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 190 + ] + ], "translation": "Tu imagen de perfil ha sido actualizada." }, "+jbXzb": { "message": "Your projects have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 230]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 230 + ] + ], "translation": "Tus proyectos han sido importados." }, + "0AfkMq": { + "message": "Your role changed in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 41 + ] + ], + "translation": "" + }, + "GKeVeM": { + "message": "Your role was changed", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 42 + ] + ], + "translation": "" + }, "CJWDTP": { "message": "Your Trello account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 80]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 80 + ] + ], "translation": "Tu cuenta de Trello ha sido desconectada." }, "WRsbHO": { "message": "Your Trello account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 171]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 171 + ] + ], "translation": "Tu cuenta de Trello está conectada." }, "25fAUC": { "message": "Your unsubscribe link is missing a token. Please open the latest email and try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 33]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 33 + ] + ], "translation": "Tu enlace de cancelación de suscripción no tiene un token. Por favor, abre el último correo electrónico e inténtalo de nuevo." }, "GRAGsB": { "message": "Your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 322]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 322 + ] + ], "translation": "Tu espacio de trabajo" }, "j0o6ml": { "message": "Your workspace description", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 325]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 325 + ] + ], "translation": "Descripción de tu espacio de trabajo" }, "GnSSGm": { @@ -6988,7 +12139,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 51] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 51 + ] ], "translation": "La descripción de tu espacio de trabajo ha sido actualizada." }, @@ -6997,7 +12151,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 27 + ] ], "translation": "Tu espacio de trabajo ha sido eliminado." }, @@ -7006,7 +12163,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 46] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 46 + ] ], "translation": "El nombre de tu espacio de trabajo ha sido actualizado." }, @@ -7015,7 +12175,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 63 + ] ], "translation": "El slug de tu espacio de trabajo ha sido actualizado." }, @@ -7024,8 +12187,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 197], - ["src/views/onboarding/workspace-details/index.tsx", 198] + [ + "src/views/onboarding/workspace-details/index.tsx", + 197 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 198 + ] ], "translation": "tu-espacio-de-trabajo" }, @@ -7033,7 +12202,12 @@ "message": "YouTube URL", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 147]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 147 + ] + ], "translation": "URL de YouTube" } } \ No newline at end of file diff --git a/apps/web/src/locales/es/messages.ts b/apps/web/src/locales/es/messages.ts index 626b70e85..d3a8e059d 100644 --- a/apps/web/src/locales/es/messages.ts +++ b/apps/web/src/locales/es/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Redes sociales\"],\"+3TYXa\":[\"Para la sostenibilidad a largo plazo, reconocemos que todos los buenos proyectos de código abierto necesitan una fuente de ingresos. La nuestra proviene de la oferta de pago en la nube para espacios de trabajo con múltiples usuarios y para slugs de espacio de trabajo personalizados. No hay obligación de usarla, y puedes alojar el software en tu propia infraestructura de forma gratuita.\"],\"+5kO8P\":[\"Sábado\"],\"+8Nek/\":[\"Mensual\"],\"+EkBs0\":[\"No pudimos actualizar tus preferencias. Por favor, inténtalo de nuevo.\"],\"+MdEsf\":[\"Se requiere una nueva contraseña\"],\"+OhFss\":[\"Comienza gratis, sin límites de uso. Para colaboración, actualiza a un plan que se ajuste al tamaño de tu equipo.\"],\"+VoTOr\":[\"facturado mensualmente\"],\"+djOzj\":[\"Invitar miembro\"],\"+h2faV\":[\"Configuración | Webhooks\"],\"+jbXzb\":[\"Tus proyectos han sido importados.\"],\"+nvZ6j\":[\"Etiquetas y filtros\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Plantilla\"],\"/asTmx\":[\"Reporte de error\"],\"/bBVaD\":[\"GitHub desconectado\"],\"/bZzdR\":[\"Menciones\"],\"/f3t6v\":[\"Configura qué acciones están permitidas para cada rol del espacio de trabajo. Estos permisos se aplican a todos los miembros con ese rol.\"],\"/gaSVU\":[\"Hoja de ruta\"],\"/glL9Q\":[\"No hay \",[\"0\"]],\"/jd3aj\":[\"Roles avanzados de administrador\"],\"/lDBHm\":[\"Preguntas frecuentes\"],\"/rn4RE\":[\"Una aplicación kanban potente y flexible que te ayuda a organizar el trabajo, hacer seguimiento del progreso y obtener resultados, todo en un solo lugar.\"],\"/tOdd2\":[\"Tu imagen de perfil ha sido actualizada.\"],\"0+0/3e\":[\"Crear nueva etiqueta\"],\"0+ewPp\":[\"Mejora\"],\"02i3WU\":[\"Importaciones\"],\"06EQqT\":[\"Duplicando…\"],\"0KjpAr\":[\"Puede ver miembros\"],\"0RE1AJ\":[\"Los tableros que archives aparecerán aquí.\"],\"0StR7t\":[\"Introduce tu nueva contraseña\"],\"0jV46i\":[\"No se pudo eliminar el elemento de la lista de verificación\"],\"0qyZ4b\":[\"Cargando permisos...\"],\"0rPv1T\":[\"Imagen de perfil actualizada\"],\"0utuU6\":[\"Copiar listas de verificación\"],\"0xD8Of\":[\"La página que buscas no existe o ha sido movida.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Importar tablero (1)\"],\"other\":[\"Importar tableros (\",[\"boardCount\"],\")\"]}]],\"14Xi3Z\":[\"Añadir un nuevo miembro costará \",[\"price\"],\" adicionales (\",[\"billingType\"],\") por puesto.\"],\"1H5u1m\":[\"¿Preguntas?\"],\"1WuwiM\":[\"Ir a configuración\"],\"1bJKhj\":[\"Copiar enlace a la tarjeta\"],\"1hzdxO\":[\"Permisos del espacio de trabajo\"],\"1iShX0\":[\"Vence hoy\"],\"1njn7W\":[\"Claro\"],\"1rVAfU\":[\"Cargar más actividades\"],\"1rWxEw\":[\"Esperando al cliente\"],\"1sRmLC\":[\"Discute y colabora en tarjetas.\"],\"1wCGT0\":[\"Tableros ilimitados\"],\"25fAUC\":[\"Tu enlace de cancelación de suscripción no tiene un token. Por favor, abre el último correo electrónico e inténtalo de nuevo.\"],\"25mvI+\":[\"Los enlaces de invitación requieren una suscripción Team o Pro. Por favor, actualiza tu espacio de trabajo.\"],\"29sSki\":[\"completó el elemento de la lista de verificación <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"Lista\"],\"2Bu8xj\":[\"No se encontraron tableros\"],\"2M84k3\":[\"Permisos personalizados\"],\"2MPcep\":[\"Importación completada\"],\"2POOFK\":[\"Gratis\"],\"2Py5S/\":[\"Reconozco que todos los datos del espacio de trabajo se eliminarán permanentemente y quiero continuar.\"],\"2Q871c\":[\"No se pudo agregar la etiqueta\"],\"2QGEbi\":[\"No se pudo eliminar el comentario\"],\"2SePRT\":[\"Has sido invitado a unirte a un espacio de trabajo en kan.bn.\"],\"2X4ecw\":[\"Webhook eliminado correctamente\"],\"2h4PVB\":[\"El nombre de tu espacio de trabajo ha sido actualizado.\"],\"2liqDZ\":[\"Reconozco que todos los datos de mi cuenta se eliminarán permanentemente y quiero continuar.\"],\"2q/Q7x\":[\"Visibilidad\"],\"2roTVj\":[\"Comentarios enviados\"],\"3LDCpD\":[\"Esta acción no se puede deshacer.\"],\"3WXdoZ\":[\"Siempre puedes cambiar esto más tarde en la configuración.\"],\"3ZjRJY\":[\"renombró la lista de verificación <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Cualquiera con este enlace puede unirse a tu espacio de trabajo\"],\"3d54Wj\":[\"Webhook actualizado correctamente\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Conectar GitHub\"],\"3pIq39\":[\"Roles de administrador\"],\"479pdJ\":[\"Confirma tu nueva contraseña\"],\"4DOCMI\":[\"URL de YouTube\"],\"4Revpc\":[\"Pequeño\"],\"4RoY9J\":[\"Artículo de blog\"],\"4XF0BB\":[\"Foto de perfil\"],\"4gAX8s\":[\"Alternar menú\"],\"4kJRen\":[\"Escribiendo\"],\"4obmDr\":[\"404 - Página no encontrada | kan.bn\"],\"51UCsN\":[\"Mover a otra lista\"],\"53QYh8\":[\"No se pudo crear el tablero\"],\"55xJ/O\":[\"Error al cambiar la contraseña\"],\"58AiWX\":[\"Por favor, confirma tu nueva contraseña\"],\"5ACX4z\":[\"Newsletter\"],\"5IXWmO\":[\"Revisa tu bandeja de entrada\"],\"5P4rhH\":[\"No se pudieron actualizar los miembros\"],\"5RkSzq\":[\"Copiar enlace del tablero\"],\"5eZwRW\":[\"Conecta tu cuenta de Trello para importar tableros.\"],\"5h8ooz\":[\"Claves de API\"],\"5iplxh\":[\"La nueva contraseña debe ser diferente de la contraseña actual\"],\"5k0NLb\":[\"Revisar\"],\"5lWFkC\":[\"Iniciar sesión\"],\"5ntVtp\":[\"Error al probar el webhook\"],\"5y6qY8\":[\"añadió un archivo adjunto\"],\"69b7aE\":[\"Abrir menú de comandos\"],\"6EWT6T\":[\"Reclutamiento\"],\"6FDocz\":[\"Registrarse con \"],\"6FsGbN\":[\"Comienza creando un nuevo \",[\"0\"]],\"6OTo9n\":[\"El nombre de la plantilla es obligatorio\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Nuevo \",[\"0\"]],\"6YtxFj\":[\"Nombre\"],\"6mbe4b\":[\"Individuales\"],\"6sKjjx\":[\"Individual\"],\"6tDFBe\":[\"Los permisos del miembro se han actualizado.\"],\"6uBU1F\":[\"Acceso completo a la API\"],\"6zeSBB\":[\"Puede crear tarjetas\"],\"74F7N/\":[\"¿Estás seguro de que quieres eliminar tu cuenta?\"],\"7EhE4k\":[\"Actualizar etiqueta\"],\"7L01XJ\":[\"Acciones\"],\"7PzzBU\":[\"Usuario\"],\"7RpHg/\":[\"Nombre de usuario personalizado\"],\"7Ufoyg\":[\"Listas ilimitadas\"],\"7aONWr\":[\"La URL no puede exceder 2048 caracteres\"],\"7b2yuC\":[\"Por favor, introduce una contraseña válida\"],\"7d1a0d\":[\"Público\"],\"7eMo+U\":[\"Ir al inicio\"],\"7hktsm\":[\"Primeros pasos\"],\"7i8j3G\":[\"Empresa\"],\"8+BY11\":[\"URL del tablero copiada al portapapeles\"],\"86FLn5\":[\"Subidas de archivos ilimitadas\"],\"86XI28\":[\"Confirma tus preferencias de correo electrónico:\"],\"8AbRER\":[\"Establecer fecha de vencimiento\"],\"8AwlaR\":[\"Miembros ilimitados y un nombre de usuario personalizado para el espacio de trabajo para equipos listos para escalar.\"],\"8F1i42\":[\"Página no encontrada\"],\"8Is1ih\":[\"Oferta de lanzamiento\"],\"8RdLDU\":[\"Proyecto personal\"],\"8TveY+\":[\"Tableros\"],\"8Z4pNX\":[\"Puede crear listas\"],\"8iP0S8\":[\"Todo lo del plan gratuito, más:\"],\"8iP9oQ\":[\"La prueba del webhook falló\"],\"8yFGGF\":[\"No se pudo eliminar el miembro\"],\"99VIgC\":[\"Eliminar miembro\"],\"9PaIxv\":[\"Funciones principales\"],\"9Xigls\":[\"En revisión\"],\"9YPBHv\":[\"Error al eliminar el webhook\"],\"9cDpsw\":[\"Permisos\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"9h7RDh\":[\"Oferta\"],\"9lFfqv\":[\"/mes\"],\"9s9O5h\":[\"Error al eliminar el espacio de trabajo\"],\"9u5BOr\":[\"Miembros | \",[\"0\"]],\"9wdpwp\":[\"Portal de facturación\"],\"9x4DAL\":[[\"0\"],\" no encontrado\"],\"9y1RcT\":[\"Apenas estamos empezando.\"],\"A23Y7X\":[\"Unirse al espacio de trabajo | kan.bn\"],\"A42Dqn\":[\"Marca personalizada\"],\"A5hiCy\":[\"Crear plantilla\"],\"A8jqN7\":[\"No se pudo enviar el comentario\"],\"ABCjd9\":[\"Publicación\"],\"ADEin1\":[\"Configuración | Facturación\"],\"ALhEZV\":[\"Puede invitar miembros\"],\"ANyn0x\":[\"Todo lo que necesitas, gratis para siempre. Tableros ilimitados, listas ilimitadas, tarjetas ilimitadas. Actualiza cuando quieras.\"],\"ARvBT/\":[\"facturado anualmente\"],\"ASjvm9\":[\"URL del espacio de trabajo\"],\"AUYALh\":[\"Próximamente\"],\"AX4ktp\":[\"Creación de contenido\"],\"AZI/wb\":[\"Etiquetas y filtros\"],\"AdxYds\":[\"Tu cuenta de GitHub ha sido desconectada.\"],\"AeXO77\":[\"Cuenta\"],\"Alp2ti\":[\"Contactar con ventas\"],\"Ax/hYa\":[\"La descripción del espacio de trabajo no puede superar los 280 caracteres\"],\"B3xxao\":[\"Añadir una tarjeta\"],\"BBUDfW\":[\"Urgente\"],\"BEVzjL\":[\"Importación fallida\"],\"BJbLe4\":[\"Estamos usando la <0>licencia AGPL-3.0.\"],\"BMkVQ3\":[\"eliminó la lista de verificación <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"movió la tarjeta de <0>\",[\"0\"],\" a <1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Duplicar tarjeta\"],\"BZkYSt\":[\"eliminó \",[\"0\"],\" etiquetas: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"¿Estás seguro de que quieres eliminar el espacio de trabajo \",[\"0\"],\"?\"],\"Bhgd0l\":[\"Contáctanos\"],\"BzEFor\":[\"o\"],\"C56tim\":[\"No se pudo actualizar la fecha de vencimiento\"],\"C6gv54\":[\"El tablero ha sido desarchivado.\"],\"CAL6E9\":[\"Equipos\"],\"CB/NpV\":[\"Prioridad alta\"],\"CHZ1jC\":[\"eliminó el elemento de la lista de verificación <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Por favor, introduce un nombre válido\"],\"CJWDTP\":[\"Tu cuenta de Trello ha sido desconectada.\"],\"CJukzS\":[[\"0\"],\" etiquetas\"],\"CTqTgr\":[\"Atajos\"],\"CYWHT+\":[\"Error al subir la imagen de perfil\"],\"Cd4sTD\":[\"Ideal para individuos y creadores en solitario que están empezando\"],\"Ci/KUX\":[\"Configuración | Espacio de trabajo\"],\"CkVV1t\":[\"Error al actualizar la descripción del espacio de trabajo\"],\"Cmudpi\":[\"Puede eliminar espacio de trabajo\"],\"CozWO1\":[\"Nombre del espacio de trabajo\"],\"CujNX4\":[\"añadió un archivo adjunto <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"Sistema\"],\"D0esZz\":[\"Registro de actividad\"],\"D3C4Yx\":[\"Se requiere la contraseña actual\"],\"D7/JvJ\":[\"Ajusta el recorte cuadrado para que se adapte a tu avatar.\"],\"D9ROdV\":[\"Enlaces de invitación\"],\"DAV3uK\":[\"Permisos actualizados\"],\"DBC3t5\":[\"Domingo\"],\"DFjdv0\":[\"Eliminar plantilla\"],\"DMeWZD\":[\"¿Estás seguro de que quieres eliminar este \",[\"0\"],\"?\"],\"DPfwMq\":[\"Hecho\"],\"DSGzV+\":[\"Nombre de usuario del espacio de trabajo\"],\"DahTzR\":[\"No se pudo eliminar la lista de verificación\"],\"DbZgsJ\":[\"Crear plantilla\"],\"DtXlZq\":[\"No se pudo actualizar la lista de verificación\"],\"Dz63YI\":[\"Ocurrió un error al desconectar tu cuenta de GitHub.\"],\"E0t3jO\":[\"añadió el elemento de lista de verificación <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Precio por usuario\"],\"E8zYtd\":[\"desasignó a <0>\",[\"0\"],\" de la tarjeta\"],\"ECJKc4\":[\"Clave de API creada\"],\"EEHmPC\":[\"Oferta de lanzamiento: obtén miembros ilimitados con Pro\"],\"EH8IL3\":[\"Listas de verificación\"],\"EII/X8\":[\"Todas las funciones de Teams +\"],\"ERpq2P\":[\"No se encontraron resultados para \\\"\",[\"debouncedQuery\"],\"\\\".\"],\"ESClHO\":[\"Soporte prioritario por correo electrónico\"],\"Eg99Sc\":[\"No hay métodos de autenticación disponibles actualmente\"],\"Eit43O\":[\"estableció la fecha de vencimiento\"],\"EkH9pt\":[\"Actualizar\"],\"EvArWh\":[\"Colabora sin problemas con tu equipo.\"],\"F/FPk/\":[\"Configuración | Permisos\"],\"F/vB2g\":[\"Ideas para mejorar esta página...\"],\"F0YmUY\":[\"Copiar enlace de la tarjeta\"],\"F3bW6y\":[\"Plataforma\"],\"F4KRmY\":[\"$8/mes\"],\"F4PLG4\":[\"Descripción del espacio de trabajo actualizada\"],\"F6m23G\":[\"Subida de archivos\"],\"F6pfE9\":[\"Activo\"],\"F8DaWi\":[\"Solo lectura\"],\"FEr96N\":[\"Tema\"],\"FdtSNC\":[\"Crear espacio de trabajo\"],\"FmN5me\":[\"Resolución\"],\"FmfJjN\":[\"Ver y gestionar tus claves de API.\"],\"Fpci8b\":[\"¿Estás seguro de que quieres eliminar esta lista de verificación?\"],\"G1Gw0v\":[\"Nueva plantilla\"],\"GAD3Dx\":[\"Dominio personalizado\"],\"GDvlUT\":[\"Rol\"],\"GRAGsB\":[\"Tu espacio de trabajo\"],\"GYv20o\":[\"No se pudieron actualizar los permisos\"],\"GdWB+V\":[\"Webhook creado correctamente\"],\"GnRmu4\":[\"Nombre de la lista de verificación\"],\"GnSSGm\":[\"La descripción de tu espacio de trabajo ha sido actualizada.\"],\"GoDLB9\":[\"Tu cuenta ha sido eliminada.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Hoja de ruta extendida\"],\"Gxxi5J\":[\"Añadir lista de verificación\"],\"H5G+qG\":[\"¿Cuál es la diferencia entre Kan y Trello?\"],\"HBI6nY\":[\"¿Necesitas ayuda?\"],\"HO+uOC\":[\"Clasificación\"],\"HQVm6e\":[\"Esta URL ya está en uso\"],\"HVIzNO\":[\"Puede ver listas\"],\"HYV6Lq\":[\"No se pudo aceptar la invitación. Por favor, inténtalo de nuevo más tarde o contacta con atención al cliente.\"],\"HcT8J4\":[\"Tu cuenta de GitHub ha sido conectada.\"],\"HeFWjW\":[\"Próximos pasos\"],\"Hf1cEZ\":[\"La URL del webhook es obligatoria\"],\"Hg1qE9\":[\"El slug de tu espacio de trabajo ha sido actualizado.\"],\"I+AROe\":[\"Puede editar tarjetas\"],\"I0gAKM\":[\"No se pudo actualizar la lista\"],\"IDvohQ\":[\"marcó un elemento de la lista de verificación como incompleto\"],\"IFgUX6\":[\"Puede eliminar miembros\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Actualizar a Pro\"],\"Iqh0Uv\":[\"Planificado\"],\"IqjpYe\":[\"Visibilidad del email\"],\"IrZaAn\":[\"Contraseña cambiada\"],\"It4/FS\":[\"Desarchivar tablero\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Continuar con \"],\"J4+OTA\":[\"Mover a lista\"],\"J5nbej\":[\"Crítico\"],\"J5pbP6\":[\"Puede editar roles y permisos de miembros\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JCdzgZ\":[\"Solicitud de función\"],\"JUce1S\":[\"Asignados\"],\"JbXXUW\":[\"Ten en cuenta que esta acción es irreversible.\"],\"JcCDm9\":[\"Plantilla creada\"],\"Jgaz7E\":[\"Permisos restablecidos\"],\"JjEJSy\":[\"Configura tu espacio de trabajo\"],\"JnWJXY\":[\"enlace mágico\"],\"JxhWxU\":[\"en\"],\"JyXBgS\":[\"docs\"],\"K3iLeO\":[\"Mira lo que nuestros usuarios dicen sobre Kan\"],\"K7k9u3\":[\"No se puede mover la tarjeta\"],\"KAsRdK\":[\"Ir a miembros\"],\"KEim/+\":[\"eliminó un adjunto\"],\"KFJgmZ\":[\"El nombre para mostrar debe tener al menos 3 caracteres\"],\"KLJ4eD\":[\"Enlace de invitación copiado\"],\"KM6m8p\":[\"Equipo\"],\"KNKCTb\":[\"Pendientes\"],\"Kec+/t\":[\"Controles avanzados de administrador\"],\"KiVc+q\":[\"Tiempo completo\"],\"KuSt9W\":[\"¿Cómo hago el auto-alojamiento?\"],\"L5WQLg\":[\"Se requiere el token\"],\"L5ZPjz\":[\"actualizó un elemento de la lista de verificación\"],\"LTGE7Y\":[\"Espacio de trabajo creado correctamente. Puedes actualizar más tarde en la configuración.\"],\"LeM5RY\":[\"No se pudieron borrar las anulaciones\"],\"LoUCpj\":[\"Error al actualizar el nombre del espacio de trabajo\"],\"LqWW5F\":[\"Tu nombre para mostrar ha sido actualizado.\"],\"LrcnbT\":[\"Aloja Kan en tu propia infraestructura. Ideal para organizaciones que necesitan control completo sobre sus datos.\"],\"Lt+ZP3\":[\"completó un elemento de la lista de verificación\"],\"M9p3Vw\":[\"Registro de actividad ilimitado\"],\"MCIXdZ\":[\"Conecta tu cuenta de GitHub para importar proyectos.\"],\"MFKlMB\":[\"Invitar\"],\"MHrjPM\":[\"Título\"],\"MI5OBT\":[\"La URL solo puede contener letras, números y guiones\"],\"MK16u2\":[\"Sin fechas\"],\"MKAScN\":[\"Puede ver tableros\"],\"MN6YzG\":[\"Slug del espacio de trabajo actualizado\"],\"MWrbWq\":[\"Configuración | Cuenta\"],\"MdN5zD\":[\"Necesitas ser administrador para gestionar los permisos del espacio de trabajo.\"],\"MdwUGG\":[\"Ahorra tiempo con plantillas de tableros reutilizables.\"],\"MeO/vH\":[\"Esto resultará en la eliminación permanente de todos los datos asociados con este espacio de trabajo.\"],\"MlyjJu\":[\"El nombre para mostrar no puede exceder 280 caracteres\"],\"MxQXhL\":[\"No se pudo crear el espacio de trabajo\"],\"N/bcWA\":[\"Iniciar sesión | kan.bn\"],\"N3380t\":[\"Puede crear tableros\"],\"N7aud6\":[\"Búsqueda inteligente\"],\"NH54UR\":[\"renombró el elemento de la lista de verificación a <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"El tablero ha sido archivado.\"],\"NgaR6B\":[\"Introduce tu contraseña\"],\"NnH3pK\":[\"Prueba\"],\"NoNwIX\":[\"Inactivo\"],\"NypLoL\":[\"renombró una lista de verificación\"],\"O0li0W\":[\"Introduce tu contraseña actual y elige una nueva contraseña segura.\"],\"O1wAlQ\":[\"Invitado\"],\"O3oNi5\":[\"Email\"],\"O83K21\":[\"añadió un elemento de lista de verificación\"],\"O9jVbx\":[\"Prioridad baja\"],\"OAYToL\":[\"Esto eliminará todos los permisos personalizados de los miembros en este espacio de trabajo. Los miembros heredarán permisos únicamente de sus roles.\"],\"OIA0ad\":[\"Nombre del espacio de trabajo actualizado\"],\"OTxjpR\":[\"tu-espacio-de-trabajo\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Desconectar GitHub\"],\"Oi+J+N\":[\"Elige un plan para comenzar. Todos los planes de pago incluyen una prueba gratuita de 14 días.\"],\"OkTY4+\":[\"El secreto no puede exceder los 512 caracteres\"],\"Oo4E6p\":[\"No se puede duplicar la tarjeta\"],\"OpNhRn\":[\"No se requiere tarjeta de crédito\"],\"OtjenF\":[\"Por favor, introduce una dirección de correo electrónico válida\"],\"OvoEq7\":[\"Miembro\"],\"OwneeH\":[\"Nombre de usuario del espacio de trabajo personalizado\"],\"Ozt2vv\":[\"Tu contraseña ha sido cambiada.\"],\"P6dJdq\":[\"Anulaciones eliminadas\"],\"P8Cunr\":[\"Nombre de usuario predeterminado\"],\"PCIlOO\":[\"Añadir miembro\"],\"PELbXB\":[\"Tu cuenta de GitHub está conectada.\"],\"PRjvDT\":[\"¿Estás seguro de que quieres eliminar este comentario?\"],\"PRofO0\":[\"Editar video de YouTube\"],\"PTzsxH\":[\"Visibilidad del tablero actualizada\"],\"PVT7q7\":[\"GitHub conectado\"],\"PZCqeW\":[\"Por favor, inténtalo de nuevo más tarde.\"],\"Pat4r8\":[\"Hoja de ruta básica\"],\"PpZkda\":[\"Funciones\"],\"PyYD/v\":[\"asignó <0>\",[\"0\"],\" a la tarjeta\"],\"Q60WUZ\":[\"No se pudo iniciar el proceso de pago\"],\"Q9pQaX\":[\"Aún no se encontraron roles para este espacio de trabajo.\"],\"QD8opX\":[\"Tablero\"],\"QHhZeE\":[\"Plantilla creada correctamente\"],\"QNtP5M\":[\"Usar plantilla\"],\"Qh7QmR\":[\"Eliminado de favoritos\"],\"QnzD50\":[\"On-premise\"],\"QtACvI\":[\"Crear etiqueta\"],\"Qtzfdk\":[\"Plan Pro ∞\"],\"R+w/Va\":[\"Facturación\"],\"R1c3Mq\":[\"El nombre del tablero es obligatorio\"],\"R275Pz\":[\"Tienes plazas ilimitadas con tu plan Pro. ¡No hay cargo adicional por nuevos miembros!\"],\"R3FsF4\":[\"Error en la descarga\"],\"R41XLH\":[\"Error al actualizar el webhook\"],\"R6pB8R\":[\"Destacar en Github\"],\"RHZu7R\":[\"Amado por equipos en todo el mundo\"],\"RJA+sg\":[\"Nuevo ticket\"],\"RRn9jf\":[\"Haz clic en el enlace que hemos enviado a \",[\"magicLinkRecipient\"],\" para iniciar sesión.\"],\"RSGOS1\":[\"Puede eliminar listas\"],\"RfgJqw\":[\"actualizó la fecha de vencimiento\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Enviar comentarios\"],\"RtlIYB\":[\"Estás a punto de cambiar tu contraseña.\"],\"RzxgOE\":[\"Roles y permisos\"],\"SFnH1j\":[\"¿Por qué hacer un Trello de código abierto?\"],\"SMaFdc\":[\"Cancelar suscripción\"],\"SNfg0e\":[\"Puede ver el espacio de trabajo\"],\"SPLN9O\":[\"Tus datos te pertenecen\"],\"SRvxId\":[\"Secreto HMAC para verificación de firma\"],\"STSYcd\":[\"Puede eliminar comentarios\"],\"SUXBxp\":[\"Ingeniería\"],\"SUvm1Y\":[\"Ideal para personas que comienzan y solo necesitan lo esencial.\"],\"SWEskc\":[\"La URL debe tener al menos 3 caracteres\"],\"Sb2gYF\":[\"Nueva lista\"],\"ScJ9fj\":[\"Política de privacidad\"],\"Se/UIp\":[\"Por hacer\"],\"SiPp29\":[\"Crear webhook\"],\"SkCNhl\":[\"Buscar tableros y tarjetas...\"],\"SlfejT\":[\"Error\"],\"T/pF0Z\":[\"Eliminar de favoritos\"],\"T21jY/\":[\"añadió una etiqueta a la tarjeta\"],\"T7DJ2k\":[\"No se pudo agregar el comentario\"],\"T7LJic\":[\"movió la tarjeta a otra lista\"],\"T7Mywq\":[\"No se pudo actualizar el tablero\"],\"TCOMOO\":[\"Editar permisos\"],\"TCt/8K\":[\"Acceso limitado a la API\"],\"TFv5tM\":[\"No se pudo actualizar el rol\"],\"TH3Irz\":[\"Permiso\"],\"TKFUnX\":[\"Cuenta eliminada\"],\"TX0bT7\":[\"No hay webhooks configurados. Agregue un webhook para recibir notificaciones.\"],\"TXO5TM\":[\"No hay atajos de teclado registrados.\"],\"TYli1B\":[\"Puede editar comentarios\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Revisión de código\"],\"TdfEV7\":[\"Archivado\"],\"TjREUS\":[\"Nueva clave API\"],\"TmvrjU\":[\"La URL del tablero debe tener al menos 3 caracteres\"],\"TvY/XA\":[\"Documentación\"],\"Tz0i8g\":[\"Configuración\"],\"TztLaN\":[\"No se pudo crear la lista\"],\"U2+rn0\":[\"El nombre del webhook es obligatorio\"],\"U3pytU\":[\"Administrador\"],\"U5dMR6\":[\"Ver espacio de trabajo\"],\"UCLeG0\":[\"Términos de servicio\"],\"UGCIzB\":[\"Añadir / editar etiqueta\"],\"UQbwrz\":[\"Todos los sistemas operativos\"],\"URAE3q\":[\"Pausado\"],\"USVCGU\":[\"Error al desactivar el enlace de invitación\"],\"UbRKMZ\":[\"Pendiente\"],\"UbYdrA\":[\"Frecuencia de pago\"],\"UeDFpo\":[\"¿Cómo se financia el proyecto?\"],\"UirJfL\":[\"SLA personalizado\"],\"UlhdTP\":[\"Espacio de trabajo eliminado\"],\"Un80BR\":[\"Amigos OSS\"],\"UoSI+i\":[\"Ideal para equipos pequeños y en crecimiento que necesitan colaboración\"],\"UveK6V\":[\"Ir a la aplicación\"],\"Uworke\":[\"Tiempo parcial\"],\"UxKoFf\":[\"Navegación\"],\"V1KOLq\":[\"Notificaciones por email para menciones\"],\"V3MPSQ\":[\"actualizó el título\"],\"V8YWP3\":[\"Introduce un título personalizado\"],\"VHS0aJ\":[\"¿Eliminar todos los permisos personalizados?\"],\"VKoDQD\":[\"Crear nuevo \",[\"0\"]],\"VUZDlr\":[\"Testimonios\"],\"VXk54Y\":[\"se autoasignó la tarjeta\"],\"VbyRUy\":[\"Comentarios\"],\"VhMDMg\":[\"Cambiar contraseña\"],\"Vt50G1\":[\"Kanban básico\"],\"W/Elkg\":[\"Prioridad media\"],\"W/nQk1\":[\"Plan gratuito\"],\"W1ewR0\":[\"No se pudo copiar el enlace\"],\"W5r8Qh\":[\"eliminó un elemento de la lista de verificación\"],\"W8oT+L\":[\"No se pudo obtener la información del vídeo\"],\"WHHLh9\":[\"No se pudo eliminar el archivo adjunto\"],\"WI4eGo\":[\"¿Cómo obtengo una URL personalizada?\"],\"WQPDcG\":[\"No se pudo actualizar el elemento de la lista de verificación\"],\"WRkpB1\":[\"Registro deshabilitado\"],\"WRsbHO\":[\"Tu cuenta de Trello está conectada.\"],\"WYDptz\":[\"Suscripción requerida\"],\"WYwN1G\":[\"Nueva importación\"],\"WbTDwg\":[\"En progreso\"],\"Weq9zb\":[\"General\"],\"WmPhYW\":[\"Se produjo un error al desconectar tu cuenta de Trello.\"],\"WnEwDO\":[\"¿Ya tienes una cuenta? <0><1>Inicia sesión\"],\"Ws+3X+\":[\"Plazas ilimitadas y funciones avanzadas para equipos en crecimiento.\"],\"Wy6pcF\":[\"No se pudo actualizar la visibilidad del tablero\"],\"X0N0PA\":[\" (editado)\"],\"XDRXbZ\":[\"La descripción del espacio de trabajo debe tener al menos 3 caracteres\"],\"XEoGkQ\":[\"Ir a la página principal\"],\"XILg0L\":[\"Dirección de correo electrónico no válida\"],\"XJOV1Y\":[\"Actividad\"],\"XNxYxq\":[\"Plantillas de tablero\"],\"XTKtey\":[\"Crear lista\"],\"XXbgHS\":[\"Contratado\"],\"XYLcNv\":[\"Soporte\"],\"XicmhT\":[\"Fecha de vencimiento\"],\"Xid3K6\":[\"La URL del tablero solo puede contener letras, números y guiones\"],\"Xjj/kS\":[\"Kanban reinventado\"],\"XpcjLO\":[\"No se pudo actualizar la URL del tablero\"],\"Y8yzGg\":[\"Comienza gratis. Actualiza a medida que tu equipo crece. Sin tarifas ocultas, sin contratos.\"],\"YBBifR\":[\"Desconectar Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"No se pudo reordenar el elemento de la lista de verificación\"],\"YRk79X\":[\"Seguridad avanzada, cumplimiento normativo y soporte dedicado para grandes organizaciones.\"],\"YVT40D\":[\"eliminó la etiqueta <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Error al actualizar la suscripción\"],\"YcyP2z\":[\"No se pudo crear la plantilla\"],\"Yf9FAx\":[\"No podrán acceder a este espacio de trabajo.\"],\"YhvWXb\":[\"Analíticas del tablero\"],\"YirHq7\":[\"Comentarios\"],\"YkfDoz\":[\"Anual\"],\"YoyKbT\":[\"Esta clave API solo se mostrará una vez. Guárdala en un lugar seguro.\"],\"Ypy5pZ\":[\"¿Está seguro de que desea eliminar el webhook \\\"\",[\"webhookName\"],\"\\\"? Esta acción no se puede deshacer.\"],\"YtUfwW\":[\"No se pudo iniciar sesión con \",[\"0\"],\". Por favor, inténtalo de nuevo.\"],\"Yx0Ud8\":[\"Solicitado\"],\"Z3FXyt\":[\"Cargando...\"],\"Z3krJD\":[\"Permitir que los miembros del espacio de trabajo vean las direcciones de correo electrónico de los demás\"],\"Z6r9z1\":[\"No se pudo eliminar la tarjeta\"],\"ZAs2NN\":[\"Todas las funciones Pro +\"],\"ZDGm40\":[\"Eliminar cuenta\"],\"ZDIydz\":[\"Comenzar\"],\"ZDPJBc\":[\"Los nombres de usuario personalizados requieren actualizar a un plan Pro\"],\"ZDo4HN\":[\"Lluvia de ideas\"],\"ZH7TVS\":[\"Título de la tarjeta\"],\"ZL1A+p\":[\"No se pudo subir el archivo adjunto. Por favor, inténtalo de nuevo.\"],\"ZT4Khw\":[\"¿Estás seguro de que quieres eliminar esta tarjeta?\"],\"ZU5IYI\":[\"Tableros ilimitados, listas ilimitadas, tarjetas ilimitadas. No se requiere tarjeta de crédito.\"],\"ZXSPJt\":[\"Se produjo un error inesperado. Por favor, inténtalo de nuevo más tarde.\"],\"ZqDqbi\":[\"Organiza y encuentra tarjetas rápidamente con potentes herramientas de filtrado.\"],\"Zz1qkk\":[\"Tarjetas ilimitadas\"],\"a3LDKx\":[\"Seguridad\"],\"aHCEmh\":[\"Precios\"],\"aHRWVI\":[\"eliminó la fecha de vencimiento\"],\"aJ4pMe\":[\"Preguntas frecuentes\"],\"aKJHG+\":[\"Archivar tablero\"],\"aW3TOw\":[\"Notificaciones por email\"],\"aWDhU5\":[\"Kanban es mejor en equipo. Perfecto para equipos pequeños y en crecimiento que buscan colaborar.\"],\"aWlSc/\":[\"Crear nueva lista\"],\"abUZlY\":[\"Añadir detalles...\"],\"aelko+\":[\"Puedes obtener una URL personalizada para tu espacio de trabajo, como <0>kan.bn/kan, yendo a la <1>configuración de tu espacio de trabajo y comprando una suscripción pro. ¡Todas las suscripciones ayudan a financiar el desarrollo del proyecto!\"],\"agPptk\":[\"Mediano\"],\"aiHZVP\":[\"Ver documentación\"],\"b/LfJo\":[\"email\"],\"b3Thhd\":[\"Error al subir\"],\"b5FKyH\":[\"añadió la etiqueta <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Crear \",[\"0\"]],\"bD8I7O\":[\"Completar\"],\"bDI6VI\":[[\"0\"],\" se ha eliminado de tus favoritos.\"],\"bFREhu\":[\"Fin de la lista\"],\"bJZm1W\":[\"Solicitantes\"],\"bJtM0P\":[\"Esta URL de espacio de trabajo está reservada\"],\"bKzM8L\":[\"Gestor de cuenta dedicado\"],\"bZSICm\":[\"No se pudo agregar el elemento de la lista de verificación\"],\"bcIybO\":[\"El nombre del espacio de trabajo es obligatorio\"],\"bdztP2\":[\"Investigación\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"El rol del miembro se ha actualizado.\"],\"bff61F\":[\"Plan de equipo\"],\"bfgr/e\":[\"Pregunta\"],\"bmXKoX\":[\"añadió \",[\"0\"],\" etiquetas: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Error al eliminar la cuenta\"],\"c/IAuR\":[\"Importante\"],\"c3b0B0\":[\"Comenzar\"],\"c4nMcR\":[\"Tu avatar\"],\"c9AJhn\":[\"Unirse al espacio de trabajo\"],\"cAgBMh\":[\"Control y propiedad completos:\"],\"cFQEU/\":[\"Abrir atajos de teclado\"],\"cOh+MI\":[\"Selección\"],\"cWXW+7\":[\"Agregar webhook\"],\"cWcxrL\":[\"Nueva lista de verificación\"],\"cWtfn1\":[\"Actualizar a Pro ($29/mes)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Descripción del espacio de trabajo\"],\"cji2nM\":[\"Error al crear el enlace de invitación\"],\"cnGeoo\":[\"Eliminar\"],\"cp1rsD\":[\"Desactivar enlace de invitación\"],\"csFbe+\":[\"Ir a plantillas\"],\"curoK5\":[\"Nuevo espacio de trabajo\"],\"d+F6q9\":[\"Creado\"],\"d33Usy\":[\"Crear lista de verificación\"],\"dEgA5A\":[\"Cancelar\"],\"dUh9QW\":[\"Planificación\"],\"ddrz1m\":[\"Atrasado\"],\"delOXn\":[\"No se pudieron actualizar las etiquetas\"],\"dgr4Kq\":[\"Editar etiqueta\"],\"dmKdk0\":[\"Una vez que elimines tu espacio de trabajo, no hay vuelta atrás. Esta acción no se puede deshacer.\"],\"dsLT3m\":[\"Crear tarjeta\"],\"dtQIWT\":[\"Colaboración\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Esta URL de espacio de trabajo ya está en uso\"],\"e1v+J3\":[\"Secreto (opcional)\"],\"e4hPSt\":[\"Restablecer a valores predeterminados del rol\"],\"eEQyz+\":[\"Rastrea todos los cambios de tarjetas con un historial de actividad detallado.\"],\"ePK91l\":[\"Editar\"],\"eZCGbT\":[\"Sí, ofrecemos un plan gratuito para siempre para uso individual. Sin restricciones, sin muros de pago, sin límites.\"],\"edWbV6\":[\"Enlace copiado\"],\"ekCRTP\":[\"Rechazado\"],\"en3oy5\":[\"Función\"],\"euc6Ns\":[\"Duplicar\"],\"eus61c\":[\"Enviar prueba\"],\"evg7+A\":[\"Tus tableros han sido importados.\"],\"evj0lK\":[\"¿Ofrecéis un plan gratuito?\"],\"f8fH8W\":[\"Diseño\"],\"f8lDFq\":[\"creó la tarjeta\"],\"fDQ7hA\":[\"Copiar etiquetas\"],\"fEY2vP\":[\"Tarjeta no encontrada\"],\"fQCrjt\":[\"La visibilidad de tu tablero se ha establecido en \",[\"0\"],\".\"],\"fR9laE\":[\"Introduce tu contraseña actual\"],\"fSf2ee\":[\"Ver nuestra hoja de ruta.\"],\"fW5sSv\":[\"Editar webhook\"],\"fYVH36\":[\"No se pudo actualizar el comentario\"],\"fcWrnU\":[\"Cerrar sesión\"],\"fuwKpE\":[\"Por favor, inténtalo de nuevo.\"],\"fvLNDy\":[\"Aún no se han creado listas\"],\"fzGyWs\":[\"Cambia el tamaño de fuente de la aplicación.\"],\"fziA2d\":[\"Comentarios ilimitados\"],\"g2xBxu\":[\"Importar tus tableros de Trello a Kan es fácil. Puedes seguir nuestra guía paso a paso <0>aquí.\"],\"g9NChz\":[\"Gestor de cuenta\"],\"gGx5tM\":[\"Editando\"],\"gKmoow\":[\"Esta URL está reservada\"],\"gL/7jw\":[\"Añadir descripción... (escribe '/' para abrir comandos o '@' para mencionar)\"],\"gQ/02p\":[\"Error al desconectar GitHub\"],\"gUX7b+\":[\"La alternativa de código abierto <0/> a Trello\"],\"gZxH/p\":[\"cambió la fecha de vencimiento a <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"El nombre del espacio de trabajo no puede superar los 64 caracteres\"],\"gkxGkF\":[\"Prueba gratuita de 14 días · Cambia de plan o cancela en cualquier momento\"],\"gkzAEM\":[\"Continuar con \",[\"0\"]],\"goklcJ\":[\"Entrevistando\"],\"gpfJ3v\":[\"Gratis, para siempre\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"La URL del tablero no puede exceder 60 caracteres\"],\"h16FyT\":[\"Listas\"],\"h2FKMV\":[\"No tienes permiso\"],\"h2ztFt\":[\"Todas las funciones gratuitas +\"],\"h4VV67\":[\"añadió una lista de verificación\"],\"h7MgpO\":[\"Atajos de teclado\"],\"h8DugX\":[\"Etiquetas\"],\"hAMddS\":[\"se desasignó a sí mismo de la tarjeta\"],\"hB02vO\":[\"Gestionar miembros\"],\"hXMFoN\":[\"Sin listas\"],\"hYzsXr\":[\"Configuración | Integraciones\"],\"hty0d5\":[\"Lunes\"],\"i0ZMQl\":[\"Tablero archivado\"],\"i30J2U\":[\"No se encontraron proyectos\"],\"i5rE2/\":[\"La URL no puede superar los 64 caracteres\"],\"iH8pgl\":[\"Atrás\"],\"iHcdea\":[\"Vence la próxima semana\"],\"iLbjv+\":[\"Puede editar espacio de trabajo\"],\"iQmbPb\":[\"Licencia\"],\"iSLIjg\":[\"Conectar\"],\"iTylMl\":[\"Plantillas\"],\"iVIGZb\":[\"Archivo adjunto subido\"],\"isRobC\":[\"Nuevo\"],\"itgYbC\":[\"¡Webhook de prueba enviado correctamente!\"],\"iwr7AP\":[\"Ideas\"],\"iy1wb+\":[\"Configuración | API\"],\"j0o6ml\":[\"Descripción de tu espacio de trabajo\"],\"j1+HPc\":[\"Ocurrió un error al conectar tu cuenta de GitHub.\"],\"j2+d/o\":[\"Referencia de API\"],\"j9IZZ0\":[\"URL del espacio de trabajo personalizada\"],\"jDRt4n\":[\"¿Quieres cancelar la suscripción?\"],\"jEw0Mr\":[\"Por favor, ingrese una URL válida\"],\"jIuWsV\":[\"El nombre del webhook no puede exceder 255 caracteres\"],\"jL82rC\":[\"Eliminar permisos personalizados\"],\"jNuzV/\":[\"Puede eliminar tarjetas\"],\"jQ6I8X\":[\"Rol actualizado\"],\"jZBHkN\":[\"El nombre del espacio de trabajo debe tener al menos 3 caracteres\"],\"jfC/xh\":[\"Contacto\"],\"jl3aEJ\":[\"marcó el elemento de la lista de verificación <0>\",[\"0\"],\" como incompleto\"],\"jlB2RY\":[\"La contraseña actual que ingresaste es incorrecta.\"],\"jwI32v\":[\"Tablero no encontrado\"],\"k7rCa/\":[\"Grande\"],\"kECVpo\":[\"¿Estás seguro de que quieres eliminar esta etiqueta?\"],\"kQwvU8\":[\"eliminó una etiqueta de la tarjeta\"],\"kSxwQL\":[\"Puedes invitar a miembros del equipo haciendo clic en el botón \\\"Invitar\\\" en la esquina superior derecha de la <0>página de miembros e ingresando su dirección de correo electrónico. Recibirán un correo con un enlace para unirse al espacio de trabajo.\"],\"kYu0eF\":[\"Eliminar espacio de trabajo\"],\"kfOGMr\":[\"Victoria rápida\"],\"klpSmb\":[\"Editar URL del espacio de trabajo\"],\"kp6L3T\":[\"Este nombre de usuario de espacio de trabajo ya está en uso\"],\"kryGs+\":[\"Tarjeta\"],\"kuoc68\":[\"$10/mes\"],\"kxEs5t\":[\"Importaciones de Trello\"],\"l2PIAy\":[\"Autoalojar con Github\"],\"l31EoQ\":[\"Encuentra respuestas a preguntas frecuentes sobre Kan. ¿No encuentras lo que buscas? No dudes en <0>contactarnos.\"],\"l3s5ri\":[\"Importar\"],\"l4asa1\":[\"Este tablero es privado o no existe\"],\"lGjicL\":[\", o consulta nuestro\"],\"lKAvEd\":[\"Error al desconectar Trello\"],\"lXvXNI\":[\"No se pudo copiar el enlace de invitación\"],\"lYT7pQ\":[\"Eliminar lista\"],\"lkz85l\":[\"La principal diferencia entre Kan y Trello es que Kan es de código abierto, lo que permite a cualquiera ver, modificar y contribuir a nuestro código. Nuestra oferta en la nube tampoco ofrece restricciones en las funciones para uso individual, mientras que Trello bloquea funciones básicas como el número de tableros que puedes crear detrás de un muro de pago.\"],\"lo8xBK\":[\"¿Estás seguro de que quieres eliminar \",[\"entityLabel\"],\"?\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"lsgnzd\":[\"Error al actualizar a Pro\"],\"lyqwgn\":[\"Añadir etiqueta\"],\"m2nk0i\":[\"Precios simples\"],\"mErq7F\":[\"Registrarse\"],\"mHhffx\":[\"No se pudo crear la lista de verificación\"],\"mTGd3+\":[\"eliminó una lista de verificación\"],\"mTwGOf\":[\"Este enlace de invitación no es válido o ha caducado.\"],\"mU+M00\":[[\"0\"],\" se ha añadido a tus favoritos.\"],\"mVZH9V\":[\"Cuando Trello se lanzó en 2011, sorprendió a todos con su simplicidad cuidadosamente diseñada, pero con los años perdió su magia y se convirtió en algo más parecido a \\\"Jira Lite\\\". Este proyecto es nuestro intento de recuperar la magia original de la simplicidad de Trello, en código abierto.\"],\"mZGPxt\":[\"Enlace de invitación copiado al portapapeles\"],\"mchgzf\":[\"Te has registrado correctamente.\"],\"mgXgHu\":[\"Ir a tableros\"],\"mrhyIB\":[\"Perfecto para equipos pequeños y en crecimiento que buscan colaborar.\"],\"mwBdZ2\":[\"Esto resultará en la eliminación permanente de todos los datos asociados con tu cuenta.\"],\"mx8+1u\":[\"Miembros ilimitados\"],\"n+xLOH\":[\"Atención al cliente\"],\"n1GRql\":[\"Nueva etiqueta\"],\"n1ekoW\":[\"Iniciar sesión\"],\"n6EWYz\":[\"Se utiliza para firmar las cargas útiles del webhook para verificación. Dejar en blanco para mantener el secreto existente.\"],\"n9V+ps\":[\"Introduce tu nombre\"],\"nKBUeF\":[\"La tarjeta ha sido duplicada.\"],\"nOhz3x\":[\"Cerrar sesión\"],\"nYNMZZ\":[\"Posición en la lista (0 = primero, dejar vacío para el final)\"],\"nabda1\":[\"Eliminar tarjeta\"],\"nbfdhU\":[\"Integraciones\"],\"ngBZOd\":[\"Añadir comentario... (escribe '/' para abrir comandos o '@' para mencionar)\"],\"nhMhRr\":[\"¡Gracias por tus comentarios!\"],\"njJFtc\":[\"Eliminar comentario\"],\"nk7caK\":[\"Conectar Trello\"],\"nol/Fb\":[\"¿Cómo invito a miembros del equipo?\"],\"notwF1\":[\"El nombre de la plantilla no puede superar los 100 caracteres\"],\"nq7q3Z\":[\"El nombre de la clave de API no puede superar los 30 caracteres\"],\"nqdIhs\":[\"Plantillas de tablero personalizadas\"],\"nryrgW\":[\"Todas las anulaciones de permisos de miembros se han restablecido a los valores predeterminados de su rol.\"],\"o+JCfN\":[\"Confiado por equipos ágiles<0/>de todo el mundo\"],\"o4e/70\":[\"Seleccione al menos un evento\"],\"o4sQAg\":[\"Error al crear el webhook\"],\"o7J4JM\":[\"Filtrar\"],\"o8adVG\":[\"Subidas de archivos de 10 mb\"],\"o9WLwO\":[\"No se pudo actualizar la tarjeta\"],\"oVBq1w\":[\"por usuario/mes\"],\"oW13KZ\":[\"Comienza gratis hoy\"],\"odFCYX\":[\"Invitación no válida\"],\"okpxfB\":[\"Crear nueva clave\"],\"oyRjD/\":[\"Plan Pro\"],\"p/hk9N\":[\"Has iniciado sesión correctamente.\"],\"pBsoKL\":[\"Añadir a favoritos\"],\"pFGfsR\":[\"Echa un vistazo a algunos de nuestros proyectos de código abierto favoritos.\"],\"pFKC6A\":[\"Nombre de la clave de API\"],\"pL78ec\":[\"Añadido a favoritos\"],\"pVctI7\":[\"Opción de despliegue on-premise\"],\"pXVFJy\":[\"Puede eliminar tableros\"],\"pa9o5D\":[\"Recorta tu avatar\"],\"pfa8F0\":[\"Nombre para mostrar\"],\"pmUArF\":[\"Espacio de trabajo\"],\"pnrmSP\":[\"Nueva tarjeta\"],\"ppaRWv\":[\"Autoalojamiento\"],\"pvnfJD\":[\"Oscuro\"],\"q+lt9D\":[\"Error al eliminar la etiqueta\"],\"q3il6U\":[\"Tamaño de fuente\"],\"qPP4lD\":[\"Invitar miembros requiere un plan Team. Serás redirigido para actualizar tu espacio de trabajo.\"],\"qQXocp\":[\"Puede gestionar la configuración del espacio de trabajo\"],\"qaS+1/\":[\"Ideal para equipos que quieren escalar sin límites\"],\"qfUS/w\":[\"Amigos de código abierto\"],\"qkjvgj\":[\"Tu espacio de trabajo ha sido eliminado.\"],\"qlAIQ1\":[\"Remoto\"],\"qtE5nt\":[\"Añadir un elemento...\"],\"qzdST2\":[\"Visibilidad del tablero\"],\"r6BgwX\":[\"Se requiere contraseña para iniciar sesión.\"],\"rD6UIt\":[\"Comenzar en la nube\"],\"rF8SEQ\":[\"Editar comentario\"],\"rQRXo8\":[\"Ingrese el nuevo secreto para actualizar\"],\"rQXTmd\":[\"URL de la tarjeta copiada al portapapeles\"],\"rRM7r0\":[\"Importa tus tableros de Trello y empieza a trabajar de inmediato.\"],\"rYUZIe\":[\"Seleccionar origen\"],\"raHesj\":[\"¡Te has dado de baja!\"],\"rarRW/\":[\"Error al invitar al miembro\"],\"ri1hHe\":[\"Vence el próximo mes\"],\"rmN315\":[\"Diversión\"],\"rs7L54\":[\"añadió un miembro a la tarjeta\"],\"rtbVvN\":[\"Puede editar listas\"],\"s+MGs7\":[\"Recursos\"],\"s6iE/c\":[\"El registro está actualmente deshabilitado. Por favor, inténtalo de nuevo más tarde.\"],\"sBhOFG\":[\"Gestión de tareas simple y visual que simplemente funciona. Arrastra y suelta tarjetas, colabora con tu equipo y haz más cosas.\"],\"sDLCvT\":[\"Conecta tus herramientas favoritas para optimizar tu flujo de trabajo.\"],\"sDuhfK\":[\"Oferta de lanzamiento: asientos ilimitados por solo $29/mes con Pro\"],\"sU2uWc\":[\"Tarjeta duplicada\"],\"sUZo7y\":[\"Registrarse | kan.bn\"],\"sVBn4K\":[\"Error al actualizar el nombre para mostrar\"],\"sY2lzr\":[\"No hay URL de descarga disponible para este adjunto.\"],\"sbNNyi\":[\"Nuevo webhook\"],\"snMaH4\":[\"Eliminar webhook\"],\"t+R8+P\":[\"Ejecución\"],\"t/YqKh\":[\"Eliminar\"],\"t0dTPm\":[\"Configure webhooks para recibir notificaciones cuando se creen, actualicen, muevan o eliminen tarjetas.\"],\"t2nDzl\":[\"Ver y gestionar tu facturación y suscripción.\"],\"t6FvJH\":[\"Puede añadir comentarios\"],\"tGwwnq\":[\"actualizó la descripción\"],\"tHcbLF\":[\"Puede editar tableros\"],\"tIdipJ\":[\"Editar URL del tablero\"],\"tMYIu7\":[\"Registros de actividad\"],\"tOZp9v\":[\"Roles de usuario y permisos configurables\"],\"tTbref\":[\"Se requiere contraseña para registrarse.\"],\"tYN21H\":[\"El usuario ya es miembro de este espacio de trabajo\"],\"tbNcu4\":[\"Tablero desarchivado\"],\"tca56/\":[\"Tu archivo se ha subido correctamente.\"],\"tfDRzk\":[\"Guardar\"],\"tlhgDC\":[\"No hay tableros archivados\"],\"tmlJN1\":[\"Por favor, introduce una URL de YouTube válida\"],\"tmpW+w\":[\"Eliminar tablero\"],\"tst44n\":[\"Eventos\"],\"tyHiOa\":[\"Por favor, inténtalo de nuevo más tarde o contacta con atención al cliente.\"],\"u2+JIh\":[\"Las URLs personalizadas requieren actualizar a un plan Pro\"],\"u8JHrO\":[\"Limpiar filtros\"],\"uAQUqI\":[\"Estado\"],\"uEGGDs\":[\"Mi webhook\"],\"uOqaMC\":[\"Has sido invitado a unirte a un espacio de trabajo.\"],\"uP4V6I\":[\"Gratis para todos\"],\"uXGLuq\":[\"Crear clave API\"],\"uZg2+w\":[\"Potencia tu espacio de trabajo por solo $29/mes. Esto es lo que obtendrás:\"],\"uck1tz\":[\"eliminó un miembro de la tarjeta\"],\"usVytm\":[\"Una vez que elimines tu cuenta, no hay vuelta atrás. Esta acción no se puede deshacer.\"],\"uvH2xS\":[\"Copiar miembros\"],\"v+Wp++\":[\"Código abierto\"],\"v1kQyJ\":[\"Webhooks\"],\"v3YoMA\":[\"Senior\"],\"vAR/I8\":[\"Ejecutar en tu propia infraestructura\"],\"vAj6xG\":[\"Puedes auto-alojar siguiendo las instrucciones en nuestro <0>repositorio.\"],\"vSJd18\":[\"Vídeo\"],\"vUr5JT\":[\"¿No tienes una cuenta? <0><1>Regístrate\"],\"vXIe7J\":[\"Idioma\"],\"vXemf6\":[\"Error\"],\"va/3u1\":[\"Controla quién puede ver y editar tus tableros.\"],\"vbskQn\":[\"El nombre de la clave de API es obligatorio\"],\"veIDCY\":[\"Iniciar prueba gratuita de 14 días\"],\"vfRdCZ\":[\"No se pudieron restablecer los permisos\"],\"vgdzLf\":[\"Crear otro\"],\"vifyyw\":[\"Legal\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"Los permisos de este miembro se han restablecido a los valores predeterminados de su rol.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"facturación mensual\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Largo plazo\"],\"vwGkYB\":[\"La contraseña debe tener al menos 8 caracteres\"],\"wIb7Ng\":[\"Desarrollo de software\"],\"wK4OTM\":[\"Título (opcional)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Por favor, selecciona un archivo para subir.\"],\"wY+6Ye\":[\"Esta URL de tablero ya está en uso\"],\"wakO3W\":[\"añadió la lista de verificación <0>\",[\"0\"],\"\"],\"wewm3j\":[\"El nombre del tablero no puede exceder los 100 caracteres\"],\"wgNoIs\":[\"Seleccionar todo\"],\"wlQNTg\":[\"Miembros\"],\"wqkcin\":[\"Puede ver comentarios\"],\"wqxglO\":[\"Aprendizaje\"],\"wruKPE\":[\"Apoya el desarrollo del proyecto\"],\"wsy94z\":[\"Ideal para grandes organizaciones con necesidades avanzadas\"],\"wtxjAY\":[\"Miembros del espacio de trabajo\"],\"x0kMO/\":[\"Error al actualizar la URL del espacio de trabajo\"],\"x8GeCD\":[\"Nombre para mostrar actualizado\"],\"xEbBrW\":[\"¿Qué licencia estás usando?\"],\"xGVfLh\":[\"Continuar\"],\"xLTZVf\":[\"Día de inicio de semana\"],\"xMn+V9\":[\"Importando desde Trello\"],\"xRPn3U\":[\"Introduce tu dirección de email\"],\"xvcYhz\":[\"Elimina cualquier permiso personalizado de miembros para que todos los miembros solo hereden permisos de sus roles predeterminados.\"],\"y3aU20\":[\"Guardar cambios\"],\"yD3ZSw\":[\"Cambia tus preferencias de idioma.\"],\"yV7o5I\":[\"¿Cómo importo mis tableros de Trello?\"],\"yb/fjw\":[\"Aprobación\"],\"yhLUU8\":[\"Error al conectar GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Importar proyecto (1)\"],\"other\":[\"Importar proyectos (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Cerrar\"],\"zC8Whw\":[\"Comienza creando una nueva lista\"],\"zERArS\":[\"actualizó el título a <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Crear enlace de invitación\"],\"zMlxCA\":[\"1 usuario\"],\"zMquA7\":[\"Elige un plan\"],\"zQPhSa\":[\"Convertir en enlace\"],\"zQX5Dj\":[\"Nombre de la lista\"],\"zYRVNp\":[\"Seleccionar una lista\"],\"zkWmBh\":[\"Anual\"],\"zl1b97\":[\"No se pudo crear la tarjeta\"],\"zoEbXq\":[\"Puede ver tarjetas\"],\"zt/6cS\":[\"Ideal para equipos pequeños que desean colaborar y avanzar más rápido juntos.\"],\"zto8aj\":[\"Trello desconectado\"],\"zwBp5t\":[\"Privado\"],\"zwTiVn\":[\"eliminó un adjunto <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Más información\"],\"zxKs+y\":[\"Vence mañana\"],\"zzDlyQ\":[\"Éxito\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Redes sociales\"],\"+3TYXa\":[\"Para la sostenibilidad a largo plazo, reconocemos que todos los buenos proyectos de código abierto necesitan una fuente de ingresos. La nuestra proviene de la oferta de pago en la nube para espacios de trabajo con múltiples usuarios y para slugs de espacio de trabajo personalizados. No hay obligación de usarla, y puedes alojar el software en tu propia infraestructura de forma gratuita.\"],\"+5kO8P\":[\"Sábado\"],\"+8Nek/\":[\"Mensual\"],\"+EkBs0\":[\"No pudimos actualizar tus preferencias. Por favor, inténtalo de nuevo.\"],\"+MdEsf\":[\"Se requiere una nueva contraseña\"],\"+OhFss\":[\"Comienza gratis, sin límites de uso. Para colaboración, actualiza a un plan que se ajuste al tamaño de tu equipo.\"],\"+VoTOr\":[\"facturado mensualmente\"],\"+djOzj\":[\"Invitar miembro\"],\"+h2faV\":[\"Configuración | Webhooks\"],\"+jbXzb\":[\"Tus proyectos han sido importados.\"],\"+nvZ6j\":[\"Etiquetas y filtros\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Plantilla\"],\"/asTmx\":[\"Reporte de error\"],\"/bBVaD\":[\"GitHub desconectado\"],\"/bZzdR\":[\"Menciones\"],\"/f3t6v\":[\"Configura qué acciones están permitidas para cada rol del espacio de trabajo. Estos permisos se aplican a todos los miembros con ese rol.\"],\"/gaSVU\":[\"Hoja de ruta\"],\"/glL9Q\":[\"No hay \",[\"0\"]],\"/jd3aj\":[\"Roles avanzados de administrador\"],\"/lDBHm\":[\"Preguntas frecuentes\"],\"/rn4RE\":[\"Una aplicación kanban potente y flexible que te ayuda a organizar el trabajo, hacer seguimiento del progreso y obtener resultados, todo en un solo lugar.\"],\"/tOdd2\":[\"Tu imagen de perfil ha sido actualizada.\"],\"0+0/3e\":[\"Crear nueva etiqueta\"],\"0+ewPp\":[\"Mejora\"],\"02i3WU\":[\"Importaciones\"],\"06EQqT\":[\"Duplicando…\"],\"09Tv5j\":[\"Reconnecting…\"],\"0AfkMq\":[\"Your role changed in\"],\"0KjpAr\":[\"Puede ver miembros\"],\"0RE1AJ\":[\"Los tableros que archives aparecerán aquí.\"],\"0StR7t\":[\"Introduce tu nueva contraseña\"],\"0jV46i\":[\"No se pudo eliminar el elemento de la lista de verificación\"],\"0qyZ4b\":[\"Cargando permisos...\"],\"0rPv1T\":[\"Imagen de perfil actualizada\"],\"0utuU6\":[\"Copiar listas de verificación\"],\"0xD8Of\":[\"La página que buscas no existe o ha sido movida.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Importar tablero (1)\"],\"other\":[\"Importar tableros (\",[\"boardCount\"],\")\"]}]],\"11dHnN\":[\"You were removed from\"],\"14Xi3Z\":[\"Añadir un nuevo miembro costará \",[\"price\"],\" adicionales (\",[\"billingType\"],\") por puesto.\"],\"1H5u1m\":[\"¿Preguntas?\"],\"1WuwiM\":[\"Ir a configuración\"],\"1bJKhj\":[\"Copiar enlace a la tarjeta\"],\"1hzdxO\":[\"Permisos del espacio de trabajo\"],\"1iShX0\":[\"Vence hoy\"],\"1njn7W\":[\"Claro\"],\"1rVAfU\":[\"Cargar más actividades\"],\"1rWxEw\":[\"Esperando al cliente\"],\"1sRmLC\":[\"Discute y colabora en tarjetas.\"],\"1wCGT0\":[\"Tableros ilimitados\"],\"25fAUC\":[\"Tu enlace de cancelación de suscripción no tiene un token. Por favor, abre el último correo electrónico e inténtalo de nuevo.\"],\"25mvI+\":[\"Los enlaces de invitación requieren una suscripción Team o Pro. Por favor, actualiza tu espacio de trabajo.\"],\"29sSki\":[\"completó el elemento de la lista de verificación <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"Lista\"],\"2Bu8xj\":[\"No se encontraron tableros\"],\"2M84k3\":[\"Permisos personalizados\"],\"2MPcep\":[\"Importación completada\"],\"2POOFK\":[\"Gratis\"],\"2Py5S/\":[\"Reconozco que todos los datos del espacio de trabajo se eliminarán permanentemente y quiero continuar.\"],\"2Q871c\":[\"No se pudo agregar la etiqueta\"],\"2QGEbi\":[\"No se pudo eliminar el comentario\"],\"2SePRT\":[\"Has sido invitado a unirte a un espacio de trabajo en kan.bn.\"],\"2X4ecw\":[\"Webhook eliminado correctamente\"],\"2h4PVB\":[\"El nombre de tu espacio de trabajo ha sido actualizado.\"],\"2liqDZ\":[\"Reconozco que todos los datos de mi cuenta se eliminarán permanentemente y quiero continuar.\"],\"2q/Q7x\":[\"Visibilidad\"],\"2roTVj\":[\"Comentarios enviados\"],\"3LDCpD\":[\"Esta acción no se puede deshacer.\"],\"3WXdoZ\":[\"Siempre puedes cambiar esto más tarde en la configuración.\"],\"3ZjRJY\":[\"renombró la lista de verificación <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Cualquiera con este enlace puede unirse a tu espacio de trabajo\"],\"3d54Wj\":[\"Webhook actualizado correctamente\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Conectar GitHub\"],\"3pIq39\":[\"Roles de administrador\"],\"4630Pc\":[\"Card updated\"],\"479pdJ\":[\"Confirma tu nueva contraseña\"],\"4DOCMI\":[\"URL de YouTube\"],\"4Revpc\":[\"Pequeño\"],\"4RoY9J\":[\"Artículo de blog\"],\"4XF0BB\":[\"Foto de perfil\"],\"4gAX8s\":[\"Alternar menú\"],\"4kJRen\":[\"Escribiendo\"],\"4obmDr\":[\"404 - Página no encontrada | kan.bn\"],\"4sxGcV\":[\"You were assigned to a card\"],\"51UCsN\":[\"Mover a otra lista\"],\"53QYh8\":[\"No se pudo crear el tablero\"],\"55xJ/O\":[\"Error al cambiar la contraseña\"],\"58AiWX\":[\"Por favor, confirma tu nueva contraseña\"],\"5ACX4z\":[\"Newsletter\"],\"5IXWmO\":[\"Revisa tu bandeja de entrada\"],\"5P4rhH\":[\"No se pudieron actualizar los miembros\"],\"5RkSzq\":[\"Copiar enlace del tablero\"],\"5eZwRW\":[\"Conecta tu cuenta de Trello para importar tableros.\"],\"5h8ooz\":[\"Claves de API\"],\"5iplxh\":[\"La nueva contraseña debe ser diferente de la contraseña actual\"],\"5k0NLb\":[\"Revisar\"],\"5lWFkC\":[\"Iniciar sesión\"],\"5ntVtp\":[\"Error al probar el webhook\"],\"5y6qY8\":[\"añadió un archivo adjunto\"],\"69b7aE\":[\"Abrir menú de comandos\"],\"6EWT6T\":[\"Reclutamiento\"],\"6FDocz\":[\"Registrarse con \"],\"6FsGbN\":[\"Comienza creando un nuevo \",[\"0\"]],\"6OTo9n\":[\"El nombre de la plantilla es obligatorio\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Nuevo \",[\"0\"]],\"6YtxFj\":[\"Nombre\"],\"6mbe4b\":[\"Individuales\"],\"6sKjjx\":[\"Individual\"],\"6tDFBe\":[\"Los permisos del miembro se han actualizado.\"],\"6uBU1F\":[\"Acceso completo a la API\"],\"6zeSBB\":[\"Puede crear tarjetas\"],\"74F7N/\":[\"¿Estás seguro de que quieres eliminar tu cuenta?\"],\"7EhE4k\":[\"Actualizar etiqueta\"],\"7L01XJ\":[\"Acciones\"],\"7PzzBU\":[\"Usuario\"],\"7Qqqyu\":[\"New comment on\"],\"7RpHg/\":[\"Nombre de usuario personalizado\"],\"7Ufoyg\":[\"Listas ilimitadas\"],\"7aONWr\":[\"La URL no puede exceder 2048 caracteres\"],\"7b2yuC\":[\"Por favor, introduce una contraseña válida\"],\"7d1a0d\":[\"Público\"],\"7eMo+U\":[\"Ir al inicio\"],\"7hktsm\":[\"Primeros pasos\"],\"7i8j3G\":[\"Empresa\"],\"8+BY11\":[\"URL del tablero copiada al portapapeles\"],\"86FLn5\":[\"Subidas de archivos ilimitadas\"],\"86XI28\":[\"Confirma tus preferencias de correo electrónico:\"],\"8AbRER\":[\"Establecer fecha de vencimiento\"],\"8AwlaR\":[\"Miembros ilimitados y un nombre de usuario personalizado para el espacio de trabajo para equipos listos para escalar.\"],\"8F1i42\":[\"Página no encontrada\"],\"8Is1ih\":[\"Oferta de lanzamiento\"],\"8RdLDU\":[\"Proyecto personal\"],\"8TveY+\":[\"Tableros\"],\"8Z4pNX\":[\"Puede crear listas\"],\"8iP0S8\":[\"Todo lo del plan gratuito, más:\"],\"8iP9oQ\":[\"La prueba del webhook falló\"],\"8yFGGF\":[\"No se pudo eliminar el miembro\"],\"99VIgC\":[\"Eliminar miembro\"],\"9HDx2Z\":[\"You were mentioned in\"],\"9PaIxv\":[\"Funciones principales\"],\"9Xigls\":[\"En revisión\"],\"9YPBHv\":[\"Error al eliminar el webhook\"],\"9cDpsw\":[\"Permisos\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"9h7RDh\":[\"Oferta\"],\"9lFfqv\":[\"/mes\"],\"9s9O5h\":[\"Error al eliminar el espacio de trabajo\"],\"9u5BOr\":[\"Miembros | \",[\"0\"]],\"9wdpwp\":[\"Portal de facturación\"],\"9x4DAL\":[[\"0\"],\" no encontrado\"],\"9y1RcT\":[\"Apenas estamos empezando.\"],\"A23Y7X\":[\"Unirse al espacio de trabajo | kan.bn\"],\"A42Dqn\":[\"Marca personalizada\"],\"A5hiCy\":[\"Crear plantilla\"],\"A8jqN7\":[\"No se pudo enviar el comentario\"],\"ABCjd9\":[\"Publicación\"],\"ADEin1\":[\"Configuración | Facturación\"],\"ALhEZV\":[\"Puede invitar miembros\"],\"ANyn0x\":[\"Todo lo que necesitas, gratis para siempre. Tableros ilimitados, listas ilimitadas, tarjetas ilimitadas. Actualiza cuando quieras.\"],\"ARvBT/\":[\"facturado anualmente\"],\"ASjvm9\":[\"URL del espacio de trabajo\"],\"AUYALh\":[\"Próximamente\"],\"AX4ktp\":[\"Creación de contenido\"],\"AZI/wb\":[\"Etiquetas y filtros\"],\"AdxYds\":[\"Tu cuenta de GitHub ha sido desconectada.\"],\"AeXO77\":[\"Cuenta\"],\"Alp2ti\":[\"Contactar con ventas\"],\"Ax/hYa\":[\"La descripción del espacio de trabajo no puede superar los 280 caracteres\"],\"B3xxao\":[\"Añadir una tarjeta\"],\"BBUDfW\":[\"Urgente\"],\"BEVzjL\":[\"Importación fallida\"],\"BJbLe4\":[\"Estamos usando la <0>licencia AGPL-3.0.\"],\"BMkVQ3\":[\"eliminó la lista de verificación <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"movió la tarjeta de <0>\",[\"0\"],\" a <1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Duplicar tarjeta\"],\"BZkYSt\":[\"eliminó \",[\"0\"],\" etiquetas: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"¿Estás seguro de que quieres eliminar el espacio de trabajo \",[\"0\"],\"?\"],\"Bhgd0l\":[\"Contáctanos\"],\"BzEFor\":[\"o\"],\"C56tim\":[\"No se pudo actualizar la fecha de vencimiento\"],\"C6gv54\":[\"El tablero ha sido desarchivado.\"],\"CAL6E9\":[\"Equipos\"],\"CB/NpV\":[\"Prioridad alta\"],\"CHZ1jC\":[\"eliminó el elemento de la lista de verificación <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Por favor, introduce un nombre válido\"],\"CJWDTP\":[\"Tu cuenta de Trello ha sido desconectada.\"],\"CJukzS\":[[\"0\"],\" etiquetas\"],\"CTqTgr\":[\"Atajos\"],\"CYWHT+\":[\"Error al subir la imagen de perfil\"],\"Cb5YSG\":[\"You were added to\"],\"Cd4sTD\":[\"Ideal para individuos y creadores en solitario que están empezando\"],\"Ci/KUX\":[\"Configuración | Espacio de trabajo\"],\"CkVV1t\":[\"Error al actualizar la descripción del espacio de trabajo\"],\"Cmudpi\":[\"Puede eliminar espacio de trabajo\"],\"CozWO1\":[\"Nombre del espacio de trabajo\"],\"CujNX4\":[\"añadió un archivo adjunto <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"Sistema\"],\"D0esZz\":[\"Registro de actividad\"],\"D3C4Yx\":[\"Se requiere la contraseña actual\"],\"D7/JvJ\":[\"Ajusta el recorte cuadrado para que se adapte a tu avatar.\"],\"D9ROdV\":[\"Enlaces de invitación\"],\"DAV3uK\":[\"Permisos actualizados\"],\"DBC3t5\":[\"Domingo\"],\"DFjdv0\":[\"Eliminar plantilla\"],\"DMeWZD\":[\"¿Estás seguro de que quieres eliminar este \",[\"0\"],\"?\"],\"DPfwMq\":[\"Hecho\"],\"DSGzV+\":[\"Nombre de usuario del espacio de trabajo\"],\"DahTzR\":[\"No se pudo eliminar la lista de verificación\"],\"DbZgsJ\":[\"Crear plantilla\"],\"DtXlZq\":[\"No se pudo actualizar la lista de verificación\"],\"Dz63YI\":[\"Ocurrió un error al desconectar tu cuenta de GitHub.\"],\"E0t3jO\":[\"añadió el elemento de lista de verificación <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Precio por usuario\"],\"E8zYtd\":[\"desasignó a <0>\",[\"0\"],\" de la tarjeta\"],\"ECJKc4\":[\"Clave de API creada\"],\"EEHmPC\":[\"Oferta de lanzamiento: obtén miembros ilimitados con Pro\"],\"EH8IL3\":[\"Listas de verificación\"],\"EII/X8\":[\"Todas las funciones de Teams +\"],\"ERpq2P\":[\"No se encontraron resultados para \\\"\",[\"debouncedQuery\"],\"\\\".\"],\"ESClHO\":[\"Soporte prioritario por correo electrónico\"],\"EYpSRU\":[\"You were added to a workspace\"],\"Eg99Sc\":[\"No hay métodos de autenticación disponibles actualmente\"],\"Eit43O\":[\"estableció la fecha de vencimiento\"],\"EkH9pt\":[\"Actualizar\"],\"EvArWh\":[\"Colabora sin problemas con tu equipo.\"],\"F/FPk/\":[\"Configuración | Permisos\"],\"F/vB2g\":[\"Ideas para mejorar esta página...\"],\"F0YmUY\":[\"Copiar enlace de la tarjeta\"],\"F3bW6y\":[\"Plataforma\"],\"F4KRmY\":[\"$8/mes\"],\"F4PLG4\":[\"Descripción del espacio de trabajo actualizada\"],\"F6m23G\":[\"Subida de archivos\"],\"F6pfE9\":[\"Activo\"],\"F8DaWi\":[\"Solo lectura\"],\"FEr96N\":[\"Tema\"],\"FdtSNC\":[\"Crear espacio de trabajo\"],\"FmN5me\":[\"Resolución\"],\"FmfJjN\":[\"Ver y gestionar tus claves de API.\"],\"Fpci8b\":[\"¿Estás seguro de que quieres eliminar esta lista de verificación?\"],\"G1Gw0v\":[\"Nueva plantilla\"],\"GAD3Dx\":[\"Dominio personalizado\"],\"GDvlUT\":[\"Rol\"],\"GKeVeM\":[\"Your role was changed\"],\"GRAGsB\":[\"Tu espacio de trabajo\"],\"GYv20o\":[\"No se pudieron actualizar los permisos\"],\"GdWB+V\":[\"Webhook creado correctamente\"],\"GnRmu4\":[\"Nombre de la lista de verificación\"],\"GnSSGm\":[\"La descripción de tu espacio de trabajo ha sido actualizada.\"],\"GoDLB9\":[\"Tu cuenta ha sido eliminada.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Hoja de ruta extendida\"],\"Gxxi5J\":[\"Añadir lista de verificación\"],\"H5G+qG\":[\"¿Cuál es la diferencia entre Kan y Trello?\"],\"HBI6nY\":[\"¿Necesitas ayuda?\"],\"HO+uOC\":[\"Clasificación\"],\"HQVm6e\":[\"Esta URL ya está en uso\"],\"HVIzNO\":[\"Puede ver listas\"],\"HYV6Lq\":[\"No se pudo aceptar la invitación. Por favor, inténtalo de nuevo más tarde o contacta con atención al cliente.\"],\"HbXReU\":[\"No notifications yet\"],\"HcT8J4\":[\"Tu cuenta de GitHub ha sido conectada.\"],\"HeFWjW\":[\"Próximos pasos\"],\"Hf1cEZ\":[\"La URL del webhook es obligatoria\"],\"Hg1qE9\":[\"El slug de tu espacio de trabajo ha sido actualizado.\"],\"I+AROe\":[\"Puede editar tarjetas\"],\"I0gAKM\":[\"No se pudo actualizar la lista\"],\"IDvohQ\":[\"marcó un elemento de la lista de verificación como incompleto\"],\"IFgUX6\":[\"Puede eliminar miembros\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Actualizar a Pro\"],\"Iqh0Uv\":[\"Planificado\"],\"IqjpYe\":[\"Visibilidad del email\"],\"IrZaAn\":[\"Contraseña cambiada\"],\"It4/FS\":[\"Desarchivar tablero\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Continuar con \"],\"J4+OTA\":[\"Mover a lista\"],\"J5nbej\":[\"Crítico\"],\"J5pbP6\":[\"Puede editar roles y permisos de miembros\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JBaoDB\":[[\"overflow\"],\" more viewers\"],\"JCdzgZ\":[\"Solicitud de función\"],\"JUce1S\":[\"Asignados\"],\"JbXXUW\":[\"Ten en cuenta que esta acción es irreversible.\"],\"JcCDm9\":[\"Plantilla creada\"],\"Jgaz7E\":[\"Permisos restablecidos\"],\"JjEJSy\":[\"Configura tu espacio de trabajo\"],\"JnWJXY\":[\"enlace mágico\"],\"JxhWxU\":[\"en\"],\"JyXBgS\":[\"docs\"],\"K3iLeO\":[\"Mira lo que nuestros usuarios dicen sobre Kan\"],\"K4xHKu\":[\"New comment on a card\"],\"K7k9u3\":[\"No se puede mover la tarjeta\"],\"KAsRdK\":[\"Ir a miembros\"],\"KEim/+\":[\"eliminó un adjunto\"],\"KFJgmZ\":[\"El nombre para mostrar debe tener al menos 3 caracteres\"],\"KLJ4eD\":[\"Enlace de invitación copiado\"],\"KM6m8p\":[\"Equipo\"],\"KNKCTb\":[\"Pendientes\"],\"Kec+/t\":[\"Controles avanzados de administrador\"],\"KiVc+q\":[\"Tiempo completo\"],\"KuSt9W\":[\"¿Cómo hago el auto-alojamiento?\"],\"L5WQLg\":[\"Se requiere el token\"],\"L5ZPjz\":[\"actualizó un elemento de la lista de verificación\"],\"LTGE7Y\":[\"Espacio de trabajo creado correctamente. Puedes actualizar más tarde en la configuración.\"],\"LeM5RY\":[\"No se pudieron borrar las anulaciones\"],\"LoUCpj\":[\"Error al actualizar el nombre del espacio de trabajo\"],\"LqWW5F\":[\"Tu nombre para mostrar ha sido actualizado.\"],\"LrcnbT\":[\"Aloja Kan en tu propia infraestructura. Ideal para organizaciones que necesitan control completo sobre sus datos.\"],\"Lt+ZP3\":[\"completó un elemento de la lista de verificación\"],\"M9p3Vw\":[\"Registro de actividad ilimitado\"],\"MCIXdZ\":[\"Conecta tu cuenta de GitHub para importar proyectos.\"],\"MFKlMB\":[\"Invitar\"],\"MHrjPM\":[\"Título\"],\"MI5OBT\":[\"La URL solo puede contener letras, números y guiones\"],\"MK16u2\":[\"Sin fechas\"],\"MKAScN\":[\"Puede ver tableros\"],\"MN6YzG\":[\"Slug del espacio de trabajo actualizado\"],\"MWrbWq\":[\"Configuración | Cuenta\"],\"MdN5zD\":[\"Necesitas ser administrador para gestionar los permisos del espacio de trabajo.\"],\"MdwUGG\":[\"Ahorra tiempo con plantillas de tableros reutilizables.\"],\"MeO/vH\":[\"Esto resultará en la eliminación permanente de todos los datos asociados con este espacio de trabajo.\"],\"MlyjJu\":[\"El nombre para mostrar no puede exceder 280 caracteres\"],\"MxQXhL\":[\"No se pudo crear el espacio de trabajo\"],\"N/bcWA\":[\"Iniciar sesión | kan.bn\"],\"N3380t\":[\"Puede crear tableros\"],\"N7aud6\":[\"Búsqueda inteligente\"],\"NH54UR\":[\"renombró el elemento de la lista de verificación a <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"El tablero ha sido archivado.\"],\"NgaR6B\":[\"Introduce tu contraseña\"],\"NnH3pK\":[\"Prueba\"],\"NoNwIX\":[\"Inactivo\"],\"NypLoL\":[\"renombró una lista de verificación\"],\"O0li0W\":[\"Introduce tu contraseña actual y elige una nueva contraseña segura.\"],\"O1wAlQ\":[\"Invitado\"],\"O3oNi5\":[\"Email\"],\"O83K21\":[\"añadió un elemento de lista de verificación\"],\"O9jVbx\":[\"Prioridad baja\"],\"OAYToL\":[\"Esto eliminará todos los permisos personalizados de los miembros en este espacio de trabajo. Los miembros heredarán permisos únicamente de sus roles.\"],\"OIA0ad\":[\"Nombre del espacio de trabajo actualizado\"],\"OTxjpR\":[\"tu-espacio-de-trabajo\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Desconectar GitHub\"],\"Oi+J+N\":[\"Elige un plan para comenzar. Todos los planes de pago incluyen una prueba gratuita de 14 días.\"],\"OkTY4+\":[\"El secreto no puede exceder los 512 caracteres\"],\"Oo4E6p\":[\"No se puede duplicar la tarjeta\"],\"OpNhRn\":[\"No se requiere tarjeta de crédito\"],\"OtjenF\":[\"Por favor, introduce una dirección de correo electrónico válida\"],\"OvoEq7\":[\"Miembro\"],\"OwneeH\":[\"Nombre de usuario del espacio de trabajo personalizado\"],\"Ozt2vv\":[\"Tu contraseña ha sido cambiada.\"],\"P6dJdq\":[\"Anulaciones eliminadas\"],\"P8Cunr\":[\"Nombre de usuario predeterminado\"],\"PCIlOO\":[\"Añadir miembro\"],\"PELbXB\":[\"Tu cuenta de GitHub está conectada.\"],\"PRjvDT\":[\"¿Estás seguro de que quieres eliminar este comentario?\"],\"PRofO0\":[\"Editar video de YouTube\"],\"PTzsxH\":[\"Visibilidad del tablero actualizada\"],\"PVT7q7\":[\"GitHub conectado\"],\"PZCqeW\":[\"Por favor, inténtalo de nuevo más tarde.\"],\"Pat4r8\":[\"Hoja de ruta básica\"],\"PpZkda\":[\"Funciones\"],\"PyYD/v\":[\"asignó <0>\",[\"0\"],\" a la tarjeta\"],\"Q60WUZ\":[\"No se pudo iniciar el proceso de pago\"],\"Q9pQaX\":[\"Aún no se encontraron roles para este espacio de trabajo.\"],\"QD8opX\":[\"Tablero\"],\"QHhZeE\":[\"Plantilla creada correctamente\"],\"QNtP5M\":[\"Usar plantilla\"],\"Qh7QmR\":[\"Eliminado de favoritos\"],\"QnzD50\":[\"On-premise\"],\"QtACvI\":[\"Crear etiqueta\"],\"Qtzfdk\":[\"Plan Pro ∞\"],\"R+w/Va\":[\"Facturación\"],\"R1c3Mq\":[\"El nombre del tablero es obligatorio\"],\"R275Pz\":[\"Tienes plazas ilimitadas con tu plan Pro. ¡No hay cargo adicional por nuevos miembros!\"],\"R3FsF4\":[\"Error en la descarga\"],\"R41XLH\":[\"Error al actualizar el webhook\"],\"R6pB8R\":[\"Destacar en Github\"],\"RHZu7R\":[\"Amado por equipos en todo el mundo\"],\"RJA+sg\":[\"Nuevo ticket\"],\"RRn9jf\":[\"Haz clic en el enlace que hemos enviado a \",[\"magicLinkRecipient\"],\" para iniciar sesión.\"],\"RSGOS1\":[\"Puede eliminar listas\"],\"RfgJqw\":[\"actualizó la fecha de vencimiento\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Enviar comentarios\"],\"RtlIYB\":[\"Estás a punto de cambiar tu contraseña.\"],\"RzxgOE\":[\"Roles y permisos\"],\"SFnH1j\":[\"¿Por qué hacer un Trello de código abierto?\"],\"SMaFdc\":[\"Cancelar suscripción\"],\"SNfg0e\":[\"Puede ver el espacio de trabajo\"],\"SPLN9O\":[\"Tus datos te pertenecen\"],\"SRvxId\":[\"Secreto HMAC para verificación de firma\"],\"STSYcd\":[\"Puede eliminar comentarios\"],\"SUXBxp\":[\"Ingeniería\"],\"SUvm1Y\":[\"Ideal para personas que comienzan y solo necesitan lo esencial.\"],\"SWEskc\":[\"La URL debe tener al menos 3 caracteres\"],\"Sb2gYF\":[\"Nueva lista\"],\"ScJ9fj\":[\"Política de privacidad\"],\"Se/UIp\":[\"Por hacer\"],\"SiPp29\":[\"Crear webhook\"],\"SkCNhl\":[\"Buscar tableros y tarjetas...\"],\"SlfejT\":[\"Error\"],\"T/pF0Z\":[\"Eliminar de favoritos\"],\"T21jY/\":[\"añadió una etiqueta a la tarjeta\"],\"T7DJ2k\":[\"No se pudo agregar el comentario\"],\"T7LJic\":[\"movió la tarjeta a otra lista\"],\"T7Mywq\":[\"No se pudo actualizar el tablero\"],\"TCOMOO\":[\"Editar permisos\"],\"TCt/8K\":[\"Acceso limitado a la API\"],\"TFv5tM\":[\"No se pudo actualizar el rol\"],\"TH3Irz\":[\"Permiso\"],\"TKFUnX\":[\"Cuenta eliminada\"],\"TX0bT7\":[\"No hay webhooks configurados. Agregue un webhook para recibir notificaciones.\"],\"TXO5TM\":[\"No hay atajos de teclado registrados.\"],\"TYli1B\":[\"Puede editar comentarios\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Revisión de código\"],\"TdfEV7\":[\"Archivado\"],\"TjREUS\":[\"Nueva clave API\"],\"TmvrjU\":[\"La URL del tablero debe tener al menos 3 caracteres\"],\"TvY/XA\":[\"Documentación\"],\"Tz0i8g\":[\"Configuración\"],\"TztLaN\":[\"No se pudo crear la lista\"],\"U2+rn0\":[\"El nombre del webhook es obligatorio\"],\"U3pytU\":[\"Administrador\"],\"U5dMR6\":[\"Ver espacio de trabajo\"],\"UCLeG0\":[\"Términos de servicio\"],\"UGCIzB\":[\"Añadir / editar etiqueta\"],\"UQbwrz\":[\"Todos los sistemas operativos\"],\"URAE3q\":[\"Pausado\"],\"USVCGU\":[\"Error al desactivar el enlace de invitación\"],\"UbRKMZ\":[\"Pendiente\"],\"UbYdrA\":[\"Frecuencia de pago\"],\"UeDFpo\":[\"¿Cómo se financia el proyecto?\"],\"UirJfL\":[\"SLA personalizado\"],\"UlhdTP\":[\"Espacio de trabajo eliminado\"],\"Un80BR\":[\"Amigos OSS\"],\"UoSI+i\":[\"Ideal para equipos pequeños y en crecimiento que necesitan colaboración\"],\"UveK6V\":[\"Ir a la aplicación\"],\"Uworke\":[\"Tiempo parcial\"],\"UxKoFf\":[\"Navegación\"],\"V1KOLq\":[\"Notificaciones por email para menciones\"],\"V3MPSQ\":[\"actualizó el título\"],\"V8YRD4\":[\"Viewing now: \",[\"0\"]],\"V8YWP3\":[\"Introduce un título personalizado\"],\"VHS0aJ\":[\"¿Eliminar todos los permisos personalizados?\"],\"VKoDQD\":[\"Crear nuevo \",[\"0\"]],\"VUZDlr\":[\"Testimonios\"],\"VXk54Y\":[\"se autoasignó la tarjeta\"],\"VbyRUy\":[\"Comentarios\"],\"VhMDMg\":[\"Cambiar contraseña\"],\"Vt50G1\":[\"Kanban básico\"],\"W/Elkg\":[\"Prioridad media\"],\"W/nQk1\":[\"Plan gratuito\"],\"W1ewR0\":[\"No se pudo copiar el enlace\"],\"W5r8Qh\":[\"eliminó un elemento de la lista de verificación\"],\"W8oT+L\":[\"No se pudo obtener la información del vídeo\"],\"WHHLh9\":[\"No se pudo eliminar el archivo adjunto\"],\"WI4eGo\":[\"¿Cómo obtengo una URL personalizada?\"],\"WQPDcG\":[\"No se pudo actualizar el elemento de la lista de verificación\"],\"WRkpB1\":[\"Registro deshabilitado\"],\"WRsbHO\":[\"Tu cuenta de Trello está conectada.\"],\"WYDptz\":[\"Suscripción requerida\"],\"WYwN1G\":[\"Nueva importación\"],\"WbTDwg\":[\"En progreso\"],\"Weq9zb\":[\"General\"],\"WmPhYW\":[\"Se produjo un error al desconectar tu cuenta de Trello.\"],\"WnEwDO\":[\"¿Ya tienes una cuenta? <0><1>Inicia sesión\"],\"Ws+3X+\":[\"Plazas ilimitadas y funciones avanzadas para equipos en crecimiento.\"],\"Ws1I0u\":[\"A card was updated\"],\"Wy6pcF\":[\"No se pudo actualizar la visibilidad del tablero\"],\"X0N0PA\":[\" (editado)\"],\"XDRXbZ\":[\"La descripción del espacio de trabajo debe tener al menos 3 caracteres\"],\"XEoGkQ\":[\"Ir a la página principal\"],\"XILg0L\":[\"Dirección de correo electrónico no válida\"],\"XJOV1Y\":[\"Actividad\"],\"XNxYxq\":[\"Plantillas de tablero\"],\"XTKtey\":[\"Crear lista\"],\"XXbgHS\":[\"Contratado\"],\"XYLcNv\":[\"Soporte\"],\"XicmhT\":[\"Fecha de vencimiento\"],\"Xid3K6\":[\"La URL del tablero solo puede contener letras, números y guiones\"],\"Xjj/kS\":[\"Kanban reinventado\"],\"XpcjLO\":[\"No se pudo actualizar la URL del tablero\"],\"Y8yzGg\":[\"Comienza gratis. Actualiza a medida que tu equipo crece. Sin tarifas ocultas, sin contratos.\"],\"YBBifR\":[\"Desconectar Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"No se pudo reordenar el elemento de la lista de verificación\"],\"YRk79X\":[\"Seguridad avanzada, cumplimiento normativo y soporte dedicado para grandes organizaciones.\"],\"YVT40D\":[\"eliminó la etiqueta <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Error al actualizar la suscripción\"],\"YcyP2z\":[\"No se pudo crear la plantilla\"],\"YdIn4I\":[\"You were removed from a workspace\"],\"Yf9FAx\":[\"No podrán acceder a este espacio de trabajo.\"],\"YhvWXb\":[\"Analíticas del tablero\"],\"YirHq7\":[\"Comentarios\"],\"YkfDoz\":[\"Anual\"],\"YoyKbT\":[\"Esta clave API solo se mostrará una vez. Guárdala en un lugar seguro.\"],\"Ypy5pZ\":[\"¿Está seguro de que desea eliminar el webhook \\\"\",[\"webhookName\"],\"\\\"? Esta acción no se puede deshacer.\"],\"YtUfwW\":[\"No se pudo iniciar sesión con \",[\"0\"],\". Por favor, inténtalo de nuevo.\"],\"Yx0Ud8\":[\"Solicitado\"],\"Z3FXyt\":[\"Cargando...\"],\"Z3krJD\":[\"Permitir que los miembros del espacio de trabajo vean las direcciones de correo electrónico de los demás\"],\"Z6r9z1\":[\"No se pudo eliminar la tarjeta\"],\"ZAs2NN\":[\"Todas las funciones Pro +\"],\"ZDGm40\":[\"Eliminar cuenta\"],\"ZDIydz\":[\"Comenzar\"],\"ZDPJBc\":[\"Los nombres de usuario personalizados requieren actualizar a un plan Pro\"],\"ZDo4HN\":[\"Lluvia de ideas\"],\"ZH7TVS\":[\"Título de la tarjeta\"],\"ZL1A+p\":[\"No se pudo subir el archivo adjunto. Por favor, inténtalo de nuevo.\"],\"ZT4Khw\":[\"¿Estás seguro de que quieres eliminar esta tarjeta?\"],\"ZU5IYI\":[\"Tableros ilimitados, listas ilimitadas, tarjetas ilimitadas. No se requiere tarjeta de crédito.\"],\"ZXSPJt\":[\"Se produjo un error inesperado. Por favor, inténtalo de nuevo más tarde.\"],\"ZqDqbi\":[\"Organiza y encuentra tarjetas rápidamente con potentes herramientas de filtrado.\"],\"Zz1qkk\":[\"Tarjetas ilimitadas\"],\"a3LDKx\":[\"Seguridad\"],\"aHCEmh\":[\"Precios\"],\"aHRWVI\":[\"eliminó la fecha de vencimiento\"],\"aJ4pMe\":[\"Preguntas frecuentes\"],\"aKJHG+\":[\"Archivar tablero\"],\"aW3TOw\":[\"Notificaciones por email\"],\"aWDhU5\":[\"Kanban es mejor en equipo. Perfecto para equipos pequeños y en crecimiento que buscan colaborar.\"],\"aWlSc/\":[\"Crear nueva lista\"],\"abUZlY\":[\"Añadir detalles...\"],\"aelko+\":[\"Puedes obtener una URL personalizada para tu espacio de trabajo, como <0>kan.bn/kan, yendo a la <1>configuración de tu espacio de trabajo y comprando una suscripción pro. ¡Todas las suscripciones ayudan a financiar el desarrollo del proyecto!\"],\"agPptk\":[\"Mediano\"],\"aiHZVP\":[\"Ver documentación\"],\"b/LfJo\":[\"email\"],\"b3Thhd\":[\"Error al subir\"],\"b5FKyH\":[\"añadió la etiqueta <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Crear \",[\"0\"]],\"bD8I7O\":[\"Completar\"],\"bDI6VI\":[[\"0\"],\" se ha eliminado de tus favoritos.\"],\"bFREhu\":[\"Fin de la lista\"],\"bJZm1W\":[\"Solicitantes\"],\"bJtM0P\":[\"Esta URL de espacio de trabajo está reservada\"],\"bKzM8L\":[\"Gestor de cuenta dedicado\"],\"bZSICm\":[\"No se pudo agregar el elemento de la lista de verificación\"],\"bcIybO\":[\"El nombre del espacio de trabajo es obligatorio\"],\"bdztP2\":[\"Investigación\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"El rol del miembro se ha actualizado.\"],\"bff61F\":[\"Plan de equipo\"],\"bfgr/e\":[\"Pregunta\"],\"bmXKoX\":[\"añadió \",[\"0\"],\" etiquetas: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Error al eliminar la cuenta\"],\"c/IAuR\":[\"Importante\"],\"c3b0B0\":[\"Comenzar\"],\"c4nMcR\":[\"Tu avatar\"],\"c9AJhn\":[\"Unirse al espacio de trabajo\"],\"cAgBMh\":[\"Control y propiedad completos:\"],\"cFQEU/\":[\"Abrir atajos de teclado\"],\"cOh+MI\":[\"Selección\"],\"cWXW+7\":[\"Agregar webhook\"],\"cWcxrL\":[\"Nueva lista de verificación\"],\"cWtfn1\":[\"Actualizar a Pro ($29/mes)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Descripción del espacio de trabajo\"],\"cji2nM\":[\"Error al crear el enlace de invitación\"],\"cnGeoo\":[\"Eliminar\"],\"cp1rsD\":[\"Desactivar enlace de invitación\"],\"csFbe+\":[\"Ir a plantillas\"],\"curoK5\":[\"Nuevo espacio de trabajo\"],\"d+F6q9\":[\"Creado\"],\"d33Usy\":[\"Crear lista de verificación\"],\"dEgA5A\":[\"Cancelar\"],\"dUh9QW\":[\"Planificación\"],\"ddrz1m\":[\"Atrasado\"],\"delOXn\":[\"No se pudieron actualizar las etiquetas\"],\"dgr4Kq\":[\"Editar etiqueta\"],\"dmKdk0\":[\"Una vez que elimines tu espacio de trabajo, no hay vuelta atrás. Esta acción no se puede deshacer.\"],\"dsLT3m\":[\"Crear tarjeta\"],\"dtQIWT\":[\"Colaboración\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Esta URL de espacio de trabajo ya está en uso\"],\"e1v+J3\":[\"Secreto (opcional)\"],\"e4hPSt\":[\"Restablecer a valores predeterminados del rol\"],\"e6wIqm\":[\"You were mentioned in a card\"],\"eEQyz+\":[\"Rastrea todos los cambios de tarjetas con un historial de actividad detallado.\"],\"ePK91l\":[\"Editar\"],\"eZCGbT\":[\"Sí, ofrecemos un plan gratuito para siempre para uso individual. Sin restricciones, sin muros de pago, sin límites.\"],\"edWbV6\":[\"Enlace copiado\"],\"ekCRTP\":[\"Rechazado\"],\"en3oy5\":[\"Función\"],\"euc6Ns\":[\"Duplicar\"],\"eus61c\":[\"Enviar prueba\"],\"evg7+A\":[\"Tus tableros han sido importados.\"],\"evj0lK\":[\"¿Ofrecéis un plan gratuito?\"],\"f8fH8W\":[\"Diseño\"],\"f8lDFq\":[\"creó la tarjeta\"],\"fDQ7hA\":[\"Copiar etiquetas\"],\"fEY2vP\":[\"Tarjeta no encontrada\"],\"fQCrjt\":[\"La visibilidad de tu tablero se ha establecido en \",[\"0\"],\".\"],\"fR9laE\":[\"Introduce tu contraseña actual\"],\"fSf2ee\":[\"Ver nuestra hoja de ruta.\"],\"fW5sSv\":[\"Editar webhook\"],\"fYVH36\":[\"No se pudo actualizar el comentario\"],\"fcWrnU\":[\"Cerrar sesión\"],\"fuwKpE\":[\"Por favor, inténtalo de nuevo.\"],\"fvLNDy\":[\"Aún no se han creado listas\"],\"fzGyWs\":[\"Cambia el tamaño de fuente de la aplicación.\"],\"fziA2d\":[\"Comentarios ilimitados\"],\"g2xBxu\":[\"Importar tus tableros de Trello a Kan es fácil. Puedes seguir nuestra guía paso a paso <0>aquí.\"],\"g9NChz\":[\"Gestor de cuenta\"],\"gGx5tM\":[\"Editando\"],\"gKmoow\":[\"Esta URL está reservada\"],\"gL/7jw\":[\"Añadir descripción... (escribe '/' para abrir comandos o '@' para mencionar)\"],\"gQ/02p\":[\"Error al desconectar GitHub\"],\"gUX7b+\":[\"La alternativa de código abierto <0/> a Trello\"],\"gZxH/p\":[\"cambió la fecha de vencimiento a <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"El nombre del espacio de trabajo no puede superar los 64 caracteres\"],\"gkxGkF\":[\"Prueba gratuita de 14 días · Cambia de plan o cancela en cualquier momento\"],\"gkzAEM\":[\"Continuar con \",[\"0\"]],\"goklcJ\":[\"Entrevistando\"],\"gpfJ3v\":[\"Gratis, para siempre\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"La URL del tablero no puede exceder 60 caracteres\"],\"h16FyT\":[\"Listas\"],\"h2FKMV\":[\"No tienes permiso\"],\"h2ztFt\":[\"Todas las funciones gratuitas +\"],\"h4VV67\":[\"añadió una lista de verificación\"],\"h7MgpO\":[\"Atajos de teclado\"],\"h8DugX\":[\"Etiquetas\"],\"hAMddS\":[\"se desasignó a sí mismo de la tarjeta\"],\"hB02vO\":[\"Gestionar miembros\"],\"hXMFoN\":[\"Sin listas\"],\"hYzsXr\":[\"Configuración | Integraciones\"],\"hty0d5\":[\"Lunes\"],\"i0ZMQl\":[\"Tablero archivado\"],\"i30J2U\":[\"No se encontraron proyectos\"],\"i5rE2/\":[\"La URL no puede superar los 64 caracteres\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Atrás\"],\"iHcdea\":[\"Vence la próxima semana\"],\"iLbjv+\":[\"Puede editar espacio de trabajo\"],\"iQmbPb\":[\"Licencia\"],\"iSLIjg\":[\"Conectar\"],\"iTylMl\":[\"Plantillas\"],\"iVIGZb\":[\"Archivo adjunto subido\"],\"isRobC\":[\"Nuevo\"],\"itgYbC\":[\"¡Webhook de prueba enviado correctamente!\"],\"iwr7AP\":[\"Ideas\"],\"iy1wb+\":[\"Configuración | API\"],\"j0o6ml\":[\"Descripción de tu espacio de trabajo\"],\"j1+HPc\":[\"Ocurrió un error al conectar tu cuenta de GitHub.\"],\"j2+d/o\":[\"Referencia de API\"],\"j77sVH\":[\"You were assigned to\"],\"j9IZZ0\":[\"URL del espacio de trabajo personalizada\"],\"jDRt4n\":[\"¿Quieres cancelar la suscripción?\"],\"jEw0Mr\":[\"Por favor, ingrese una URL válida\"],\"jIuWsV\":[\"El nombre del webhook no puede exceder 255 caracteres\"],\"jL82rC\":[\"Eliminar permisos personalizados\"],\"jNuzV/\":[\"Puede eliminar tarjetas\"],\"jQ6I8X\":[\"Rol actualizado\"],\"jZBHkN\":[\"El nombre del espacio de trabajo debe tener al menos 3 caracteres\"],\"jfC/xh\":[\"Contacto\"],\"jl3aEJ\":[\"marcó el elemento de la lista de verificación <0>\",[\"0\"],\" como incompleto\"],\"jlB2RY\":[\"La contraseña actual que ingresaste es incorrecta.\"],\"jwI32v\":[\"Tablero no encontrado\"],\"k7rCa/\":[\"Grande\"],\"kECVpo\":[\"¿Estás seguro de que quieres eliminar esta etiqueta?\"],\"kQwvU8\":[\"eliminó una etiqueta de la tarjeta\"],\"kSxwQL\":[\"Puedes invitar a miembros del equipo haciendo clic en el botón \\\"Invitar\\\" en la esquina superior derecha de la <0>página de miembros e ingresando su dirección de correo electrónico. Recibirán un correo con un enlace para unirse al espacio de trabajo.\"],\"kYu0eF\":[\"Eliminar espacio de trabajo\"],\"kfOGMr\":[\"Victoria rápida\"],\"klpSmb\":[\"Editar URL del espacio de trabajo\"],\"kp6L3T\":[\"Este nombre de usuario de espacio de trabajo ya está en uso\"],\"kryGs+\":[\"Tarjeta\"],\"kuoc68\":[\"$10/mes\"],\"kxEs5t\":[\"Importaciones de Trello\"],\"l2PIAy\":[\"Autoalojar con Github\"],\"l31EoQ\":[\"Encuentra respuestas a preguntas frecuentes sobre Kan. ¿No encuentras lo que buscas? No dudes en <0>contactarnos.\"],\"l3s5ri\":[\"Importar\"],\"l4asa1\":[\"Este tablero es privado o no existe\"],\"lGjicL\":[\", o consulta nuestro\"],\"lKAvEd\":[\"Error al desconectar Trello\"],\"lXvXNI\":[\"No se pudo copiar el enlace de invitación\"],\"lYT7pQ\":[\"Eliminar lista\"],\"lkz85l\":[\"La principal diferencia entre Kan y Trello es que Kan es de código abierto, lo que permite a cualquiera ver, modificar y contribuir a nuestro código. Nuestra oferta en la nube tampoco ofrece restricciones en las funciones para uso individual, mientras que Trello bloquea funciones básicas como el número de tableros que puedes crear detrás de un muro de pago.\"],\"lo8xBK\":[\"¿Estás seguro de que quieres eliminar \",[\"entityLabel\"],\"?\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"lsgnzd\":[\"Error al actualizar a Pro\"],\"lyqwgn\":[\"Añadir etiqueta\"],\"m2nk0i\":[\"Precios simples\"],\"mErq7F\":[\"Registrarse\"],\"mHhffx\":[\"No se pudo crear la lista de verificación\"],\"mTGd3+\":[\"eliminó una lista de verificación\"],\"mTwGOf\":[\"Este enlace de invitación no es válido o ha caducado.\"],\"mU+M00\":[[\"0\"],\" se ha añadido a tus favoritos.\"],\"mVZH9V\":[\"Cuando Trello se lanzó en 2011, sorprendió a todos con su simplicidad cuidadosamente diseñada, pero con los años perdió su magia y se convirtió en algo más parecido a \\\"Jira Lite\\\". Este proyecto es nuestro intento de recuperar la magia original de la simplicidad de Trello, en código abierto.\"],\"mZGPxt\":[\"Enlace de invitación copiado al portapapeles\"],\"mchgzf\":[\"Te has registrado correctamente.\"],\"mgXgHu\":[\"Ir a tableros\"],\"mrhyIB\":[\"Perfecto para equipos pequeños y en crecimiento que buscan colaborar.\"],\"mwBdZ2\":[\"Esto resultará en la eliminación permanente de todos los datos asociados con tu cuenta.\"],\"mx8+1u\":[\"Miembros ilimitados\"],\"n+xLOH\":[\"Atención al cliente\"],\"n1GRql\":[\"Nueva etiqueta\"],\"n1ekoW\":[\"Iniciar sesión\"],\"n6EWYz\":[\"Se utiliza para firmar las cargas útiles del webhook para verificación. Dejar en blanco para mantener el secreto existente.\"],\"n9V+ps\":[\"Introduce tu nombre\"],\"nKBUeF\":[\"La tarjeta ha sido duplicada.\"],\"nOhz3x\":[\"Cerrar sesión\"],\"nYNMZZ\":[\"Posición en la lista (0 = primero, dejar vacío para el final)\"],\"nabda1\":[\"Eliminar tarjeta\"],\"nbfdhU\":[\"Integraciones\"],\"ngBZOd\":[\"Añadir comentario... (escribe '/' para abrir comandos o '@' para mencionar)\"],\"nhMhRr\":[\"¡Gracias por tus comentarios!\"],\"njJFtc\":[\"Eliminar comentario\"],\"nk7caK\":[\"Conectar Trello\"],\"nol/Fb\":[\"¿Cómo invito a miembros del equipo?\"],\"notwF1\":[\"El nombre de la plantilla no puede superar los 100 caracteres\"],\"nq7q3Z\":[\"El nombre de la clave de API no puede superar los 30 caracteres\"],\"nqdIhs\":[\"Plantillas de tablero personalizadas\"],\"nryrgW\":[\"Todas las anulaciones de permisos de miembros se han restablecido a los valores predeterminados de su rol.\"],\"o+JCfN\":[\"Confiado por equipos ágiles<0/>de todo el mundo\"],\"o4e/70\":[\"Seleccione al menos un evento\"],\"o4sQAg\":[\"Error al crear el webhook\"],\"o7J4JM\":[\"Filtrar\"],\"o8adVG\":[\"Subidas de archivos de 10 mb\"],\"o9WLwO\":[\"No se pudo actualizar la tarjeta\"],\"oVBq1w\":[\"por usuario/mes\"],\"oW13KZ\":[\"Comienza gratis hoy\"],\"odFCYX\":[\"Invitación no válida\"],\"okpxfB\":[\"Crear nueva clave\"],\"onllUU\":[\"Mark all as read\"],\"oyRjD/\":[\"Plan Pro\"],\"p/hk9N\":[\"Has iniciado sesión correctamente.\"],\"pBsoKL\":[\"Añadir a favoritos\"],\"pFGfsR\":[\"Echa un vistazo a algunos de nuestros proyectos de código abierto favoritos.\"],\"pFKC6A\":[\"Nombre de la clave de API\"],\"pL78ec\":[\"Añadido a favoritos\"],\"pM1sn/\":[\"New notification\"],\"pVctI7\":[\"Opción de despliegue on-premise\"],\"pXVFJy\":[\"Puede eliminar tableros\"],\"pa9o5D\":[\"Recorta tu avatar\"],\"pfa8F0\":[\"Nombre para mostrar\"],\"pmUArF\":[\"Espacio de trabajo\"],\"pnrmSP\":[\"Nueva tarjeta\"],\"ppaRWv\":[\"Autoalojamiento\"],\"pvnfJD\":[\"Oscuro\"],\"q+lt9D\":[\"Error al eliminar la etiqueta\"],\"q3il6U\":[\"Tamaño de fuente\"],\"qPP4lD\":[\"Invitar miembros requiere un plan Team. Serás redirigido para actualizar tu espacio de trabajo.\"],\"qQXocp\":[\"Puede gestionar la configuración del espacio de trabajo\"],\"qaS+1/\":[\"Ideal para equipos que quieren escalar sin límites\"],\"qfUS/w\":[\"Amigos de código abierto\"],\"qkjvgj\":[\"Tu espacio de trabajo ha sido eliminado.\"],\"qlAIQ1\":[\"Remoto\"],\"qtE5nt\":[\"Añadir un elemento...\"],\"qzdST2\":[\"Visibilidad del tablero\"],\"r6BgwX\":[\"Se requiere contraseña para iniciar sesión.\"],\"rD6UIt\":[\"Comenzar en la nube\"],\"rF8SEQ\":[\"Editar comentario\"],\"rQRXo8\":[\"Ingrese el nuevo secreto para actualizar\"],\"rQXTmd\":[\"URL de la tarjeta copiada al portapapeles\"],\"rRM7r0\":[\"Importa tus tableros de Trello y empieza a trabajar de inmediato.\"],\"rYUZIe\":[\"Seleccionar origen\"],\"raHesj\":[\"¡Te has dado de baja!\"],\"rarRW/\":[\"Error al invitar al miembro\"],\"ri1hHe\":[\"Vence el próximo mes\"],\"rmN315\":[\"Diversión\"],\"rs7L54\":[\"añadió un miembro a la tarjeta\"],\"rtbVvN\":[\"Puede editar listas\"],\"s+MGs7\":[\"Recursos\"],\"s6iE/c\":[\"El registro está actualmente deshabilitado. Por favor, inténtalo de nuevo más tarde.\"],\"sBhOFG\":[\"Gestión de tareas simple y visual que simplemente funciona. Arrastra y suelta tarjetas, colabora con tu equipo y haz más cosas.\"],\"sDLCvT\":[\"Conecta tus herramientas favoritas para optimizar tu flujo de trabajo.\"],\"sDuhfK\":[\"Oferta de lanzamiento: asientos ilimitados por solo $29/mes con Pro\"],\"sU2uWc\":[\"Tarjeta duplicada\"],\"sUZo7y\":[\"Registrarse | kan.bn\"],\"sVBn4K\":[\"Error al actualizar el nombre para mostrar\"],\"sY2lzr\":[\"No hay URL de descarga disponible para este adjunto.\"],\"sbNNyi\":[\"Nuevo webhook\"],\"snMaH4\":[\"Eliminar webhook\"],\"t+R8+P\":[\"Ejecución\"],\"t/YqKh\":[\"Eliminar\"],\"t0dTPm\":[\"Configure webhooks para recibir notificaciones cuando se creen, actualicen, muevan o eliminen tarjetas.\"],\"t2nDzl\":[\"Ver y gestionar tu facturación y suscripción.\"],\"t6FvJH\":[\"Puede añadir comentarios\"],\"tGwwnq\":[\"actualizó la descripción\"],\"tHcbLF\":[\"Puede editar tableros\"],\"tIdipJ\":[\"Editar URL del tablero\"],\"tMYIu7\":[\"Registros de actividad\"],\"tOZp9v\":[\"Roles de usuario y permisos configurables\"],\"tTbref\":[\"Se requiere contraseña para registrarse.\"],\"tYN21H\":[\"El usuario ya es miembro de este espacio de trabajo\"],\"tbNcu4\":[\"Tablero desarchivado\"],\"tca56/\":[\"Tu archivo se ha subido correctamente.\"],\"tfDRzk\":[\"Guardar\"],\"tlhgDC\":[\"No hay tableros archivados\"],\"tmlJN1\":[\"Por favor, introduce una URL de YouTube válida\"],\"tmpW+w\":[\"Eliminar tablero\"],\"tst44n\":[\"Eventos\"],\"tyHiOa\":[\"Por favor, inténtalo de nuevo más tarde o contacta con atención al cliente.\"],\"u2+JIh\":[\"Las URLs personalizadas requieren actualizar a un plan Pro\"],\"u8JHrO\":[\"Limpiar filtros\"],\"uAQUqI\":[\"Estado\"],\"uEGGDs\":[\"Mi webhook\"],\"uOqaMC\":[\"Has sido invitado a unirte a un espacio de trabajo.\"],\"uP4V6I\":[\"Gratis para todos\"],\"uXGLuq\":[\"Crear clave API\"],\"uZg2+w\":[\"Potencia tu espacio de trabajo por solo $29/mes. Esto es lo que obtendrás:\"],\"uck1tz\":[\"eliminó un miembro de la tarjeta\"],\"usVytm\":[\"Una vez que elimines tu cuenta, no hay vuelta atrás. Esta acción no se puede deshacer.\"],\"uvH2xS\":[\"Copiar miembros\"],\"v+Wp++\":[\"Código abierto\"],\"v1kQyJ\":[\"Webhooks\"],\"v3YoMA\":[\"Senior\"],\"vAR/I8\":[\"Ejecutar en tu propia infraestructura\"],\"vAj6xG\":[\"Puedes auto-alojar siguiendo las instrucciones en nuestro <0>repositorio.\"],\"vSJd18\":[\"Vídeo\"],\"vUr5JT\":[\"¿No tienes una cuenta? <0><1>Regístrate\"],\"vXIe7J\":[\"Idioma\"],\"vXemf6\":[\"Error\"],\"va/3u1\":[\"Controla quién puede ver y editar tus tableros.\"],\"vbskQn\":[\"El nombre de la clave de API es obligatorio\"],\"veIDCY\":[\"Iniciar prueba gratuita de 14 días\"],\"vfRdCZ\":[\"No se pudieron restablecer los permisos\"],\"vgdzLf\":[\"Crear otro\"],\"vifyyw\":[\"Legal\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"Los permisos de este miembro se han restablecido a los valores predeterminados de su rol.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"facturación mensual\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Largo plazo\"],\"vwGkYB\":[\"La contraseña debe tener al menos 8 caracteres\"],\"wIb7Ng\":[\"Desarrollo de software\"],\"wK4OTM\":[\"Título (opcional)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Por favor, selecciona un archivo para subir.\"],\"wY+6Ye\":[\"Esta URL de tablero ya está en uso\"],\"wakO3W\":[\"añadió la lista de verificación <0>\",[\"0\"],\"\"],\"wewm3j\":[\"El nombre del tablero no puede exceder los 100 caracteres\"],\"wgNoIs\":[\"Seleccionar todo\"],\"wlQNTg\":[\"Miembros\"],\"wqkcin\":[\"Puede ver comentarios\"],\"wqxglO\":[\"Aprendizaje\"],\"wruKPE\":[\"Apoya el desarrollo del proyecto\"],\"wsy94z\":[\"Ideal para grandes organizaciones con necesidades avanzadas\"],\"wtxjAY\":[\"Miembros del espacio de trabajo\"],\"x0kMO/\":[\"Error al actualizar la URL del espacio de trabajo\"],\"x8GeCD\":[\"Nombre para mostrar actualizado\"],\"xEbBrW\":[\"¿Qué licencia estás usando?\"],\"xGVfLh\":[\"Continuar\"],\"xLTZVf\":[\"Día de inicio de semana\"],\"xMn+V9\":[\"Importando desde Trello\"],\"xRPn3U\":[\"Introduce tu dirección de email\"],\"xvcYhz\":[\"Elimina cualquier permiso personalizado de miembros para que todos los miembros solo hereden permisos de sus roles predeterminados.\"],\"y3aU20\":[\"Guardar cambios\"],\"yD3ZSw\":[\"Cambia tus preferencias de idioma.\"],\"yV7o5I\":[\"¿Cómo importo mis tableros de Trello?\"],\"yb/fjw\":[\"Aprobación\"],\"yhLUU8\":[\"Error al conectar GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Importar proyecto (1)\"],\"other\":[\"Importar proyectos (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Cerrar\"],\"zC8Whw\":[\"Comienza creando una nueva lista\"],\"zERArS\":[\"actualizó el título a <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Crear enlace de invitación\"],\"zMlxCA\":[\"1 usuario\"],\"zMquA7\":[\"Elige un plan\"],\"zQPhSa\":[\"Convertir en enlace\"],\"zQX5Dj\":[\"Nombre de la lista\"],\"zYRVNp\":[\"Seleccionar una lista\"],\"zkWmBh\":[\"Anual\"],\"zl1b97\":[\"No se pudo crear la tarjeta\"],\"zoEbXq\":[\"Puede ver tarjetas\"],\"zt/6cS\":[\"Ideal para equipos pequeños que desean colaborar y avanzar más rápido juntos.\"],\"zto8aj\":[\"Trello desconectado\"],\"zwBp5t\":[\"Privado\"],\"zwTiVn\":[\"eliminó un adjunto <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Más información\"],\"zxKs+y\":[\"Vence mañana\"],\"zzDlyQ\":[\"Éxito\"]}")as Messages; \ No newline at end of file diff --git a/apps/web/src/locales/fr/messages.json b/apps/web/src/locales/fr/messages.json index 97e42e8a8..2a9bedb12 100644 --- a/apps/web/src/locales/fr/messages.json +++ b/apps/web/src/locales/fr/messages.json @@ -3,23 +3,40 @@ "message": " (edited)", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 153]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 153 + ] + ], "translation": " (modifié)" }, "lGjicL": { "message": ", or see our", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 102]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 102 + ] + ], "translation": ", ou consultez notre" }, "J/hVSQ": { "message": "{0}", "placeholders": { - "0": ["isTemplate ? \"Templates\" : \"Boards\""] + "0": [ + "isTemplate ? \"Templates\" : \"Boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/index.tsx", 53]], + "origin": [ + [ + "src/views/boards/index.tsx", + 53 + ] + ], "translation": "{0}" }, "JArWcF": { @@ -29,74 +46,146 @@ "card?.title ?? t`Card`", "isTemplate ? \"Templates\" : \"Boards\"" ], - "1": ["board?.name ?? t`Board`", "workspace.name ?? t`Workspace`"] + "1": [ + "board?.name ?? t`Board`", + "workspace.name ?? t`Workspace`" + ] }, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 48], - ["src/views/card/index.tsx", 317] + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/card/index.tsx", + 364 + ] ], "translation": "{0} | {1}" }, "mU+M00": { "message": "{0} has been added to your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 56]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 56 + ] + ], "translation": "{0} a été ajouté à vos favoris." }, "bDI6VI": { "message": "{0} has been removed from your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 57]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 57 + ] + ], "translation": "{0} a été retiré de vos favoris." }, "CJukzS": { "message": "{0} labels", "placeholders": { - "0": ["labelPublicIds.length"] + "0": [ + "labelPublicIds.length" + ] }, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 455]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 455 + ] + ], "translation": "{0} étiquettes" }, "9x4DAL": { "message": "{0} not found", "placeholders": { - "0": ["isTemplate ? \"Template\" : \"Board\""] + "0": [ + "isTemplate ? \"Template\" : \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/index.tsx", 557]], + "origin": [ + [ + "src/views/board/index.tsx", + 561 + ] + ], "translation": "{0} introuvable" }, "0xWkkH": { "message": "{boardCount, plural, one {Import board (1)} other {Import boards ({boardCount})}}", "placeholders": { - "boardCount": ["boardCount"] + "boardCount": [ + "boardCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 489]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 489 + ] + ], "translation": "{boardCount, plural, one {Importer le tableau (1)} other {Importer les tableaux ({boardCount})}}" }, + "JBaoDB": { + "message": "{overflow} more viewers", + "placeholders": { + "overflow": [ + "overflow" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 70 + ] + ], + "translation": "" + }, "yndBF+": { "message": "{projectCount, plural, one {Import project (1)} other {Import projects ({projectCount})}}", "placeholders": { - "projectCount": ["projectCount"] + "projectCount": [ + "projectCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 341]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 341 + ] + ], "translation": "{projectCount, plural, one {Importer le projet (1)} other {Importer les projets ({projectCount})}}" }, "9lFfqv": { "message": "/month", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 207]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 207 + ] + ], "translation": "/mois" }, "be30i9": { @@ -104,8 +193,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 30], - ["src/views/pricing/components/PricingTiers.tsx", 30] + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ] ], "translation": "0 $" }, @@ -114,8 +209,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 158], - ["src/views/members/components/InviteMemberForm.tsx", 170] + [ + "src/views/members/components/InviteMemberForm.tsx", + 158 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] ], "translation": "10 $/mois" }, @@ -123,7 +224,12 @@ "message": "$8/month", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 170]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] + ], "translation": "8 $/mois" }, "zMlxCA": { @@ -131,9 +237,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 82], - ["src/views/pricing/components/Pricing.tsx", 36], - ["src/views/pricing/components/PricingTiers.tsx", 35] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 82 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 36 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 35 + ] ], "translation": "1 utilisateur" }, @@ -141,7 +256,12 @@ "message": "10mb file uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 90]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 90 + ] + ], "translation": "Téléchargements de fichiers de 10 Mo" }, "gkxGkF": { @@ -149,9 +269,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 66], - ["src/views/pricing/components/PricingTiers.tsx", 88], - ["src/views/pricing/components/PricingTiers.tsx", 263] + [ + "src/views/pricing/components/PricingTiers.tsx", + 66 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 88 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 263 + ] ], "translation": "Essai gratuit de 14 jours · Changez de forfait ou annulez à tout moment" }, @@ -159,21 +288,48 @@ "message": "404 - Page Not Found | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 11]], + "origin": [ + [ + "src/pages/404.tsx", + 11 + ] + ], "translation": "404 - Page introuvable | kan.bn" }, + "Ws1I0u": { + "message": "A card was updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 54 + ] + ], + "translation": "" + }, "/rn4RE": { "message": "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 71]], + "origin": [ + [ + "src/views/home/index.tsx", + 71 + ] + ], "translation": "Une application kanban puissante et flexible qui vous aide à organiser le travail, suivre les progrès et obtenir des résultats, le tout au même endroit." }, "AeXO77": { "message": "Account", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 41]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 41 + ] + ], "translation": "Compte" }, "TKFUnX": { @@ -181,7 +337,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 27 + ] ], "translation": "Compte supprimé" }, @@ -190,7 +349,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 283] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 283 + ] ], "translation": "Gestionnaire de compte" }, @@ -198,7 +360,12 @@ "message": "Actions", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 56]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 56 + ] + ], "translation": "Actions" }, "F6pfE9": { @@ -206,9 +373,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 26], - ["src/views/settings/components/NewWebhookModal.tsx", 293], - ["src/views/settings/components/WebhookList.tsx", 106] + [ + "src/views/boards/index.tsx", + 26 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 293 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] ], "translation": "Actif" }, @@ -217,8 +393,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 455], - ["src/views/public/board/CardModal.tsx", 200] + [ + "src/views/card/index.tsx", + 502 + ], + [ + "src/views/public/board/CardModal.tsx", + 200 + ] ], "translation": "Activité" }, @@ -227,7 +409,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 148] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 148 + ] ], "translation": "Journal d'activité" }, @@ -235,35 +420,60 @@ "message": "Activity logs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 110]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 110 + ] + ], "translation": "Journaux d'activité" }, "UGCIzB": { "message": "Add / edit label", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 50]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 50 + ] + ], "translation": "Ajouter / modifier l'étiquette" }, "B3xxao": { "message": "Add a card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 136]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 136 + ] + ], "translation": "Ajouter une carte" }, "qtE5nt": { "message": "Add an item...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 141]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 141 + ] + ], "translation": "Ajouter un élément..." }, "Gxxi5J": { "message": "Add checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 65]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 65 + ] + ], "translation": "Ajouter une checklist" }, "ngBZOd": { @@ -271,8 +481,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/Comment.tsx", 185], - ["src/views/card/components/NewCommentForm.tsx", 68] + [ + "src/views/card/components/Comment.tsx", + 185 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 68 + ] ], "translation": "Ajouter un commentaire... (tapez « / » pour ouvrir les commandes ou « @ » pour mentionner)" }, @@ -280,14 +496,24 @@ "message": "Add description... (type '/' to open commands or '@' to mention)", "placeholders": {}, "comments": [], - "origin": [["src/components/Editor.tsx", 482]], + "origin": [ + [ + "src/components/Editor.tsx", + 482 + ] + ], "translation": "Ajouter une description... (tapez « / » pour ouvrir les commandes ou « @ » pour mentionner)" }, "abUZlY": { "message": "Add details...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 189 + ] + ], "translation": "Ajouter des détails..." }, "lyqwgn": { @@ -295,8 +521,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/LabelSelector.tsx", 114], - ["src/views/card/components/LabelSelector.tsx", 119] + [ + "src/views/card/components/LabelSelector.tsx", + 114 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 119 + ] ], "translation": "Ajouter une étiquette" }, @@ -305,8 +537,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 135], - ["src/views/members/components/InviteMemberForm.tsx", 257] + [ + "src/views/card/components/MemberSelector.tsx", + 135 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 257 + ] ], "translation": "Ajouter un membre" }, @@ -314,126 +552,222 @@ "message": "Add to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 122]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 122 + ] + ], "translation": "Ajouter aux favoris" }, "cWXW+7": { "message": "Add webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 36 + ] + ], "translation": "Ajouter un webhook" }, "bmXKoX": { "message": "added {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 102]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 102 + ] + ], "translation": "a ajouté {0} étiquettes : <0>{labelList}" }, "h4VV67": { "message": "added a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 132]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 132 + ] + ], "translation": "a ajouté une checklist" }, "O83K21": { "message": "added a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 135]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 135 + ] + ], "translation": "a ajouté un élément de checklist" }, "T21jY/": { "message": "added a label to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 128]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 128 + ] + ], "translation": "a ajouté une étiquette à la carte" }, "rs7L54": { "message": "added a member to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 130]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 130 + ] + ], "translation": "a ajouté un membre à la carte" }, "5y6qY8": { "message": "added an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 140]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 140 + ] + ], "translation": "a ajouté une pièce jointe" }, "CujNX4": { "message": "added an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 278]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 278 + ] + ], "translation": "a ajouté une pièce jointe <0>{0}" }, "wakO3W": { "message": "added checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 208]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 208 + ] + ], "translation": "a ajouté la checklist <0>{0}" }, "E0t3jO": { "message": "added checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 232]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 232 + ] + ], "translation": "a ajouté l'élément de checklist <0>{0}" }, "b5FKyH": { "message": "added label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 192]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 192 + ] + ], "translation": "a ajouté l'étiquette <0>{0}" }, "pL78ec": { "message": "Added to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 53]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 53 + ] + ], "translation": "Ajouté aux favoris" }, "14Xi3Z": { "message": "Adding a new member will cost an additional {price} ({billingType}) per seat.", "placeholders": { - "price": ["price"], - "billingType": ["billingType"] + "price": [ + "price" + ], + "billingType": [ + "billingType" + ] }, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 327]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 327 + ] + ], "translation": "L'ajout d'un nouveau membre coûtera {price} supplémentaires ({billingType}) par siège." }, "D7/JvJ": { "message": "Adjust the square crop to fit your avatar.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 256]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 256 + ] + ], "translation": "Ajustez le recadrage carré pour adapter votre avatar." }, "U3pytU": { "message": "Admin", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 201]], + "origin": [ + [ + "src/views/members/index.tsx", + 201 + ] + ], "translation": "Administrateur" }, "3pIq39": { @@ -441,19 +775,39 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 264], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 265], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 266], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 267], - ["src/views/pricing/components/Pricing.tsx", 55] - ], - "translation": "Rôles d'administrateur" - }, + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 264 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 265 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 266 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 267 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 55 + ] + ], + "translation": "Rôles d'administrateur" + }, "Kec+/t": { "message": "Advanced admin controls", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 103]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 103 + ] + ], "translation": "Contrôles d'administration avancés" }, "/jd3aj": { @@ -461,7 +815,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 268] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 268 + ] ], "translation": "Rôles d'administrateur avancés" }, @@ -469,42 +826,72 @@ "message": "Advanced security, compliance, and dedicated support for large organizations.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 97 + ] + ], "translation": "Sécurité avancée, conformité et assistance dédiée pour les grandes organisations." }, "h2ztFt": { "message": "All Free features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 56]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 56 + ] + ], "translation": "Toutes les fonctionnalités gratuites +" }, "nryrgW": { "message": "All member permission overrides have been reset to their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 26 + ] + ], "translation": "Toutes les permissions personnalisées des membres ont été réinitialisées aux valeurs par défaut de leur rôle." }, "ZAs2NN": { "message": "All Pro features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 101]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 101 + ] + ], "translation": "Toutes les fonctionnalités Pro +" }, "UQbwrz": { "message": "All systems operational", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 18]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 18 + ] + ], "translation": "Tous les systèmes sont opérationnels" }, "EII/X8": { "message": "All Teams features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 79]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 79 + ] + ], "translation": "Toutes les fonctionnalités Teams +" }, "Z3krJD": { @@ -523,28 +910,48 @@ "message": "Already have an account? <0><1>Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 90]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 90 + ] + ], "translation": "Vous avez déjà un compte ? <0><1>Se connecter" }, "j1+HPc": { "message": "An error occurred while connecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 107]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 107 + ] + ], "translation": "Une erreur s'est produite lors de la connexion de votre compte GitHub." }, "Dz63YI": { "message": "An error occurred while disconnecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 130]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 130 + ] + ], "translation": "Une erreur s'est produite lors de la déconnexion de votre compte GitHub." }, "WmPhYW": { "message": "An error occurred while disconnecting your Trello account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 87]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 87 + ] + ], "translation": "Une erreur s'est produite lors de la déconnexion de votre compte Trello." }, "ZXSPJt": { @@ -552,7 +959,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 90] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 90 + ] ], "translation": "Une erreur inattendue s'est produite. Veuillez réessayer ultérieurement." }, @@ -560,14 +970,24 @@ "message": "Annual", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 63]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 63 + ] + ], "translation": "Annuel" }, "3bqt9U": { "message": "Anyone with this link can join your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 311]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 311 + ] + ], "translation": "Toute personne disposant de ce lien peut rejoindre votre espace de travail" }, "OZtEcz": { @@ -575,8 +995,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 65], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 237] + [ + "src/components/SettingsLayout.tsx", + 65 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 237 + ] ], "translation": "API" }, @@ -584,119 +1010,196 @@ "message": "API key created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 91]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 91 + ] + ], "translation": "Clé API créée" }, "pFKC6A": { "message": "API key name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 161]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 161 + ] + ], "translation": "Nom de la clé API" }, "nq7q3Z": { "message": "API key name cannot exceed 30 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 25 + ] + ], "translation": "Le nom de la clé API ne peut pas dépasser 30 caractères" }, "vbskQn": { "message": "API key name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 24 + ] + ], "translation": "Le nom de la clé API est requis" }, "5h8ooz": { "message": "API keys", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 22]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 22 + ] + ], "translation": "Clés API" }, "j2+d/o": { "message": "API Reference", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 31]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 31 + ] + ], "translation": "Référence API" }, "bJZm1W": { "message": "Applicants", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 75]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 75 + ] + ], "translation": "Candidats" }, "yb/fjw": { "message": "Approval", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 46]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 46 + ] + ], "translation": "Approbation" }, "aKJHG+": { "message": "Archive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Archiver le tableau" }, "TdfEV7": { "message": "Archived", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 27]], + "origin": [ + [ + "src/views/boards/index.tsx", + 27 + ] + ], "translation": "Archivé" }, "lo8xBK": { "message": "Are you sure want to remove {entityLabel}?", "placeholders": { - "entityLabel": ["entityLabel"] + "entityLabel": [ + "entityLabel" + ] }, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 47] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 47 + ] ], "translation": "Êtes-vous sûr de vouloir supprimer {entityLabel} ?" }, "Ypy5pZ": { "message": "Are you sure you want to delete the webhook \"{webhookName}\"? This action cannot be undone.", "placeholders": { - "webhookName": ["webhookName"] + "webhookName": [ + "webhookName" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 60 + ] ], "translation": "Êtes-vous sûr de vouloir supprimer le webhook \"{webhookName}\" ? Cette action est irréversible." }, "BhDZlc": { "message": "Are you sure you want to delete the workspace {0}?", "placeholders": { - "0": ["workspace.name"] + "0": [ + "workspace.name" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 62] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 62 + ] ], "translation": "Êtes-vous sûr de vouloir supprimer l'espace de travail {0} ?" }, "DMeWZD": { "message": "Are you sure you want to delete this {0}?", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/DeleteBoardConfirmation.tsx", 36]], + "origin": [ + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 36 + ] + ], "translation": "Êtes-vous sûr de vouloir supprimer {0} ?" }, "ZT4Khw": { "message": "Are you sure you want to delete this card?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 75]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 75 + ] + ], "translation": "Êtes-vous sûr de vouloir supprimer cette carte ?" }, "Fpci8b": { @@ -704,7 +1207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 56] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 56 + ] ], "translation": "Êtes-vous sûr de vouloir supprimer cette checklist ?" }, @@ -712,14 +1218,24 @@ "message": "Are you sure you want to delete this comment?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 66]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 66 + ] + ], "translation": "Êtes-vous sûr de vouloir supprimer ce commentaire ?" }, "kECVpo": { "message": "Are you sure you want to delete this label?", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 41]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 41 + ] + ], "translation": "Êtes-vous sûr de vouloir supprimer cette étiquette ?" }, "74F7N/": { @@ -727,17 +1243,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 54] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 54 + ] ], "translation": "Êtes-vous sûr de vouloir supprimer votre compte ?" }, "PyYD/v": { "message": "assigned <0>{0} to the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 172]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 172 + ] + ], "translation": "a assigné <0>{0} à la carte" }, "JUce1S": { @@ -745,7 +1271,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 199] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 199 + ] ], "translation": "Assignés" }, @@ -753,91 +1282,156 @@ "message": "Attachment uploaded", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 45]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 45 + ] + ], "translation": "Pièce jointe téléchargée" }, "1rWxEw": { "message": "Awaiting Customer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 59]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 59 + ] + ], "translation": "En attente du client" }, "iH8pgl": { "message": "Back", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 275]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 275 + ] + ], "translation": "Retour" }, "KNKCTb": { "message": "Backlog", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Backlog" }, "Vt50G1": { "message": "Basic Kanban", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 16]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 16 + ] + ], "translation": "Kanban basique" }, "Pat4r8": { "message": "Basic Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 28]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 28 + ] + ], "translation": "Roadmap basique" }, "Cd4sTD": { "message": "Best for individuals and solo creators getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 32]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 32 + ] + ], "translation": "Idéal pour les particuliers et créateurs solo qui débutent" }, "wsy94z": { "message": "Best for large organizations with advanced needs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 98 + ] + ], "translation": "Idéal pour les grandes organisations avec des besoins avancés" }, "UoSI+i": { "message": "Best for small and growing teams that need collaboration", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 53]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 53 + ] + ], "translation": "Idéal pour les petites équipes en croissance qui ont besoin de collaboration" }, "zt/6cS": { "message": "Best for small teams who want to collaborate and move faster together.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 86]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 86 + ] + ], "translation": "Idéal pour les petites équipes qui souhaitent collaborer et avancer plus rapidement ensemble." }, "qaS+1/": { "message": "Best for teams that want to scale without limits", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 76]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 76 + ] + ], "translation": "Idéal pour les équipes qui veulent évoluer sans limites" }, "ARvBT/": { "message": "billed annually", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "facturé annuellement" }, "+VoTOr": { "message": "billed monthly", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "facturé mensuellement" }, "R+w/Va": { @@ -845,9 +1439,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 58], - ["src/views/boards/components/TemplateBoards.tsx", 68], - ["src/views/settings/BillingSettings.tsx", 39] + [ + "src/components/SettingsLayout.tsx", + 58 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 68 + ], + [ + "src/views/settings/BillingSettings.tsx", + 39 + ] ], "translation": "Facturation" }, @@ -855,14 +1458,24 @@ "message": "Billing portal", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 49 + ] + ], "translation": "Portail de facturation" }, "4RoY9J": { "message": "Blog Post", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Article de blog" }, "QD8opX": { @@ -870,9 +1483,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/card/index.tsx", 317], - ["src/views/public/board/index.tsx", 125] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/card/index.tsx", + 364 + ], + [ + "src/views/public/board/index.tsx", + 125 + ] ], "translation": "Tableau" }, @@ -881,8 +1503,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 314], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 85] + [ + "src/components/NewWorkspaceForm.tsx", + 314 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 85 + ] ], "translation": "Analytiques du tableau" }, @@ -890,28 +1518,48 @@ "message": "Board archived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Tableau archivé" }, "wewm3j": { "message": "Board name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 23 + ] + ], "translation": "Le nom du tableau ne peut pas dépasser 100 caractères" }, "R1c3Mq": { "message": "Board name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 22 + ] + ], "translation": "Le nom du tableau est requis" }, "jwI32v": { "message": "Board not found", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 181]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 181 + ] + ], "translation": "Tableau introuvable" }, "XNxYxq": { @@ -919,7 +1567,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 116] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 116 + ] ], "translation": "Modèles de tableau" }, @@ -927,21 +1578,36 @@ "message": "Board unarchived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Tableau désarchivé" }, "Xid3K6": { "message": "Board URL can only contain letters, numbers, and hyphens", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 46]], - "translation": "L'URL du tableau ne peut contenir que des lettres, des chiffres et des traits d'union" - }, - "gv5kbo": { + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 46 + ] + ], + "translation": "L'URL du tableau ne peut contenir que des lettres, des chiffres et des traits d'union" + }, + "gv5kbo": { "message": "Board URL cannot exceed 60 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 44]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 44 + ] + ], "translation": "L'URL du tableau ne peut pas dépasser 60 caractères" }, "8+BY11": { @@ -949,8 +1615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 82], - ["src/views/public/board/index.tsx", 79] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 82 + ], + [ + "src/views/public/board/index.tsx", + 79 + ] ], "translation": "URL du tableau copiée dans le presse-papiers" }, @@ -958,7 +1630,12 @@ "message": "Board URL must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 42]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 42 + ] + ], "translation": "L'URL du tableau doit contenir au moins 3 caractères" }, "qzdST2": { @@ -966,8 +1643,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 85], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 132] + [ + "src/views/home/components/Features.tsx", + 85 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 132 + ] ], "translation": "Visibilité du tableau" }, @@ -975,7 +1658,12 @@ "message": "Board visibility updated", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 49]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 49 + ] + ], "translation": "Visibilité du tableau mise à jour" }, "8TveY+": { @@ -983,8 +1671,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 99], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 73] + [ + "src/components/SideNavigation.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 73 + ] ], "translation": "Tableaux" }, @@ -992,28 +1686,48 @@ "message": "Boards you archive will appear here.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Les tableaux que vous archivez apparaîtront ici." }, "ZDo4HN": { "message": "Brainstorming", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 42]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 42 + ] + ], "translation": "Brainstorming" }, "vXemf6": { "message": "Bug", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 24]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ] + ], "translation": "Bug" }, "/asTmx": { "message": "Bug Report", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 64]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 64 + ] + ], "translation": "Rapport de bug" }, "t6FvJH": { @@ -1021,8 +1735,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 146], - ["src/views/settings/components/RolePermissions.tsx", 35] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 146 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 35 + ] ], "translation": "Peut ajouter des commentaires" }, @@ -1031,8 +1751,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 131], - ["src/views/settings/components/RolePermissions.tsx", 20] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 131 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 20 + ] ], "translation": "Peut créer des tableaux" }, @@ -1041,8 +1767,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 141], - ["src/views/settings/components/RolePermissions.tsx", 30] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 141 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 30 + ] ], "translation": "Peut créer des cartes" }, @@ -1051,8 +1783,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 136], - ["src/views/settings/components/RolePermissions.tsx", 25] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 136 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 25 + ] ], "translation": "Peut créer des listes" }, @@ -1061,8 +1799,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 133], - ["src/views/settings/components/RolePermissions.tsx", 22] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 133 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 22 + ] ], "translation": "Peut supprimer des tableaux" }, @@ -1071,8 +1815,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 143], - ["src/views/settings/components/RolePermissions.tsx", 32] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 143 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 32 + ] ], "translation": "Peut supprimer des cartes" }, @@ -1081,8 +1831,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 148], - ["src/views/settings/components/RolePermissions.tsx", 37] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 148 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 37 + ] ], "translation": "Peut supprimer des commentaires" }, @@ -1091,8 +1847,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 138], - ["src/views/settings/components/RolePermissions.tsx", 27] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 138 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 27 + ] ], "translation": "Peut supprimer des listes" }, @@ -1101,8 +1863,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 127], - ["src/views/settings/components/RolePermissions.tsx", 16] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 127 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 16 + ] ], "translation": "Peut supprimer l'espace de travail" }, @@ -1111,8 +1879,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 132], - ["src/views/settings/components/RolePermissions.tsx", 21] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 132 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 21 + ] ], "translation": "Peut modifier des tableaux" }, @@ -1121,8 +1895,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 142], - ["src/views/settings/components/RolePermissions.tsx", 31] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 142 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 31 + ] ], "translation": "Peut modifier des cartes" }, @@ -1131,8 +1911,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 147], - ["src/views/settings/components/RolePermissions.tsx", 36] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 147 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 36 + ] ], "translation": "Peut modifier des commentaires" }, @@ -1141,8 +1927,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 137], - ["src/views/settings/components/RolePermissions.tsx", 26] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 137 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 26 + ] ], "translation": "Peut modifier des listes" }, @@ -1151,8 +1943,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 152], - ["src/views/settings/components/RolePermissions.tsx", 41] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 152 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 41 + ] ], "translation": "Peut modifier les rôles et permissions des membres" }, @@ -1161,8 +1959,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 126], - ["src/views/settings/components/RolePermissions.tsx", 15] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 126 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 15 + ] ], "translation": "Peut modifier l'espace de travail" }, @@ -1171,8 +1975,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 151], - ["src/views/settings/components/RolePermissions.tsx", 40] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 151 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 40 + ] ], "translation": "Peut inviter des membres" }, @@ -1181,8 +1991,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 128], - ["src/views/settings/components/RolePermissions.tsx", 17] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 128 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 17 + ] ], "translation": "Peut gérer les paramètres de l'espace de travail" }, @@ -1191,8 +2007,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 153], - ["src/views/settings/components/RolePermissions.tsx", 42] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 153 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 42 + ] ], "translation": "Peut supprimer des membres" }, @@ -1201,8 +2023,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 130], - ["src/views/settings/components/RolePermissions.tsx", 19] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 130 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 19 + ] ], "translation": "Peut voir les tableaux" }, @@ -1211,8 +2039,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 140], - ["src/views/settings/components/RolePermissions.tsx", 29] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 140 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 29 + ] ], "translation": "Peut voir les cartes" }, @@ -1221,8 +2055,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 145], - ["src/views/settings/components/RolePermissions.tsx", 34] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 145 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 34 + ] ], "translation": "Peut voir les commentaires" }, @@ -1231,8 +2071,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 135], - ["src/views/settings/components/RolePermissions.tsx", 24] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 135 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 24 + ] ], "translation": "Peut voir les listes" }, @@ -1241,8 +2087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 150], - ["src/views/settings/components/RolePermissions.tsx", 39] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 150 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 39 + ] ], "translation": "Peut voir les membres" }, @@ -1251,8 +2103,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 125], - ["src/views/settings/components/RolePermissions.tsx", 14] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 125 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 14 + ] ], "translation": "Peut voir l'espace de travail" }, @@ -1261,26 +2119,74 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 49], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 176], - ["src/views/board/components/CardContextDuplicateModal.tsx", 267], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 44], - ["src/views/card/components/Comment.tsx", 195], - ["src/views/card/components/DeleteCardConfirmation.tsx", 86], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 64], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 77], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 55], - ["src/views/onboarding/select-plan/index.tsx", 209], - ["src/views/settings/components/Avatar.tsx", 287], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 168], + [ + "src/components/DeleteLabelConfirmation.tsx", + 49 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 176 + ], + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 267 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 44 + ], + [ + "src/views/card/components/Comment.tsx", + 195 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 86 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 64 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 77 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 55 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 209 + ], + [ + "src/views/settings/components/Avatar.tsx", + 287 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 168 + ], [ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 40 ], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 88], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 108] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 88 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 66 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 98 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 108 + ] ], "translation": "Annuler" }, @@ -1288,7 +2194,12 @@ "message": "Card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 317]], + "origin": [ + [ + "src/views/card/index.tsx", + 364 + ] + ], "translation": "Carte" }, "sU2uWc": { @@ -1296,7 +2207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 67] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 67 + ] ], "translation": "Carte dupliquée" }, @@ -1305,8 +2219,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 363], - ["src/views/card/index.tsx", 400] + [ + "src/views/card/index.tsx", + 410 + ], + [ + "src/views/card/index.tsx", + 447 + ] ], "translation": "Carte introuvable" }, @@ -1314,17 +2234,43 @@ "message": "Card title", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 321]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 321 + ] + ], "translation": "Titre de la carte" }, + "4630Pc": { + "message": "Card updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 53 + ] + ], + "translation": "" + }, "rQXTmd": { "message": "Card URL copied to clipboard", "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 308], - ["src/views/card/components/Dropdown.tsx", 44], - ["src/views/public/board/CardModal.tsx", 38] + [ + "src/views/board/index.tsx", + 312 + ], + [ + "src/views/card/components/Dropdown.tsx", + 44 + ], + [ + "src/views/public/board/CardModal.tsx", + 38 + ] ], "translation": "URL de la carte copiée dans le presse-papiers" }, @@ -1333,10 +2279,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 88], - ["src/views/settings/AccountSettings.tsx", 98], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 109], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 178] + [ + "src/views/settings/AccountSettings.tsx", + 88 + ], + [ + "src/views/settings/AccountSettings.tsx", + 98 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 109 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 178 + ] ], "translation": "Changer le mot de passe" }, @@ -1344,25 +2302,43 @@ "message": "Change the application font size.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 63]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 63 + ] + ], "translation": "Modifier la taille de police de l'application." }, "yD3ZSw": { "message": "Change your language preferences.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 53 + ] + ], "translation": "Modifiez vos préférences de langue." }, "gZxH/p": { "message": "changed the due date to <0>{formattedDate}", "placeholders": { - "formattedDate": ["formattedDate"] + "formattedDate": [ + "formattedDate" + ] }, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 303], - ["src/views/card/components/ActivityList.tsx", 317] + [ + "src/views/card/components/ActivityList.tsx", + 303 + ], + [ + "src/views/card/components/ActivityList.tsx", + 317 + ] ], "translation": "a modifié la date d'échéance en <0>{formattedDate}" }, @@ -1370,7 +2346,12 @@ "message": "Check out some of our favorite open source projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 61]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 61 + ] + ], "translation": "Découvrez quelques-uns de nos projets open source préférés." }, "5IXWmO": { @@ -1378,8 +2359,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 43], - ["src/views/auth/signup/index.tsx", 71] + [ + "src/views/auth/login/index.tsx", + 43 + ], + [ + "src/views/auth/signup/index.tsx", + 71 + ] ], "translation": "Consultez votre boîte de réception" }, @@ -1387,7 +2374,12 @@ "message": "Checklist name", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 119]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 119 + ] + ], "translation": "Nom de la checklist" }, "EH8IL3": { @@ -1395,8 +2387,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 108], - ["src/views/pricing/components/PricingTiers.tsx", 39] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 108 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 39 + ] ], "translation": "Checklists" }, @@ -1404,7 +2402,12 @@ "message": "Choose a plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 122]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 122 + ] + ], "translation": "Choisir un forfait" }, "VHS0aJ": { @@ -1423,7 +2426,12 @@ "message": "Clear any custom member permissions so that all members only inherit permissions from their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 67]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 67 + ] + ], "translation": "Effacez toutes les permissions personnalisées des membres afin que tous les membres héritent uniquement des permissions par défaut de leur rôle." }, "jL82rC": { @@ -1435,7 +2443,10 @@ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 48 ], - ["src/views/settings/PermissionsSettings.tsx", 80] + [ + "src/views/settings/PermissionsSettings.tsx", + 80 + ] ], "translation": "Effacer les permissions personnalisées" }, @@ -1443,18 +2454,31 @@ "message": "Clear filters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 227]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 227 + ] + ], "translation": "Effacer les filtres" }, "RRn9jf": { "message": "Click on the link we've sent to {magicLinkRecipient} to sign in.", "placeholders": { - "magicLinkRecipient": ["magicLinkRecipient"] + "magicLinkRecipient": [ + "magicLinkRecipient" + ] }, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 48], - ["src/views/auth/signup/index.tsx", 76] + [ + "src/views/auth/login/index.tsx", + 48 + ], + [ + "src/views/auth/signup/index.tsx", + 76 + ] ], "translation": "Cliquez sur le lien que nous avons envoyé à {magicLinkRecipient} pour vous connecter." }, @@ -1463,9 +2487,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 354], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 172], - ["src/views/settings/components/NewApiKeyModal.tsx", 136] + [ + "src/views/card/index.tsx", + 401 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 172 + ], + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 136 + ] ], "translation": "Fermer" }, @@ -1473,14 +2506,24 @@ "message": "Code Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Revue de code" }, "EvArWh": { "message": "Collaborate seamlessly with your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 91 + ] + ], "translation": "Collaborez facilement avec votre équipe." }, "dtQIWT": { @@ -1488,7 +2531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 309] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 309 + ] ], "translation": "Collaboration" }, @@ -1497,9 +2543,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 317], - ["src/views/home/components/Features.tsx", 67], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 88] + [ + "src/components/NewWorkspaceForm.tsx", + 317 + ], + [ + "src/views/home/components/Features.tsx", + 67 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 88 + ] ], "translation": "Bientôt disponible" }, @@ -1508,8 +2563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 105], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 156] + [ + "src/views/home/components/Features.tsx", + 105 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 156 + ] ], "translation": "Commentaires" }, @@ -1517,65 +2578,112 @@ "message": "Company", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 95 + ] + ], "translation": "Entreprise" }, "bD8I7O": { "message": "Complete", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 94]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 94 + ] + ], "translation": "Terminé" }, "cAgBMh": { "message": "Complete control and ownership:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 70]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 70 + ] + ], "translation": "Contrôle et propriété complets :" }, "Lt+ZP3": { "message": "completed a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 137]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 137 + ] + ], "translation": "a terminé un élément de checklist" }, "29sSki": { "message": "completed checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 249]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 249 + ] + ], "translation": "a terminé l'élément de checklist <0>{0}" }, "tOZp9v": { "message": "Configurable user roles and permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 82]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 82 + ] + ], "translation": "Rôles utilisateur et permissions configurables" }, "t0dTPm": { "message": "Configure webhooks to receive notifications when cards are created, updated, moved, or deleted.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 31]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 31 + ] + ], "translation": "Configurez des webhooks pour recevoir des notifications lorsque des cartes sont créées, mises à jour, déplacées ou supprimées." }, "/f3t6v": { "message": "Configure which actions are allowed for each workspace role. These permissions apply to all members with that role.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 56]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 56 + ] + ], "translation": "Configurez les actions autorisées pour chaque rôle d'espace de travail. Ces permissions s'appliquent à tous les membres ayant ce rôle." }, "86XI28": { "message": "Confirm your email preferences:", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 81]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 81 + ] + ], "translation": "Confirmez vos préférences d'e-mail :" }, "479pdJ": { @@ -1583,7 +2691,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 150] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 150 + ] ], "translation": "Confirmez votre nouveau mot de passe" }, @@ -1591,42 +2702,72 @@ "message": "Connect", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Connecter" }, "3jod3l": { "message": "Connect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 212]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 212 + ] + ], "translation": "Connecter GitHub" }, "nk7caK": { "message": "Connect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 162]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 162 + ] + ], "translation": "Connecter Trello" }, "sDLCvT": { "message": "Connect your favorite tools to streamline your workflow.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 122]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 122 + ] + ], "translation": "Connectez vos outils préférés pour optimiser votre flux de travail." }, "MCIXdZ": { "message": "Connect your GitHub account to import projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 191]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 191 + ] + ], "translation": "Connectez votre compte GitHub pour importer des projets." }, "5eZwRW": { "message": "Connect your Trello account to import boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 149]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 149 + ] + ], "translation": "Connectez votre compte Trello pour importer des tableaux." }, "jfC/xh": { @@ -1634,8 +2775,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 38], - ["src/views/home/components/Header.tsx", 42] + [ + "src/views/home/components/Footer.tsx", + 38 + ], + [ + "src/views/home/components/Header.tsx", + 42 + ] ], "translation": "Contact" }, @@ -1643,7 +2790,12 @@ "message": "Contact Sales", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 95]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 95 + ] + ], "translation": "Contacter les ventes" }, "Bhgd0l": { @@ -1651,9 +2803,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 96], - ["src/views/pricing/components/PricingTiers.tsx", 96] + [ + "src/components/FeedbackModal.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ] ], "translation": "Nous contacter" }, @@ -1661,7 +2822,12 @@ "message": "Content Creation", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 40]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 40 + ] + ], "translation": "Création de contenu" }, "xGVfLh": { @@ -1669,8 +2835,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 212], - ["src/views/onboarding/workspace-details/index.tsx", 291] + [ + "src/views/onboarding/select-plan/index.tsx", + 212 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 291 + ] ], "translation": "Continuer" }, @@ -1678,44 +2850,76 @@ "message": "Continue with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "Continuer avec " }, "gkzAEM": { "message": "Continue with {0}", "placeholders": { - "0": ["key === \"oidc\" ? oidcProviderName : provider.name"] + "0": [ + "key === \"oidc\" ? oidcProviderName : provider.name" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 355]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 355 + ] + ], "translation": "Continuer avec {0}" }, "va/3u1": { "message": "Control who can view and edit your boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 86 + ] + ], "translation": "Contrôlez qui peut voir et modifier vos tableaux." }, "zQPhSa": { "message": "Convert to link", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 47]], + "origin": [ + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 47 + ] + ], "translation": "Convertir en lien" }, "5RkSzq": { "message": "Copy board link", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugButton.tsx", 87]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 87 + ] + ], "translation": "Copier le lien du tableau" }, "F0YmUY": { "message": "Copy card link", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 58]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 58 + ] + ], "translation": "Copier le lien de la carte" }, "0utuU6": { @@ -1723,7 +2927,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 257] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 257 + ] ], "translation": "Copier les listes de contrôle" }, @@ -1732,7 +2939,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 221] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 221 + ] ], "translation": "Copier les étiquettes" }, @@ -1740,7 +2950,12 @@ "message": "Copy link to card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 62]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 62 + ] + ], "translation": "Copier le lien vers la carte" }, "uvH2xS": { @@ -1748,7 +2963,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 239] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 239 + ] ], "translation": "Copier les membres" }, @@ -1757,17 +2975,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 305] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 305 + ] ], "translation": "Fonctionnalités principales" }, "b9XOHo": { "message": "Create {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 166]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 166 + ] + ], "translation": "Créer {0}" }, "vgdzLf": { @@ -1775,9 +3003,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 213], - ["src/views/board/components/NewCardForm.tsx", 520], - ["src/views/board/components/NewListForm.tsx", 141] + [ + "src/components/LabelForm.tsx", + 213 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 520 + ], + [ + "src/views/board/components/NewListForm.tsx", + 141 + ] ], "translation": "Créer un autre" }, @@ -1785,53 +3022,91 @@ "message": "Create API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 175]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 175 + ] + ], "translation": "Créer une clé API" }, "dsLT3m": { "message": "Create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 530]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 530 + ] + ], "translation": "Créer une carte" }, "d33Usy": { "message": "Create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 135]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 135 + ] + ], "translation": "Créer une checklist" }, "zKY5xi": { "message": "Create invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 349]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 349 + ] + ], "translation": "Créer un lien d'invitation" }, "QtACvI": { "message": "Create label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Créer une étiquette" }, "XTKtey": { "message": "Create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 153]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 153 + ] + ], "translation": "Créer une liste" }, "VKoDQD": { "message": "Create new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], "origin": [ - ["src/views/boards/components/BoardsList.tsx", 80], - ["src/views/boards/index.tsx", 41] + [ + "src/views/boards/components/BoardsList.tsx", + 80 + ], + [ + "src/views/boards/index.tsx", + 41 + ] ], "translation": "Créer un nouveau {0}" }, @@ -1839,7 +3114,12 @@ "message": "Create new key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 30 + ] + ], "translation": "Créer une nouvelle clé" }, "0+0/3e": { @@ -1847,8 +3127,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewCardForm.tsx", 417], - ["src/views/card/components/LabelSelector.tsx", 101] + [ + "src/views/board/components/NewCardForm.tsx", + 417 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 101 + ] ], "translation": "Créer une nouvelle étiquette" }, @@ -1857,8 +3143,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 92], - ["src/views/board/index.tsx", 671] + [ + "src/views/board/index.tsx", + 94 + ], + [ + "src/views/board/index.tsx", + 676 + ] ], "translation": "Créer une nouvelle liste" }, @@ -1866,14 +3158,24 @@ "message": "Create template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 132]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 132 + ] + ], "translation": "Créer un modèle" }, "SiPp29": { "message": "Create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Créer un webhook" }, "FdtSNC": { @@ -1881,8 +3183,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 352], - ["src/components/WorkspaceMenu.tsx", 160] + [ + "src/components/NewWorkspaceForm.tsx", + 352 + ], + [ + "src/components/WorkspaceMenu.tsx", + 160 + ] ], "translation": "Créer un espace de travail" }, @@ -1890,14 +3198,24 @@ "message": "Created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 236]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 236 + ] + ], "translation": "Créé" }, "f8lDFq": { "message": "created the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 124]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 124 + ] + ], "translation": "a créé la carte" }, "J5nbej": { @@ -1905,9 +3223,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Critique" }, @@ -1915,7 +3242,12 @@ "message": "Crop your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 253]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 253 + ] + ], "translation": "Recadrer votre avatar" }, "D3C4Yx": { @@ -1923,7 +3255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 19] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 19 + ] ], "translation": "Le mot de passe actuel est requis" }, @@ -1931,7 +3266,12 @@ "message": "Custom board templates", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 38 + ] + ], "translation": "Modèles de tableaux personnalisés" }, "A42Dqn": { @@ -1939,8 +3279,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 172], - ["src/views/pricing/components/PricingTiers.tsx", 83] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 172 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 83 + ] ], "translation": "Image de marque personnalisée" }, @@ -1948,28 +3294,48 @@ "message": "Custom domain", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 74]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 74 + ] + ], "translation": "Domaine personnalisé" }, "2M84k3": { "message": "Custom permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 64]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 64 + ] + ], "translation": "Permissions personnalisées" }, "UirJfL": { "message": "Custom SLA", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 105]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 105 + ] + ], "translation": "SLA personnalisé" }, "u2+JIh": { "message": "Custom URLs require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 283]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 283 + ] + ], "translation": "Les URL personnalisées nécessitent une mise à niveau vers un forfait Pro" }, "7RpHg/": { @@ -1977,8 +3343,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 100], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 101] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 101 + ] ], "translation": "Nom d'utilisateur personnalisé" }, @@ -1986,7 +3358,12 @@ "message": "Custom usernames require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 220]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 220 + ] + ], "translation": "Les noms d'utilisateur personnalisés nécessitent une mise à niveau vers un forfait Pro" }, "j9IZZ0": { @@ -1994,8 +3371,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 307], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 78] + [ + "src/components/NewWorkspaceForm.tsx", + 307 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 78 + ] ], "translation": "URL d'espace de travail personnalisée" }, @@ -2003,35 +3386,60 @@ "message": "Custom workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 81]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 81 + ] + ], "translation": "Nom d'utilisateur d'espace de travail personnalisé" }, "n+xLOH": { "message": "Customer Support", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 54]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 54 + ] + ], "translation": "Support client" }, "pvnfJD": { "message": "Dark", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 158]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 158 + ] + ], "translation": "Sombre" }, "cp1rsD": { "message": "Deactivate invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 348]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 348 + ] + ], "translation": "Désactiver le lien d'invitation" }, "bKzM8L": { "message": "Dedicated account manager", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 104]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 104 + ] + ], "translation": "Gestionnaire de compte dédié" }, "P8Cunr": { @@ -2039,8 +3447,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 98], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 99] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 98 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 99 + ] ], "translation": "Nom d'utilisateur par défaut" }, @@ -2049,15 +3463,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 51], - ["src/components/LabelForm.tsx", 228], - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 52], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 47], - ["src/views/card/components/DeleteCardConfirmation.tsx", 92], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 67], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 83], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 73], - ["src/views/settings/components/WebhookList.tsx", 140] + [ + "src/components/DeleteLabelConfirmation.tsx", + 51 + ], + [ + "src/components/LabelForm.tsx", + 228 + ], + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 52 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 47 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 92 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 67 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 83 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 73 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 140 + ] ], "translation": "Supprimer" }, @@ -2066,9 +3507,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 70], - ["src/views/settings/AccountSettings.tsx", 80], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 96] + [ + "src/views/settings/AccountSettings.tsx", + 70 + ], + [ + "src/views/settings/AccountSettings.tsx", + 80 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 96 + ] ], "translation": "Supprimer le compte" }, @@ -2076,7 +3526,12 @@ "message": "Delete board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Supprimer le tableau" }, "nabda1": { @@ -2084,8 +3539,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMenu.tsx", 74], - ["src/views/card/components/Dropdown.tsx", 76] + [ + "src/views/board/components/CardContextMenu.tsx", + 74 + ], + [ + "src/views/card/components/Dropdown.tsx", + 76 + ] ], "translation": "Supprimer la carte" }, @@ -2093,21 +3554,36 @@ "message": "Delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 120]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 120 + ] + ], "translation": "Supprimer le commentaire" }, "lYT7pQ": { "message": "Delete list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 147]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 147 + ] + ], "translation": "Supprimer la liste" }, "DFjdv0": { "message": "Delete template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Supprimer le modèle" }, "snMaH4": { @@ -2115,7 +3591,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 46] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 46 + ] ], "translation": "Supprimer le webhook" }, @@ -2124,9 +3603,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 106], - ["src/views/settings/WorkspaceSettings.tsx", 125], - ["src/views/settings/WorkspaceSettings.tsx", 136] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 106 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 125 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 136 + ] ], "translation": "Supprimer l'espace de travail" }, @@ -2134,116 +3622,200 @@ "message": "deleted a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 134]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 134 + ] + ], "translation": "a supprimé une checklist" }, "W5r8Qh": { "message": "deleted a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 139]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 139 + ] + ], "translation": "a supprimé un élément de checklist" }, "BMkVQ3": { "message": "deleted checklist <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 224]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 224 + ] + ], "translation": "a supprimé la checklist <0>{0}" }, "CHZ1jC": { "message": "deleted checklist item <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 267]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 267 + ] + ], "translation": "a supprimé l'élément de checklist <0>{0}" }, "f8fH8W": { "message": "Design", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 45]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 45 + ] + ], "translation": "Design" }, "Odv3J6": { "message": "Disconnect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 223]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 223 + ] + ], "translation": "Déconnecter GitHub" }, "YBBifR": { "message": "Disconnect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 177]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 177 + ] + ], "translation": "Déconnecter Trello" }, "1sRmLC": { "message": "Discuss and collaborate on cards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 106]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 106 + ] + ], "translation": "Discutez et collaborez sur les cartes." }, "pfa8F0": { "message": "Display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 36 + ] + ], "translation": "Nom d'affichage" }, "MlyjJu": { "message": "Display name cannot exceed 280 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 22]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 22 + ] + ], "translation": "Le nom d'affichage ne peut pas dépasser 280 caractères" }, "KFJgmZ": { "message": "Display name must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 19 + ] + ], "translation": "Le nom d'affichage doit contenir au moins 3 caractères" }, "x8GeCD": { "message": "Display name updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 41]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 41 + ] + ], "translation": "Nom d'affichage mis à jour" }, "evj0lK": { "message": "Do you offer a free plan?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 83]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 83 + ] + ], "translation": "Proposez-vous une offre gratuite ?" }, "jDRt4n": { "message": "Do you want to unsubscribe?", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 78]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 78 + ] + ], "translation": "Voulez-vous vous désabonner ?" }, "JyXBgS": { "message": "docs", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 109]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 109 + ] + ], "translation": "docs" }, "TbjyhA": { "message": "Docs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 20]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 20 + ] + ], "translation": "Docs" }, "TvY/XA": { @@ -2251,12 +3823,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 209], - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36], - ["src/views/home/components/Footer.tsx", 78], - ["src/views/home/components/Header.tsx", 36] + [ + "src/components/UserMenu.tsx", + 209 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ], + [ + "src/views/home/components/Footer.tsx", + 78 + ], + [ + "src/views/home/components/Header.tsx", + 36 + ] ], "translation": "Documentation" }, @@ -2264,7 +3854,12 @@ "message": "Don't have an account? <0><1>Sign up", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 63]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 63 + ] + ], "translation": "Vous n'avez pas de compte ? <0><1>Inscrivez-vous" }, "DPfwMq": { @@ -2272,15 +3867,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 36], - ["src/views/board/components/CardContextLabelsModal.tsx", 48], - ["src/views/board/components/CardContextMembersModal.tsx", 68], - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 48], - ["src/views/boards/components/TemplateBoards.tsx", 61] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 36 + ], + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 48 + ], + [ + "src/views/board/components/CardContextMembersModal.tsx", + 68 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 48 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 61 + ] ], "translation": "Terminé" }, @@ -2288,7 +3910,12 @@ "message": "Download failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 142]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 142 + ] + ], "translation": "Échec du téléchargement" }, "XicmhT": { @@ -2296,9 +3923,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/Filters.tsx", 171], - ["src/views/board/components/NewCardForm.tsx", 472], - ["src/views/card/index.tsx", 153] + [ + "src/views/board/components/Filters.tsx", + 171 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 472 + ], + [ + "src/views/card/index.tsx", + 155 + ] ], "translation": "Date d'échéance" }, @@ -2306,28 +3942,48 @@ "message": "Due next month", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 132]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 132 + ] + ], "translation": "Échéance le mois prochain" }, "iHcdea": { "message": "Due next week", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 127]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 127 + ] + ], "translation": "Échéance la semaine prochaine" }, "1iShX0": { "message": "Due today", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 117]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 117 + ] + ], "translation": "Échéance aujourd'hui" }, "zxKs+y": { "message": "Due tomorrow", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 122]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 122 + ] + ], "translation": "Échéance demain" }, "euc6Ns": { @@ -2335,7 +3991,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Dupliquer" }, @@ -2344,8 +4003,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 111], - ["src/views/board/components/CardContextMenu.tsx", 68] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 111 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 68 + ] ], "translation": "Dupliquer la carte" }, @@ -2354,7 +4019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Duplication en cours…" }, @@ -2363,8 +4031,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 42], - ["src/views/settings/components/WebhookList.tsx", 132] + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 42 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 132 + ] ], "translation": "Modifier" }, @@ -2373,8 +4047,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/BoardDropdown.tsx", 102], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 116] + [ + "src/views/board/components/BoardDropdown.tsx", + 102 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 116 + ] ], "translation": "Modifier l'URL du tableau" }, @@ -2382,14 +4062,24 @@ "message": "Edit comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 111]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 111 + ] + ], "translation": "Modifier le commentaire" }, "dgr4Kq": { "message": "Edit label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Modifier l'étiquette" }, "TCOMOO": { @@ -2397,8 +4087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 162], - ["src/views/members/index.tsx", 224] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 162 + ], + [ + "src/views/members/index.tsx", + 224 + ] ], "translation": "Modifier les permissions" }, @@ -2406,35 +4102,60 @@ "message": "Edit webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Modifier le webhook" }, "klpSmb": { "message": "Edit workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 162]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 162 + ] + ], "translation": "Modifier l'URL de l'espace de travail" }, "PRofO0": { "message": "Edit YouTube Video", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 108]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 108 + ] + ], "translation": "Modifier la vidéo YouTube" }, "gGx5tM": { "message": "Editing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 44]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 44 + ] + ], "translation": "Modification" }, "b/LfJo": { "message": "email", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "e-mail" }, "O3oNi5": { @@ -2442,8 +4163,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 272], - ["src/views/settings/AccountSettings.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 272 + ], + [ + "src/views/settings/AccountSettings.tsx", + 43 + ] ], "translation": "E-mail" }, @@ -2452,7 +4179,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 191] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 191 + ] ], "translation": "Notifications par e-mail" }, @@ -2460,14 +4190,24 @@ "message": "Email notifications for mentions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 60]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 60 + ] + ], "translation": "Notifications par e-mail pour les mentions" }, "IqjpYe": { "message": "Email visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 100 + ] + ], "translation": "Visibilité de l'e-mail" }, "bFREhu": { @@ -2475,7 +4215,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 200] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 200 + ] ], "translation": "Fin de la liste" }, @@ -2483,7 +4226,12 @@ "message": "Engineering", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Ingénierie" }, "0+ewPp": { @@ -2491,9 +4239,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Amélioration" }, @@ -2501,14 +4258,24 @@ "message": "Enter a custom title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 131]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 131 + ] + ], "translation": "Saisissez un titre personnalisé" }, "rQRXo8": { "message": "Enter new secret to update", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "Saisissez un nouveau secret pour mettre à jour" }, "fR9laE": { @@ -2516,7 +4283,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 122] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 122 + ] ], "translation": "Saisissez votre mot de passe actuel" }, @@ -2525,7 +4295,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 111] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 111 + ] ], "translation": "Saisissez votre mot de passe actuel et choisissez un nouveau mot de passe sécurisé." }, @@ -2533,14 +4306,24 @@ "message": "Enter your email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 402]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 402 + ] + ], "translation": "Saisissez votre adresse e-mail" }, "n9V+ps": { "message": "Enter your name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 390]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 390 + ] + ], "translation": "Saisissez votre nom" }, "0StR7t": { @@ -2548,7 +4331,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 136] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 136 + ] ], "translation": "Saisissez votre nouveau mot de passe" }, @@ -2556,7 +4342,12 @@ "message": "Enter your password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 416]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 416 + ] + ], "translation": "Saisissez votre mot de passe" }, "GpB8YV": { @@ -2564,8 +4355,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 334], - ["src/views/pricing/components/PricingTiers.tsx", 92] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 334 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 92 + ] ], "translation": "Entreprise" }, @@ -2574,9 +4371,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 77], - ["src/views/boards/components/NewBoardForm.tsx", 92], - ["src/views/members/components/InviteMemberForm.tsx", 215] + [ + "src/views/boards/components/NewBoardForm.tsx", + 77 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 92 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 215 + ] ], "translation": "Erreur" }, @@ -2585,7 +4391,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 89] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 89 + ] ], "translation": "Erreur lors du changement de mot de passe" }, @@ -2593,21 +4402,36 @@ "message": "Error connecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 106]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 106 + ] + ], "translation": "Erreur de connexion à GitHub" }, "cji2nM": { "message": "Error creating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 128]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 128 + ] + ], "translation": "Erreur lors de la création du lien d'invitation" }, "USVCGU": { "message": "Error deactivating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 144]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 144 + ] + ], "translation": "Erreur lors de la désactivation du lien d'invitation" }, "bqAQaT": { @@ -2615,7 +4439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 39] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 39 + ] ], "translation": "Erreur lors de la suppression du compte" }, @@ -2623,7 +4450,12 @@ "message": "Error deleting label", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 25]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 25 + ] + ], "translation": "Erreur lors de la suppression de l'étiquette" }, "9s9O5h": { @@ -2631,7 +4463,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 45] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 45 + ] ], "translation": "Erreur lors de la suppression de l'espace de travail" }, @@ -2639,14 +4474,24 @@ "message": "Error disconnecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 129]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 129 + ] + ], "translation": "Erreur de déconnexion de GitHub" }, "lKAvEd": { "message": "Error disconnecting Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 86 + ] + ], "translation": "Erreur lors de la déconnexion de Trello" }, "rarRW/": { @@ -2654,8 +4499,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 97], - ["src/views/members/components/InviteMemberForm.tsx", 103] + [ + "src/views/members/components/InviteMemberForm.tsx", + 97 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 103 + ] ], "translation": "Erreur lors de l'invitation du membre" }, @@ -2663,7 +4514,12 @@ "message": "Error updating display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 54]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 54 + ] + ], "translation": "Erreur lors de la mise à jour du nom d'affichage" }, "CkVV1t": { @@ -2671,7 +4527,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 63 + ] ], "translation": "Erreur lors de la mise à jour de la description de l'espace de travail" }, @@ -2680,7 +4539,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 58] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 58 + ] ], "translation": "Erreur lors de la mise à jour du nom de l'espace de travail" }, @@ -2689,7 +4551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 75] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 75 + ] ], "translation": "Erreur lors de la mise à jour de l'URL de l'espace de travail" }, @@ -2698,8 +4563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 240 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 43 + ] ], "translation": "Erreur lors de la mise à niveau de l'abonnement" }, @@ -2707,7 +4578,12 @@ "message": "Error upgrading to Pro", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 146]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 146 + ] + ], "translation": "Erreur lors de la mise à niveau vers Pro", "obsolete": true }, @@ -2716,8 +4592,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/Avatar.tsx", 69], - ["src/views/settings/components/Avatar.tsx", 199] + [ + "src/views/settings/components/Avatar.tsx", + 69 + ], + [ + "src/views/settings/components/Avatar.tsx", + 199 + ] ], "translation": "Erreur lors du téléchargement de l'image de profil" }, @@ -2726,8 +4608,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 245], - ["src/views/settings/components/WebhookList.tsx", 224] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 245 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 224 + ] ], "translation": "Événements" }, @@ -2735,42 +4623,72 @@ "message": "Everything in the free plan, plus:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 52 + ] + ], "translation": "Tout ce qui est inclus dans le forfait gratuit, plus :" }, "ANyn0x": { "message": "Everything you need, free forever. Unlimited boards, unlimited lists, unlimited cards. Upgrade any time.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 33]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 33 + ] + ], "translation": "Tout ce dont vous avez besoin, gratuit pour toujours. Tableaux illimités, listes illimitées, cartes illimitées. Mise à niveau à tout moment." }, "t+R8+P": { "message": "Execution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 91]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 91 + ] + ], "translation": "Exécution" }, "GwNIE2": { "message": "Extended Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 34]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 34 + ] + ], "translation": "Feuille de route étendue" }, "HYV6Lq": { "message": "Failed to accept invitation. Please try again later, or contact customer support.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 41]], + "origin": [ + [ + "src/views/invite/index.tsx", + 41 + ] + ], "translation": "Échec de l'acceptation de l'invitation. Veuillez réessayer plus tard ou contacter le support client." }, "lXvXNI": { "message": "Failed to copy invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 216]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 216 + ] + ], "translation": "Échec de la copie du lien d'invitation" }, "53QYh8": { @@ -2778,8 +4696,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 78], - ["src/views/boards/components/NewBoardForm.tsx", 93] + [ + "src/views/boards/components/NewBoardForm.tsx", + 78 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 93 + ] ], "translation": "Échec de la création du tableau" }, @@ -2787,7 +4711,12 @@ "message": "Failed to create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 109]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 109 + ] + ], "translation": "Échec de la création du webhook" }, "9YPBHv": { @@ -2795,7 +4724,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 28 + ] ], "translation": "Échec de la suppression du webhook" }, @@ -2803,16 +4735,28 @@ "message": "Failed to fetch video information", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 82]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 82 + ] + ], "translation": "Échec de la récupération des informations vidéo" }, "YtUfwW": { "message": "Failed to login with {0}. Please try again.", "placeholders": { - "0": ["provider.at(0)?.toUpperCase() + provider.slice(1)"] + "0": [ + "provider.at(0)?.toUpperCase() + provider.slice(1)" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 291]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 291 + ] + ], "translation": "Échec de la connexion avec {0}. Veuillez réessayer." }, "5ntVtp": { @@ -2820,8 +4764,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 143], - ["src/views/settings/components/WebhookList.tsx", 184] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 143 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 184 + ] ], "translation": "Échec du test du webhook" }, @@ -2829,21 +4779,36 @@ "message": "Failed to update webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 123]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 123 + ] + ], "translation": "Échec de la mise à jour du webhook" }, "ZL1A+p": { "message": "Failed to upload attachment. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 52]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 52 + ] + ], "translation": "Échec du téléchargement de la pièce jointe. Veuillez réessayer." }, "/lDBHm": { "message": "FAQ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 41 + ] + ], "translation": "FAQ" }, "aJ4pMe": { @@ -2851,8 +4816,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Faqs.tsx", 143], - ["src/views/home/components/Footer.tsx", 52] + [ + "src/views/home/components/Faqs.tsx", + 143 + ], + [ + "src/views/home/components/Footer.tsx", + 52 + ] ], "translation": "FAQ" }, @@ -2861,9 +4832,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Fonctionnalité" }, @@ -2871,7 +4851,12 @@ "message": "Feature Request", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 65]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 65 + ] + ], "translation": "Demande de fonctionnalité" }, "PpZkda": { @@ -2879,10 +4864,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 132], - ["src/views/home/components/Footer.tsx", 50], - ["src/views/home/components/Header.tsx", 17], - ["src/views/home/components/Header.tsx", 33] + [ + "src/views/home/components/Features.tsx", + 132 + ], + [ + "src/views/home/components/Footer.tsx", + 50 + ], + [ + "src/views/home/components/Header.tsx", + 17 + ], + [ + "src/views/home/components/Header.tsx", + 33 + ] ], "translation": "Fonctionnalités" }, @@ -2891,8 +4888,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 59], - ["src/components/UserMenu.tsx", 217] + [ + "src/components/FeedbackModal.tsx", + 59 + ], + [ + "src/components/UserMenu.tsx", + 217 + ] ], "translation": "Commentaires" }, @@ -2900,42 +4903,72 @@ "message": "Feedback sent", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 33]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 33 + ] + ], "translation": "Commentaires envoyés" }, "F6m23G": { "message": "File uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 89]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 89 + ] + ], "translation": "Téléchargement de fichiers" }, "o7J4JM": { "message": "Filter", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 221]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 221 + ] + ], "translation": "Filtrer" }, "l31EoQ": { "message": "Find answers to common questions about Kan. Can't find what you're looking for? Feel free to <0>contact us.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 150]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 150 + ] + ], "translation": "Trouvez des réponses aux questions courantes sur Kan. Vous ne trouvez pas ce que vous cherchez ? N'hésitez pas à <0>nous contacter." }, "q3il6U": { "message": "Font size", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 60]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 60 + ] + ], "translation": "Taille de police" }, "+3TYXa": { "message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 41 + ] + ], "translation": "Pour une durabilité à long terme, nous reconnaissons que tous les bons projets open source ont besoin d'une source de revenus. La nôtre provient de l'offre cloud payante pour les espaces de travail avec plusieurs utilisateurs et pour les slugs d'espace de travail personnalisés. Il n'y a aucune obligation de l'utiliser, et vous pouvez héberger le logiciel sur votre propre infrastructure gratuitement." }, "2POOFK": { @@ -2943,12 +4976,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 77], - ["src/views/onboarding/select-plan/index.tsx", 78], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 331], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/PricingTiers.tsx", 26] + [ + "src/views/onboarding/select-plan/index.tsx", + 77 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 78 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 331 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 26 + ] ], "translation": "Gratuit" }, @@ -2956,7 +5007,12 @@ "message": "Free for everyone", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 31]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 31 + ] + ], "translation": "Gratuit pour tous" }, "W/nQk1": { @@ -2964,8 +5020,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 333], - ["src/views/members/index.tsx", 293] + [ + "src/views/members/components/InviteMemberForm.tsx", + 333 + ], + [ + "src/views/members/index.tsx", + 293 + ] ], "translation": "Forfait gratuit" }, @@ -2973,7 +5035,12 @@ "message": "Free, forever", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 34]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 34 + ] + ], "translation": "Gratuit, pour toujours" }, "6uBU1F": { @@ -2981,9 +5048,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 239], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 240], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 241] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 239 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 240 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 241 + ] ], "translation": "Accès complet à l'API" }, @@ -2991,21 +5067,36 @@ "message": "Full-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Temps plein" }, "rmN315": { "message": "Fun", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Amusant" }, "Weq9zb": { "message": "General", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 54]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 54 + ] + ], "translation": "Général" }, "ZDIydz": { @@ -3013,12 +5104,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 71], - ["src/views/home/components/Cta.tsx", 61], - ["src/views/home/components/Header.tsx", 106], - ["src/views/pricing/components/PricingTiers.tsx", 29], - ["src/views/pricing/components/PricingTiers.tsx", 50], - ["src/views/pricing/components/PricingTiers.tsx", 73] + [ + "src/views/auth/signup/index.tsx", + 71 + ], + [ + "src/views/home/components/Cta.tsx", + 61 + ], + [ + "src/views/home/components/Header.tsx", + 106 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 29 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 50 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 73 + ] ], "translation": "Commencer" }, @@ -3027,53 +5136,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 31], - ["src/views/pricing/components/Pricing.tsx", 49] + [ + "src/views/pricing/components/Pricing.tsx", + 31 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 49 + ] ], "translation": "Commencer" }, "6FsGbN": { "message": "Get started by creating a new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Commencez en créant un nouveau {0}" }, "zC8Whw": { "message": "Get started by creating a new list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 656]], + "origin": [ + [ + "src/views/board/index.tsx", + 661 + ] + ], "translation": "Commencez en créant une nouvelle liste" }, "oW13KZ": { "message": "Get started for free today", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 54]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 54 + ] + ], "translation": "Commencez gratuitement dès aujourd'hui" }, "+OhFss": { "message": "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 92]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 92 + ] + ], "translation": "Commencez gratuitement, sans limite d'utilisation. Pour la collaboration, passez à un forfait adapté à la taille de votre équipe." }, "rD6UIt": { "message": "Get started on Cloud", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 75]], + "origin": [ + [ + "src/views/home/index.tsx", + 75 + ] + ], "translation": "Commencer sur le cloud" }, "7hktsm": { "message": "Getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 25 + ] + ], "translation": "Premiers pas" }, "RkXlPZ": { @@ -3081,8 +5228,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 37], - ["src/views/settings/IntegrationsSettings.tsx", 186] + [ + "src/views/home/components/Footer.tsx", + 37 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 186 + ] ], "translation": "GitHub" }, @@ -3090,21 +5243,36 @@ "message": "GitHub connected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 99]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 99 + ] + ], "translation": "GitHub connecté" }, "/bBVaD": { "message": "GitHub disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 122]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 122 + ] + ], "translation": "GitHub déconnecté" }, "7eMo+U": { "message": "Go Home", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 113]], + "origin": [ + [ + "src/views/invite/index.tsx", + 113 + ] + ], "translation": "Retour à l'accueil" }, "UveK6V": { @@ -3112,8 +5280,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Header.tsx", 100], - ["src/views/invite/index.tsx", 144] + [ + "src/views/home/components/Header.tsx", + 100 + ], + [ + "src/views/invite/index.tsx", + 144 + ] ], "translation": "Aller à l'application" }, @@ -3122,8 +5296,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 107], - ["src/pages/404.tsx", 44] + [ + "src/components/SideNavigation.tsx", + 108 + ], + [ + "src/pages/404.tsx", + 44 + ] ], "translation": "Aller aux tableaux" }, @@ -3131,35 +5311,60 @@ "message": "Go to homepage", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 38]], + "origin": [ + [ + "src/pages/404.tsx", + 38 + ] + ], "translation": "Aller à l'accueil" }, "KAsRdK": { "message": "Go to members", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 131]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 132 + ] + ], "translation": "Aller aux membres" }, "1WuwiM": { "message": "Go to settings", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 143]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 144 + ] + ], "translation": "Aller aux paramètres" }, "csFbe+": { "message": "Go to templates", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 119]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 120 + ] + ], "translation": "Aller aux modèles" }, "SUvm1Y": { "message": "Good for individuals starting out who just need the essentials.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 79]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 79 + ] + ], "translation": "Idéal pour les particuliers qui débutent et qui ont simplement besoin de l'essentiel." }, "cdyS7J": { @@ -3167,9 +5372,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 257], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 258], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 259] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 257 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 258 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 259 + ] ], "translation": "Google SSO" }, @@ -3178,7 +5392,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 260] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 260 + ] ], "translation": "Google SSO + SAML" }, @@ -3186,77 +5403,132 @@ "message": "Guest", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 203]], + "origin": [ + [ + "src/views/members/index.tsx", + 203 + ] + ], "translation": "Invité" }, "CB/NpV": { "message": "High Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Priorité élevée" }, "XXbgHS": { "message": "Hired", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 80]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 80 + ] + ], "translation": "Embauché" }, "SRvxId": { "message": "HMAC secret for signature verification", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "Secret HMAC pour la vérification de signature" }, "LrcnbT": { "message": "Host Kan on your own infrastructure. Ideal for organisations that need complete control over their data.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 69]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 69 + ] + ], "translation": "Hébergez Kan sur votre propre infrastructure. Idéal pour les organisations qui ont besoin d'un contrôle total sur leurs données." }, "WI4eGo": { "message": "How do I get a custom URL?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 64]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 64 + ] + ], "translation": "Comment obtenir une URL personnalisée ?" }, "yV7o5I": { "message": "How do I import my Trello boards?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 46]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 46 + ] + ], "translation": "Comment importer mes tableaux Trello ?" }, "nol/Fb": { "message": "How do I invite team members?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 108]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 108 + ] + ], "translation": "Comment inviter des membres de l'équipe ?" }, "KuSt9W": { "message": "How do I self-host?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 124]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 124 + ] + ], "translation": "Comment auto-héberger ?" }, "UeDFpo": { "message": "How is the project funded?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 38]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 38 + ] + ], "translation": "Comment le projet est-il financé ?" }, "6S8zjx": { "message": "https://www.youtube.com/watch?v=...", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 151]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 151 + ] + ], "translation": "https://www.youtube.com/watch?v=..." }, "2liqDZ": { @@ -3264,7 +5536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 82] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 82 + ] ], "translation": "Je reconnais que toutes les données de mon compte seront définitivement supprimées et je souhaite continuer." }, @@ -3273,7 +5548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 92] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 92 + ] ], "translation": "Je reconnais que toutes les données de l'espace de travail seront définitivement supprimées et je souhaite continuer." }, @@ -3281,21 +5559,36 @@ "message": "Ideas", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 88]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 88 + ] + ], "translation": "Idées" }, "F/vB2g": { "message": "Ideas to improve this page...", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 75]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 75 + ] + ], "translation": "Idées pour améliorer cette page..." }, "l3s5ri": { "message": "Import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 73]], + "origin": [ + [ + "src/views/boards/index.tsx", + 73 + ] + ], "translation": "Importer" }, "2MPcep": { @@ -3303,8 +5596,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 229], - ["src/views/boards/components/ImportBoardsForm.tsx", 381] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 229 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 381 + ] ], "translation": "Importation terminée" }, @@ -3313,8 +5612,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 242], - ["src/views/boards/components/ImportBoardsForm.tsx", 394] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 242 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 394 + ] ], "translation": "Échec de l'importation" }, @@ -3322,28 +5627,48 @@ "message": "Import your Trello boards and hit the ground running.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 96]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 96 + ] + ], "translation": "Importez vos tableaux Trello et démarrez rapidement." }, "c/IAuR": { "message": "Important", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Important" }, "xMn+V9": { "message": "Importing from Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 27]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 27 + ] + ], "translation": "Importation depuis Trello" }, "g2xBxu": { "message": "Importing your Trello boards into Kan is easy. You can follow our step-by-step guide <0>here.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 49]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 49 + ] + ], "translation": "Importer vos tableaux Trello dans Kan est facile. Vous pouvez suivre notre guide étape par étape <0>ici." }, "02i3WU": { @@ -3351,7 +5676,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 313] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 313 + ] ], "translation": "Importations" }, @@ -3359,7 +5687,12 @@ "message": "in", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 167]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 167 + ] + ], "translation": "dans" }, "WbTDwg": { @@ -3367,11 +5700,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 58] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 58 + ] ], "translation": "En cours" }, @@ -3379,14 +5727,24 @@ "message": "Inactive", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 106]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] + ], "translation": "Inactif" }, "6mbe4b": { "message": "Individuals", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 28]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 28 + ] + ], "translation": "Particuliers" }, "nbfdhU": { @@ -3394,8 +5752,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 77], - ["src/views/home/components/Features.tsx", 121] + [ + "src/components/SettingsLayout.tsx", + 77 + ], + [ + "src/views/home/components/Features.tsx", + 121 + ] ], "translation": "Intégrations" }, @@ -3404,7 +5768,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 140] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 140 + ] ], "translation": "Recherche intelligente" }, @@ -3412,42 +5779,72 @@ "message": "Interviewing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 77]], - "translation": "Entretien" - }, - "XILg0L": { + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 77 + ] + ], + "translation": "Entretien" + }, + "XILg0L": { "message": "Invalid email address", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 51]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 51 + ] + ], "translation": "Adresse e-mail invalide" }, "odFCYX": { "message": "Invalid invitation", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 105]], + "origin": [ + [ + "src/views/invite/index.tsx", + 105 + ] + ], "translation": "Invitation invalide" }, "MFKlMB": { "message": "Invite", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 306]], + "origin": [ + [ + "src/views/members/index.tsx", + 306 + ] + ], "translation": "Inviter" }, "KLJ4eD": { "message": "Invite link copied", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 209]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 209 + ] + ], "translation": "Lien d'invitation copié" }, "mZGPxt": { "message": "Invite link copied to clipboard", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 210]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 210 + ] + ], "translation": "Lien d'invitation copié dans le presse-papiers" }, "D9ROdV": { @@ -3455,8 +5852,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 207], - ["src/views/pricing/components/PricingTiers.tsx", 58] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 207 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 58 + ] ], "translation": "Liens d'invitation" }, @@ -3464,7 +5867,12 @@ "message": "Invite links require a Team or Pro subscription. Please upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 123]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 123 + ] + ], "translation": "Les liens d'invitation nécessitent un abonnement Team ou Pro. Veuillez mettre à niveau votre espace de travail." }, "+djOzj": { @@ -3472,8 +5880,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 115], - ["src/views/members/components/InviteMemberForm.tsx", 367] + [ + "src/views/card/components/MemberSelector.tsx", + 115 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 367 + ] ], "translation": "Inviter un membre" }, @@ -3481,7 +5895,12 @@ "message": "Inviting members requires a Team Plan. You'll be redirected to upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 336]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 336 + ] + ], "translation": "Inviter des membres nécessite un forfait Team. Vous serez redirigé pour mettre à niveau votre espace de travail." }, "c9AJhn": { @@ -3489,8 +5908,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/invite/index.tsx", 79], - ["src/views/invite/index.tsx", 129] + [ + "src/views/invite/index.tsx", + 79 + ], + [ + "src/views/invite/index.tsx", + 129 + ] ], "translation": "Rejoindre l'espace de travail" }, @@ -3498,28 +5923,48 @@ "message": "Join workspace | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 91]], + "origin": [ + [ + "src/views/invite/index.tsx", + 91 + ] + ], "translation": "Rejoindre l'espace de travail | kan.bn" }, "wM8xd8": { "message": "Junior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Junior" }, "aWDhU5": { "message": "Kanban is better with a team. Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 51]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 51 + ] + ], "translation": "Kanban est meilleur en équipe. Parfait pour les petites équipes en croissance qui souhaitent collaborer." }, "Xjj/kS": { "message": "Kanban reimagined", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 136]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 136 + ] + ], "translation": "Kanban réinventé" }, "JbXXUW": { @@ -3527,8 +5972,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 57], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 67] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 57 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 67 + ] ], "translation": "Gardez à l'esprit que cette action est irréversible." }, @@ -3536,7 +5987,12 @@ "message": "Keyboard Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 321]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 321 + ] + ], "translation": "Raccourcis clavier" }, "h8DugX": { @@ -3544,10 +6000,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextLabelsModal.tsx", 31], - ["src/views/board/components/Filters.tsx", 155], - ["src/views/board/components/NewCardForm.tsx", 421], - ["src/views/card/index.tsx", 133] + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 31 + ], + [ + "src/views/board/components/Filters.tsx", + 155 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 421 + ], + [ + "src/views/card/index.tsx", + 135 + ] ], "translation": "Étiquettes" }, @@ -3556,7 +6024,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 124] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 124 + ] ], "translation": "Étiquettes et filtres" }, @@ -3564,21 +6035,36 @@ "message": "Labels & Filters", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 100]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 100 + ] + ], "translation": "Étiquettes et filtres" }, "vXIe7J": { "message": "Language", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 50]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 50 + ] + ], "translation": "Langue" }, "k7rCa/": { "message": "Large", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 9]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 9 + ] + ], "translation": "Grande" }, "8Is1ih": { @@ -3586,9 +6072,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 300], - ["src/views/pricing/components/PricingTiers.tsx", 159], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 71] + [ + "src/components/NewWorkspaceForm.tsx", + 300 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 159 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 71 + ] ], "translation": "Offre de lancement" }, @@ -3596,49 +6091,84 @@ "message": "Launch offer: Get unlimited members with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 276]], + "origin": [ + [ + "src/views/members/index.tsx", + 276 + ] + ], "translation": "Offre de lancement : obtenez un nombre illimité de membres avec Pro" }, "sDuhfK": { "message": "Launch offer: unlimited seats for just $29/month with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 98 + ] + ], "translation": "Offre de lancement : places illimitées pour seulement 29 $/mois avec Pro" }, "zwWKhA": { "message": "Learn more", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 110]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 110 + ] + ], "translation": "En savoir plus" }, "wqxglO": { "message": "Learning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Apprentissage" }, "vifyyw": { "message": "Legal", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 131]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 131 + ] + ], "translation": "Mentions légales" }, "iQmbPb": { "message": "License", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 45]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 45 + ] + ], "translation": "Licence" }, "1njn7W": { "message": "Light", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 172]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 172 + ] + ], "translation": "Clair" }, "TCt/8K": { @@ -3646,7 +6176,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 238] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 238 + ] ], "translation": "Accès API limité" }, @@ -3655,11 +6188,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 80], - ["src/views/board/index.tsx", 306], - ["src/views/card/components/Dropdown.tsx", 42], - ["src/views/public/board/CardModal.tsx", 36], - ["src/views/public/board/index.tsx", 77] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 80 + ], + [ + "src/views/board/index.tsx", + 310 + ], + [ + "src/views/card/components/Dropdown.tsx", + 42 + ], + [ + "src/views/public/board/CardModal.tsx", + 36 + ], + [ + "src/views/public/board/index.tsx", + 77 + ] ], "translation": "Lien copié" }, @@ -3668,8 +6216,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 117], - ["src/views/card/index.tsx", 124] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 117 + ], + [ + "src/views/card/index.tsx", + 126 + ] ], "translation": "Liste" }, @@ -3677,21 +6231,36 @@ "message": "List name", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 129]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 129 + ] + ], "translation": "Nom de la liste" }, "h16FyT": { "message": "Lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 163]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 163 + ] + ], "translation": "Listes" }, "1rVAfU": { "message": "Load more activities", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Charger plus d'activités" }, "0qyZ4b": { @@ -3699,7 +6268,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 180] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 180 + ] ], "translation": "Chargement des permissions..." }, @@ -3707,56 +6279,96 @@ "message": "Loading...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Chargement..." }, "N/bcWA": { "message": "Login | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 33]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 33 + ] + ], "translation": "Connexion | kan.bn" }, "nOhz3x": { "message": "Logout", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 227]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 227 + ] + ], "translation": "Déconnexion" }, "vuxdLS": { "message": "Long-term", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Long terme" }, "RHZu7R": { "message": "Loved by teams worldwide", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 236]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 236 + ] + ], "translation": "Apprécié par des équipes du monde entier" }, "O9jVbx": { "message": "Low Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Priorité basse" }, "JnWJXY": { "message": "magic link", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "lien magique" }, "DbZgsJ": { "message": "Make template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 91]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 91 + ] + ], "translation": "Créer un modèle" }, "hB02vO": { @@ -3764,46 +6376,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMembersModal.tsx", 51], - ["src/views/board/components/CardContextMenu.tsx", 38] + [ + "src/views/board/components/CardContextMembersModal.tsx", + 51 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 38 + ] ], "translation": "Gérer les membres" }, + "onllUU": { + "message": "Mark all as read", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 155 + ] + ], + "translation": "" + }, "IDvohQ": { "message": "marked a checklist item as incomplete", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 138]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 138 + ] + ], "translation": "a marqué un élément de la checklist comme incomplet" }, "jl3aEJ": { "message": "marked checklist item <0>{0} as incomplete", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 258]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 258 + ] + ], "translation": "a marqué l'élément de checklist <0>{0} comme incomplet" }, "vo2a+a": { "message": "Marketing", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Marketing" }, "agPptk": { "message": "Medium", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 8]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 8 + ] + ], "translation": "Moyenne" }, "W/Elkg": { "message": "Medium Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Priorité moyenne" }, "OvoEq7": { @@ -3811,9 +6468,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 55], - ["src/views/card/components/ActivityList.tsx", 88], - ["src/views/members/index.tsx", 202] + [ + "src/views/card/components/ActivityList.tsx", + 55 + ], + [ + "src/views/card/components/ActivityList.tsx", + 88 + ], + [ + "src/views/members/index.tsx", + 202 + ] ], "translation": "Membre" }, @@ -3822,22 +6488,47 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 123], - ["src/views/board/components/Filters.tsx", 147], - ["src/views/board/components/NewCardForm.tsx", 379], - ["src/views/card/index.tsx", 143], - ["src/views/members/index.tsx", 263], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 81] + [ + "src/components/SideNavigation.tsx", + 124 + ], + [ + "src/views/board/components/Filters.tsx", + 147 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 379 + ], + [ + "src/views/card/index.tsx", + 145 + ], + [ + "src/views/members/index.tsx", + 263 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 81 + ] ], "translation": "Membres" }, "9u5BOr": { "message": "Members | {0}", "placeholders": { - "0": ["workspace.name ?? t`Workspace`"] + "0": [ + "workspace.name ?? t`Workspace`" + ] }, "comments": [], - "origin": [["src/views/members/index.tsx", 258]], + "origin": [ + [ + "src/views/members/index.tsx", + 258 + ] + ], "translation": "Membres | {0}" }, "/bZzdR": { @@ -3845,7 +6536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 183] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 183 + ] ], "translation": "Mentions" }, @@ -3854,7 +6548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 53 + ] ], "translation": "Lundi" }, @@ -3863,9 +6560,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 62], - ["src/views/pricing/components/Pricing.tsx", 14], - ["src/views/pricing/index.tsx", 20] + [ + "src/views/onboarding/select-plan/index.tsx", + 62 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 14 + ], + [ + "src/views/pricing/index.tsx", + 20 + ] ], "translation": "Mensuel" }, @@ -3873,45 +6579,79 @@ "message": "monthly billing", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 159]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 159 + ] + ], "translation": "facturation mensuelle" }, "51UCsN": { "message": "Move to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 44]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 44 + ] + ], "translation": "Déplacer vers une autre liste" }, "J4+OTA": { "message": "Move to list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 70]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 70 + ] + ], "translation": "Déplacer vers la liste" }, "BOqTi5": { "message": "moved the card from <0>{0} to<1>{1}", "placeholders": { - "0": ["truncate(fromList)"], - "1": ["truncate(toList)"] + "0": [ + "truncate(fromList)" + ], + "1": [ + "truncate(toList)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 160]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 160 + ] + ], "translation": "a déplacé la carte de <0>{0} vers <1>{1}" }, "T7LJic": { "message": "moved the card to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 127]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 127 + ] + ], "translation": "a déplacé la carte vers une autre liste" }, "uEGGDs": { "message": "My webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 209]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 209 + ] + ], "translation": "Mon webhook" }, "6YtxFj": { @@ -3919,11 +6659,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 135], - ["src/views/board/components/NewTemplateForm.tsx", 118], - ["src/views/boards/components/NewBoardForm.tsx", 134], - ["src/views/settings/components/NewWebhookModal.tsx", 205], - ["src/views/settings/components/WebhookList.tsx", 212] + [ + "src/components/LabelForm.tsx", + 135 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 118 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 134 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 205 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 212 + ] ], "translation": "Nom" }, @@ -3931,14 +6686,24 @@ "message": "Navigation", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 55]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 55 + ] + ], "translation": "Navigation" }, "HBI6nY": { "message": "Need help?", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 95]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 95 + ] + ], "translation": "Besoin d'aide ?" }, "isRobC": { @@ -3946,53 +6711,115 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 95], - ["src/views/home/components/Features.tsx", 73] + [ + "src/views/boards/index.tsx", + 95 + ], + [ + "src/views/home/components/Features.tsx", + 73 + ] ], "translation": "Nouveau" }, "6WSYbN": { "message": "New {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 120]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 120 + ] + ], "translation": "Nouveau {0}" }, "TjREUS": { "message": "New API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 147]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 147 + ] + ], "translation": "Nouvelle clé API" }, "pnrmSP": { "message": "New card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 304]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 304 + ] + ], "translation": "Nouvelle carte" }, "cWcxrL": { "message": "New checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 103]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 103 + ] + ], "translation": "Nouvelle checklist" }, + "7Qqqyu": { + "message": "New comment on", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 49 + ] + ], + "translation": "" + }, + "K4xHKu": { + "message": "New comment on a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 50 + ] + ], + "translation": "" + }, "WYwN1G": { "message": "New import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 513]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 513 + ] + ], "translation": "Nouvel import" }, "n1GRql": { "message": "New label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Nouvelle étiquette" }, "Sb2gYF": { @@ -4000,17 +6827,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewListForm.tsx", 113], - ["src/views/board/index.tsx", 620] + [ + "src/views/board/components/NewListForm.tsx", + 113 + ], + [ + "src/views/board/index.tsx", + 624 + ] ], "translation": "Nouvelle liste" }, + "pM1sn/": { + "message": "New notification", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 56 + ] + ], + "translation": "" + }, "+MdEsf": { "message": "New password is required", "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 23] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 23 + ] ], "translation": "Le nouveau mot de passe est requis" }, @@ -4019,7 +6867,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 31] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 31 + ] ], "translation": "Le nouveau mot de passe doit être différent du mot de passe actuel" }, @@ -4027,151 +6878,292 @@ "message": "New template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 104]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 104 + ] + ], "translation": "Nouveau modèle" }, "RJA+sg": { "message": "New Ticket", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 56]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 56 + ] + ], "translation": "Nouveau ticket" }, "sbNNyi": { "message": "New webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Nouveau webhook" }, "curoK5": { "message": "New workspace", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 208]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 208 + ] + ], "translation": "Nouveau workspace" }, "5ACX4z": { "message": "Newsletter", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Newsletter" }, "HeFWjW": { "message": "Next Steps", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 93]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 93 + ] + ], "translation": "Prochaines étapes" }, "/glL9Q": { "message": "No {0}", "placeholders": { - "0": ["isTemplate ? \"templates\" : \"boards\""] + "0": [ + "isTemplate ? \"templates\" : \"boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "Aucun {0}" }, "tlhgDC": { "message": "No archived boards", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "Aucun tableau archivé" }, "Eg99Sc": { "message": "No authentication methods are currently available", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 369]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 369 + ] + ], "translation": "Aucune méthode d'authentification n'est actuellement disponible" }, "2Bu8xj": { "message": "No boards found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 432]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 432 + ] + ], "translation": "Aucun tableau trouvé" }, "OpNhRn": { "message": "No credit card required", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 85]], + "origin": [ + [ + "src/views/home/index.tsx", + 85 + ] + ], "translation": "Aucune carte bancaire requise" }, "MK16u2": { "message": "No dates", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 137]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 137 + ] + ], "translation": "Aucune date" }, "sY2lzr": { "message": "No download URL available for this attachment.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 143]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 143 + ] + ], "translation": "Aucune URL de téléchargement disponible pour cette pièce jointe." }, "TXO5TM": { "message": "No keyboard shortcuts registered.", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 334]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 334 + ] + ], "translation": "Aucun raccourci clavier enregistré." }, "hXMFoN": { "message": "No lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 652]], + "origin": [ + [ + "src/views/board/index.tsx", + 657 + ] + ], "translation": "Aucune liste" }, "fvLNDy": { "message": "No lists have been created yet", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 657]], + "origin": [ + [ + "src/views/board/index.tsx", + 662 + ] + ], "translation": "Aucune liste n'a encore été créée" }, + "HbXReU": { + "message": "No notifications yet", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 192 + ] + ], + "translation": "" + }, "i30J2U": { "message": "No projects found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 283]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 283 + ] + ], "translation": "Aucun projet trouvé" }, "ERpq2P": { "message": "No results found for \"{debouncedQuery}\".", "placeholders": { - "debouncedQuery": ["debouncedQuery"] + "debouncedQuery": [ + "debouncedQuery" + ] }, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 183]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 183 + ] + ], "translation": "Aucun résultat trouvé pour « {debouncedQuery} »." }, "Q9pQaX": { "message": "No roles found for this workspace yet.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 110]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 110 + ] + ], "translation": "Aucun rôle trouvé pour cet espace de travail pour le moment." }, "TX0bT7": { "message": "No webhooks configured. Add a webhook to receive notifications.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 194]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 194 + ] + ], "translation": "Aucun webhook configuré. Ajoutez un webhook pour recevoir des notifications." }, + "iDNBZe": { + "message": "Notifications", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 119 + ], + [ + "src/components/NotificationBell.tsx", + 131 + ], + [ + "src/components/NotificationBell.tsx", + 147 + ] + ], + "translation": "" + }, "9h7RDh": { "message": "Offer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 78]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 78 + ] + ], "translation": "Offre" }, "QnzD50": { @@ -4179,7 +7171,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 245] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 245 + ] ], "translation": "Sur site" }, @@ -4187,42 +7182,72 @@ "message": "On-premise deployment option", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 106]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 106 + ] + ], "translation": "Option de déploiement sur site" }, "gukxZ5": { "message": "Onboarding", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 79]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 79 + ] + ], "translation": "Intégration" }, "usVytm": { "message": "Once you delete your account, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 73]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 73 + ] + ], "translation": "Une fois votre compte supprimé, il n'y a pas de retour en arrière possible. Cette action ne peut pas être annulée." }, "dmKdk0": { "message": "Once you delete your workspace, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 128]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 128 + ] + ], "translation": "Une fois votre espace de travail supprimé, il n'y a pas de retour en arrière possible. Cette action ne peut pas être annulée." }, "69b7aE": { "message": "Open command menu", "placeholders": {}, "comments": [], - "origin": [["src/components/WorkspaceMenu.tsx", 34]], + "origin": [ + [ + "src/components/WorkspaceMenu.tsx", + 34 + ] + ], "translation": "Ouvrir le menu de commandes" }, "cFQEU/": { "message": "Open keyboard shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 172]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 172 + ] + ], "translation": "Ouvrir les raccourcis clavier" }, "v+Wp++": { @@ -4230,7 +7255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 229] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 229 + ] ], "translation": "Open source" }, @@ -4238,21 +7266,36 @@ "message": "Open Source Friends", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 58]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 58 + ] + ], "translation": "Amis open source" }, "BzEFor": { "message": "or", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 380]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 380 + ] + ], "translation": "ou" }, "ZqDqbi": { "message": "Organize and find cards quickly with powerful filtering tools.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 101]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 101 + ] + ], "translation": "Organisez et trouvez vos cartes rapidement grâce à des outils de filtrage puissants." }, "Un80BR": { @@ -4260,8 +7303,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 39], - ["src/views/oss-friends/index.tsx", 52] + [ + "src/views/home/components/Footer.tsx", + 39 + ], + [ + "src/views/oss-friends/index.tsx", + 52 + ] ], "translation": "Amis OSS" }, @@ -4269,35 +7318,60 @@ "message": "Overdue", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 112]], - "translation": "En retard" - }, - "P6dJdq": { + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 112 + ] + ], + "translation": "En retard" + }, + "P6dJdq": { "message": "Overrides cleared", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 25 + ] + ], "translation": "Remplacements effacés" }, "SPLN9O": { "message": "Own your data", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 73]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 73 + ] + ], "translation": "Vos données vous appartiennent" }, "8F1i42": { "message": "Page not found", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 24]], + "origin": [ + [ + "src/pages/404.tsx", + 24 + ] + ], "translation": "Page introuvable" }, "Uworke": { "message": "Part-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Temps partiel" }, "IrZaAn": { @@ -4305,7 +7379,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 69] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 69 + ] ], "translation": "Mot de passe modifié" }, @@ -4313,14 +7390,24 @@ "message": "Password is required to login.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 258]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 258 + ] + ], "translation": "Le mot de passe est requis pour se connecter." }, "tTbref": { "message": "Password is required to sign up.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 257]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 257 + ] + ], "translation": "Le mot de passe est requis pour s'inscrire." }, "vwGkYB": { @@ -4328,7 +7415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 22] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 22 + ] ], "translation": "Le mot de passe doit contenir au moins 8 caractères" }, @@ -4337,7 +7427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 27] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 27 + ] ], "translation": "Les mots de passe ne correspondent pas" }, @@ -4345,7 +7438,12 @@ "message": "Paused", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "En pause" }, "UbYdrA": { @@ -4353,8 +7451,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 120] + [ + "src/views/pricing/components/Pricing.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 120 + ] ], "translation": "Fréquence de paiement" }, @@ -4362,7 +7466,12 @@ "message": "Pending", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "En attente" }, "oVBq1w": { @@ -4370,10 +7479,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 15], - ["src/views/pricing/components/Pricing.tsx", 20], - ["src/views/pricing/index.tsx", 21], - ["src/views/pricing/index.tsx", 26] + [ + "src/views/pricing/components/Pricing.tsx", + 15 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 20 + ], + [ + "src/views/pricing/index.tsx", + 21 + ], + [ + "src/views/pricing/index.tsx", + 26 + ] ], "translation": "par utilisateur/mois" }, @@ -4381,28 +7502,48 @@ "message": "Per-seat pricing", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 83]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 83 + ] + ], "translation": "Tarification par siège" }, "mrhyIB": { "message": "Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 52 + ] + ], "translation": "Parfait pour les petites équipes en croissance qui souhaitent collaborer." }, "TH3Irz": { "message": "Permission", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 119]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 119 + ] + ], "translation": "Permission" }, "9cDpsw": { "message": "Permissions", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 53]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 53 + ] + ], "translation": "Permissions" }, "Jgaz7E": { @@ -4410,7 +7551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 80] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 80 + ] ], "translation": "Permissions réinitialisées" }, @@ -4419,8 +7563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 34], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 57] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 34 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 57 + ] ], "translation": "Permissions mises à jour" }, @@ -4428,14 +7578,24 @@ "message": "Personal Project", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 86]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 86 + ] + ], "translation": "Projet personnel" }, "Oi+J+N": { "message": "Pick a plan to get started. All paid plans include a 14-day free trial.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 125]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 125 + ] + ], "translation": "Choisissez un forfait pour commencer. Tous les forfaits payants incluent un essai gratuit de 14 jours." }, "Iqh0Uv": { @@ -4443,8 +7603,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Planifié" }, @@ -4452,7 +7618,12 @@ "message": "Planning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 90]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 90 + ] + ], "translation": "Planification" }, "F3bW6y": { @@ -4460,7 +7631,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 317] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 317 + ] ], "translation": "Plateforme" }, @@ -4469,7 +7643,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 24] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 24 + ] ], "translation": "Veuillez confirmer votre nouveau mot de passe" }, @@ -4477,28 +7654,48 @@ "message": "Please enter a valid email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 406]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 406 + ] + ], "translation": "Veuillez saisir une adresse e-mail valide" }, "CJ3zUq": { "message": "Please enter a valid name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 394]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 394 + ] + ], "translation": "Veuillez saisir un nom valide" }, "7b2yuC": { "message": "Please enter a valid password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 421]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 421 + ] + ], "translation": "Veuillez saisir un mot de passe valide" }, "jEw0Mr": { "message": "Please enter a valid URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 24 + ] + ], "translation": "Veuillez saisir une URL valide" }, "tmlJN1": { @@ -4506,8 +7703,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 58], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 98] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 58 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 98 + ] ], "translation": "Veuillez saisir une URL YouTube valide" }, @@ -4515,7 +7718,12 @@ "message": "Please select a file to upload.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 70]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 70 + ] + ], "translation": "Veuillez sélectionner un fichier à télécharger." }, "tyHiOa": { @@ -4523,56 +7731,206 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 26], - ["src/components/FeedbackModal.tsx", 41], - ["src/components/NewWorkspaceForm.tsx", 123], - ["src/views/board/components/BoardDropdown.tsx", 65], - ["src/views/board/components/NewCardForm.tsx", 186], - ["src/views/board/components/NewListForm.tsx", 79], - ["src/views/board/components/NewTemplateForm.tsx", 61], - ["src/views/board/components/NewTemplateForm.tsx", 77], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 73], - ["src/views/board/components/VisibilityButton.tsx", 57], - ["src/views/board/index.tsx", 218], - ["src/views/board/index.tsx", 274], - ["src/views/boards/components/ImportBoardsForm.tsx", 243], - ["src/views/boards/components/ImportBoardsForm.tsx", 395], - ["src/views/card/components/AttachmentThumbnails.tsx", 74], - ["src/views/card/components/ChecklistItemRow.tsx", 67], - ["src/views/card/components/ChecklistItemRow.tsx", 95], - ["src/views/card/components/ChecklistNameInput.tsx", 47], - ["src/views/card/components/Checklists.tsx", 81], - ["src/views/card/components/Comment.tsx", 93], - ["src/views/card/components/DeleteCardConfirmation.tsx", 52], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 38], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 46], - ["src/views/card/components/DueDateSelector.tsx", 64], - ["src/views/card/components/LabelSelector.tsx", 75], - ["src/views/card/components/ListSelector.tsx", 55], - ["src/views/card/components/MemberSelector.tsx", 82], - ["src/views/card/components/NewChecklistForm.tsx", 71], - ["src/views/card/components/NewChecklistItemForm.tsx", 90], - ["src/views/card/components/NewCommentForm.tsx", 37], - ["src/views/card/index.tsx", 232], - ["src/views/card/index.tsx", 245], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 28], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 42], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 65], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 93], - ["src/views/members/components/InviteMemberForm.tsx", 104], - ["src/views/members/components/InviteMemberForm.tsx", 241], - ["src/views/members/index.tsx", 66], - ["src/views/onboarding/workspace-details/index.tsx", 101], - ["src/views/onboarding/workspace-details/index.tsx", 150], - ["src/views/settings/components/Avatar.tsx", 200], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 40], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 46], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 55], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 44], - ["src/views/settings/PermissionsSettings.tsx", 40] + [ + "src/components/DeleteLabelConfirmation.tsx", + 26 + ], + [ + "src/components/FeedbackModal.tsx", + 41 + ], + [ + "src/components/NewWorkspaceForm.tsx", + 123 + ], + [ + "src/views/board/components/BoardDropdown.tsx", + 65 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 186 + ], + [ + "src/views/board/components/NewListForm.tsx", + 79 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 61 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 77 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 73 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 57 + ], + [ + "src/views/board/index.tsx", + 222 + ], + [ + "src/views/board/index.tsx", + 278 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 243 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 395 + ], + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 74 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 68 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 96 + ], + [ + "src/views/card/components/ChecklistNameInput.tsx", + 47 + ], + [ + "src/views/card/components/Checklists.tsx", + 81 + ], + [ + "src/views/card/components/Comment.tsx", + 93 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 52 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 38 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 46 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 64 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 75 + ], + [ + "src/views/card/components/ListSelector.tsx", + 55 + ], + [ + "src/views/card/components/MemberSelector.tsx", + 82 + ], + [ + "src/views/card/components/NewChecklistForm.tsx", + 71 + ], + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 90 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 37 + ], + [ + "src/views/card/index.tsx", + 274 + ], + [ + "src/views/card/index.tsx", + 287 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 28 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 42 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 65 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 93 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 104 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 241 + ], + [ + "src/views/members/index.tsx", + 66 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 101 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 150 + ], + [ + "src/views/settings/components/Avatar.tsx", + 200 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 40 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 46 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 55 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 64 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 59 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 76 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 44 + ], + [ + "src/views/settings/PermissionsSettings.tsx", + 40 + ] ], "translation": "Veuillez réessayer plus tard ou contacter le support client." }, @@ -4581,8 +7939,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 129], - ["src/views/members/components/InviteMemberForm.tsx", 145] + [ + "src/views/members/components/InviteMemberForm.tsx", + 129 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 145 + ] ], "translation": "Veuillez réessayer plus tard." }, @@ -4591,12 +7955,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 76], - ["src/views/board/components/CardContextMoveListModal.tsx", 42], - ["src/views/board/index.tsx", 315], - ["src/views/card/components/Dropdown.tsx", 51], - ["src/views/public/board/CardModal.tsx", 45], - ["src/views/public/board/index.tsx", 86] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 76 + ], + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 42 + ], + [ + "src/views/board/index.tsx", + 319 + ], + [ + "src/views/card/components/Dropdown.tsx", + 51 + ], + [ + "src/views/public/board/CardModal.tsx", + 45 + ], + [ + "src/views/public/board/index.tsx", + 86 + ] ], "translation": "Veuillez réessayer." }, @@ -4605,7 +7987,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 193] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 193 + ] ], "translation": "Position dans la liste (0 = premier, laisser vide pour la fin)" }, @@ -4614,12 +7999,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 51], - ["src/views/home/components/Header.tsx", 18], - ["src/views/home/components/Header.tsx", 34], - ["src/views/pricing/components/Pricing.tsx", 85], - ["src/views/pricing/index.tsx", 34], - ["src/views/pricing/index.tsx", 40] + [ + "src/views/home/components/Footer.tsx", + 51 + ], + [ + "src/views/home/components/Header.tsx", + 18 + ], + [ + "src/views/home/components/Header.tsx", + 34 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 85 + ], + [ + "src/views/pricing/index.tsx", + 34 + ], + [ + "src/views/pricing/index.tsx", + 40 + ] ], "translation": "Tarifs" }, @@ -4628,10 +8031,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 275], - ["src/views/pricing/components/Pricing.tsx", 56], - ["src/views/pricing/components/PricingTiers.tsx", 61], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 95] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 275 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 56 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 61 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 95 + ] ], "translation": "Support e-mail prioritaire" }, @@ -4639,14 +8054,24 @@ "message": "Privacy policy", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 43]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 43 + ] + ], "translation": "Politique de confidentialité" }, "zwBp5t": { "message": "Private", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 84]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 84 + ] + ], "translation": "Privé" }, "3fPjUY": { @@ -4654,9 +8079,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 333], - ["src/views/pricing/components/PricingTiers.tsx", 70] + [ + "src/views/onboarding/select-plan/index.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 333 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 70 + ] ], "translation": "Pro" }, @@ -4664,84 +8098,156 @@ "message": "Pro Plan", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 290]], + "origin": [ + [ + "src/views/members/index.tsx", + 290 + ] + ], "translation": "Forfait Pro" }, "Qtzfdk": { "message": "Pro Plan ∞", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 322]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ] + ], "translation": "Forfait Pro ∞" }, "0rPv1T": { "message": "Profile image updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 189]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 189 + ] + ], "translation": "Photo de profil mise à jour" }, "4XF0BB": { "message": "Profile picture", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 30 + ] + ], "translation": "Photo de profil" }, "7d1a0d": { "message": "Public", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 79]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 79 + ] + ], "translation": "Public" }, "ABCjd9": { "message": "Publishing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 47]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 47 + ] + ], "translation": "Publication" }, "bfgr/e": { "message": "Question", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 66 + ] + ], "translation": "Question" }, "1H5u1m": { "message": "Questions?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 147]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 147 + ] + ], "translation": "Des questions ?" }, "kfOGMr": { "message": "Quick Win", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Victoire rapide" }, + "09Tv5j": { + "message": "Reconnecting…", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/ConnectionStatus.tsx", + 30 + ] + ], + "translation": "" + }, "6EWT6T": { "message": "Recruitment", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 73]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 73 + ] + ], "translation": "Recrutement" }, "ekCRTP": { "message": "Rejected", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "Rejeté" }, "qlAIQ1": { "message": "Remote", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "À distance" }, "t/YqKh": { @@ -4749,7 +8255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 58] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 58 + ] ], "translation": "Supprimer" }, @@ -4757,70 +8266,123 @@ "message": "Remove from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 121]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 121 + ] + ], "translation": "Retirer des favoris" }, "99VIgC": { "message": "Remove member", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 233]], + "origin": [ + [ + "src/views/members/index.tsx", + 233 + ] + ], "translation": "Retirer le membre" }, "BZkYSt": { "message": "removed {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 116]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 116 + ] + ], "translation": "a retiré {0} étiquettes : <0>{labelList}" }, "kQwvU8": { "message": "removed a label from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 129]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 129 + ] + ], "translation": "a retiré une étiquette de la carte" }, "uck1tz": { "message": "removed a member from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 131]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 131 + ] + ], "translation": "a retiré un membre de la carte" }, "KEim/+": { "message": "removed an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 141]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 141 + ] + ], "translation": "a retiré une pièce jointe" }, "zwTiVn": { "message": "removed an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 288]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 288 + ] + ], "translation": "a retiré une pièce jointe <0>{0}" }, "Qh7QmR": { "message": "Removed from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 54]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 54 + ] + ], "translation": "Retiré des favoris" }, "YVT40D": { "message": "removed label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 200]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 200 + ] + ], "translation": "a retiré l'étiquette <0>{0}" }, "aHRWVI": { @@ -4828,8 +8390,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 144], - ["src/views/card/components/ActivityList.tsx", 324] + [ + "src/views/card/components/ActivityList.tsx", + 144 + ], + [ + "src/views/card/components/ActivityList.tsx", + 324 + ] ], "translation": "a retiré la date d'échéance" }, @@ -4837,25 +8405,44 @@ "message": "renamed a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 133]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 133 + ] + ], "translation": "a renommé une checklist" }, "3ZjRJY": { "message": "renamed checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 216]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 216 + ] + ], "translation": "a renommé la checklist <0>{0}" }, "NH54UR": { "message": "renamed checklist item to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 240]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 240 + ] + ], "translation": "a renommé l'élément de checklist en <0>{0}" }, "Yx0Ud8": { @@ -4863,8 +8450,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Demandé" }, @@ -4872,7 +8465,12 @@ "message": "Research", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 89]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 89 + ] + ], "translation": "Recherche" }, "e4hPSt": { @@ -4880,7 +8478,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 245] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 245 + ] ], "translation": "Réinitialiser aux valeurs par défaut du rôle" }, @@ -4888,21 +8489,36 @@ "message": "Resolution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 60]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 60 + ] + ], "translation": "Résolution" }, "s+MGs7": { "message": "Resources", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 114 + ] + ], "translation": "Ressources" }, "5k0NLb": { "message": "Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 92]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 92 + ] + ], "translation": "Révision" }, "/gaSVU": { @@ -4910,10 +8526,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 36], - ["src/views/home/components/Header.tsx", 13], - ["src/views/home/components/Header.tsx", 28], - ["src/views/onboarding/workspace-details/index.tsx", 161] + [ + "src/views/home/components/Footer.tsx", + 36 + ], + [ + "src/views/home/components/Header.tsx", + 13 + ], + [ + "src/views/home/components/Header.tsx", + 28 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] ], "translation": "Roadmap" }, @@ -4921,14 +8549,24 @@ "message": "Role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 328]], + "origin": [ + [ + "src/views/members/index.tsx", + 328 + ] + ], "translation": "Rôle" }, "jQ6I8X": { "message": "Role updated", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 58]], + "origin": [ + [ + "src/views/members/index.tsx", + 58 + ] + ], "translation": "Rôle mis à jour" }, "RzxgOE": { @@ -4936,7 +8574,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 164] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 164 + ] ], "translation": "Rôles et permissions" }, @@ -4944,14 +8585,24 @@ "message": "Run on your own infrastructure", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 72]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 72 + ] + ], "translation": "Exécuter sur votre propre infrastructure" }, "YEOVrT": { "message": "SAML SSO", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 102]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 102 + ] + ], "translation": "SAML SSO" }, "+5kO8P": { @@ -4959,7 +8610,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 54 + ] ], "translation": "Samedi" }, @@ -4968,9 +8622,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 183], - ["src/views/card/components/Comment.tsx", 202], - ["src/views/settings/components/Avatar.tsx", 290] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 183 + ], + [ + "src/views/card/components/Comment.tsx", + 202 + ], + [ + "src/views/settings/components/Avatar.tsx", + 290 + ] ], "translation": "Enregistrer" }, @@ -4978,42 +8641,72 @@ "message": "Save changes", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Enregistrer les modifications" }, "MdwUGG": { "message": "Save time with reusable board templates.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 116]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 116 + ] + ], "translation": "Gagnez du temps avec des modèles de tableaux réutilisables." }, "cOh+MI": { "message": "Screening", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 76]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 76 + ] + ], "translation": "Filtrage" }, "SkCNhl": { "message": "Search boards and cards...", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 104]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 104 + ] + ], "translation": "Rechercher des tableaux et des cartes..." }, "e1v+J3": { "message": "Secret (optional)", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 229]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 229 + ] + ], "translation": "Secret (facultatif)" }, "OkTY4+": { "message": "Secret cannot exceed 512 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 28]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 28 + ] + ], "translation": "Le secret ne peut pas dépasser 512 caractères" }, "a3LDKx": { @@ -5021,7 +8714,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 321] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 321 + ] ], "translation": "Sécurité" }, @@ -5029,7 +8725,12 @@ "message": "See what our users are saying about Kan", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 239]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 239 + ] + ], "translation": "Découvrez ce que nos utilisateurs disent de Kan" }, "zYRVNp": { @@ -5037,7 +8738,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 131] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 131 + ] ], "translation": "Sélectionner une liste" }, @@ -5046,8 +8750,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 315], - ["src/views/boards/components/ImportBoardsForm.tsx", 464] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 315 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 464 + ] ], "translation": "Tout sélectionner" }, @@ -5055,56 +8765,96 @@ "message": "Select at least one event", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 32]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 32 + ] + ], "translation": "Sélectionnez au moins un événement" }, "rYUZIe": { "message": "Select source", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Sélectionner la source" }, "ppaRWv": { "message": "Self Host", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 64]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 64 + ] + ], "translation": "Auto-hébergement" }, "l2PIAy": { "message": "Self host with Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 81]], + "origin": [ + [ + "src/views/home/index.tsx", + 81 + ] + ], "translation": "Auto-héberger avec Github" }, "VXk54Y": { "message": "self-assigned the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 169 + ] + ], "translation": "s'est auto-assigné la carte" }, "RoafuO": { "message": "Send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 116]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 116 + ] + ], "translation": "Envoyer un commentaire" }, "eus61c": { "message": "Send test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 310]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 310 + ] + ], "translation": "Envoyer un test" }, "v3YoMA": { "message": "Senior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Senior" }, "8AbRER": { @@ -5112,9 +8862,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 20], - ["src/views/board/components/CardContextMenu.tsx", 56], - ["src/views/card/components/DueDateSelector.tsx", 121] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 20 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 56 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 121 + ] ], "translation": "Définir la date d'échéance" }, @@ -5122,14 +8881,24 @@ "message": "set the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 142]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 142 + ] + ], "translation": "a défini la date d'échéance" }, "JjEJSy": { "message": "Set up your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 179]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 179 + ] + ], "translation": "Configurer votre espace de travail" }, "Tz0i8g": { @@ -5137,8 +8906,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 102], - ["src/components/SideNavigation.tsx", 135] + [ + "src/components/SettingsLayout.tsx", + 102 + ], + [ + "src/components/SideNavigation.tsx", + 136 + ] ], "translation": "Paramètres" }, @@ -5146,70 +8921,120 @@ "message": "Settings | Account", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 26 + ] + ], "translation": "Paramètres | Compte" }, "iy1wb+": { "message": "Settings | API", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 18]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 18 + ] + ], "translation": "Paramètres | API" }, "ADEin1": { "message": "Settings | Billing", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 35]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 35 + ] + ], "translation": "Paramètres | Facturation" }, "hYzsXr": { "message": "Settings | Integrations", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 138]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 138 + ] + ], "translation": "Paramètres | Intégrations" }, "F/FPk/": { "message": "Settings | Permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 49 + ] + ], "translation": "Paramètres | Permissions" }, "+h2faV": { "message": "Settings | Webhooks", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 24]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 24 + ] + ], "translation": "Paramètres | Webhooks" }, "Ci/KUX": { "message": "Settings | Workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 59]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 59 + ] + ], "translation": "Paramètres | Espace de travail" }, "CTqTgr": { "message": "Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 187]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 187 + ] + ], "translation": "Raccourcis" }, "5lWFkC": { "message": "Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 104]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 104 + ] + ], "translation": "Se connecter" }, "n1ekoW": { "message": "Sign In", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 154]], + "origin": [ + [ + "src/views/invite/index.tsx", + 154 + ] + ], "translation": "Se connecter" }, "fcWrnU": { @@ -5217,8 +9042,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 284], - ["src/views/onboarding/workspace-details/index.tsx", 362] + [ + "src/views/onboarding/select-plan/index.tsx", + 284 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 362 + ] ], "translation": "Se déconnecter" }, @@ -5226,7 +9057,12 @@ "message": "Sign Up", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 162]], + "origin": [ + [ + "src/views/invite/index.tsx", + 162 + ] + ], "translation": "S'inscrire" }, "sUZo7y": { @@ -5234,8 +9070,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 36], - ["src/views/auth/signup/index.tsx", 61] + [ + "src/views/auth/signup/index.tsx", + 36 + ], + [ + "src/views/auth/signup/index.tsx", + 61 + ] ], "translation": "S'inscrire | kan.bn" }, @@ -5243,21 +9085,36 @@ "message": "Sign up disabled", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 46]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 46 + ] + ], "translation": "Inscription désactivée" }, "s6iE/c": { "message": "Sign up is currently disabled. Please try again later.", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 49]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 49 + ] + ], "translation": "L'inscription est actuellement désactivée. Veuillez réessayer plus tard." }, "6FDocz": { "message": "Sign up with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "S'inscrire avec " }, "m2nk0i": { @@ -5265,8 +9122,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 89], - ["src/views/pricing/index.tsx", 44] + [ + "src/views/pricing/components/Pricing.tsx", + 89 + ], + [ + "src/views/pricing/index.tsx", + 44 + ] ], "translation": "Tarification simple" }, @@ -5274,7 +9137,12 @@ "message": "Simple, visual task management that just works. Drag and drop cards, collaborate with your team, and get more done.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 139]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 139 + ] + ], "translation": "Gestion de tâches visuelle et simple qui fonctionne tout simplement. Glissez-déposez des cartes, collaborez avec votre équipe et accomplissez davantage." }, "zEcnBA": { @@ -5282,7 +9150,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 291] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 291 + ] ], "translation": "SLA" }, @@ -5290,28 +9161,48 @@ "message": "Small", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 7]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 7 + ] + ], "translation": "Petite" }, "++rVAm": { "message": "Social Media", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Réseaux sociaux" }, "wIb7Ng": { "message": "Software Development", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 22 + ] + ], "translation": "Développement logiciel" }, "6sKjjx": { "message": "Solo", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 76]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 76 + ] + ], "translation": "Solo" }, "vnS6Rf": { @@ -5319,7 +9210,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 256] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 256 + ] ], "translation": "SSO" }, @@ -5327,7 +9221,12 @@ "message": "Star on Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 37]], + "origin": [ + [ + "src/views/home/index.tsx", + 37 + ] + ], "translation": "Mettre une étoile sur Github" }, "veIDCY": { @@ -5335,8 +9234,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 359], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 113] + [ + "src/views/members/components/InviteMemberForm.tsx", + 359 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 113 + ] ], "translation": "Commencer l'essai gratuit de 14 jours" }, @@ -5344,21 +9249,36 @@ "message": "Start free. Upgrade as your team grows. No hidden fees, no contracts.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/index.tsx", 47]], + "origin": [ + [ + "src/views/pricing/index.tsx", + 47 + ] + ], "translation": "Commencez gratuitement. Évoluez au rythme de votre équipe. Aucun frais caché, aucun contrat." }, "uAQUqI": { "message": "Status", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 230]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 230 + ] + ], "translation": "Statut" }, "WYDptz": { "message": "Subscription Required", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 122]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 122 + ] + ], "translation": "Abonnement requis" }, "zzDlyQ": { @@ -5366,8 +9286,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/AuthForm.tsx", 215], - ["src/components/AuthForm.tsx", 232] + [ + "src/components/AuthForm.tsx", + 215 + ], + [ + "src/components/AuthForm.tsx", + 232 + ] ], "translation": "Succès" }, @@ -5376,7 +9302,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 52 + ] ], "translation": "Dimanche" }, @@ -5385,7 +9314,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 59] + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 59 + ] ], "translation": "Boostez votre espace de travail pour seulement 29 $/mois. Voici ce que vous obtiendrez :" }, @@ -5394,8 +9326,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 198], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 325] + [ + "src/components/UserMenu.tsx", + 198 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 325 + ] ], "translation": "Support" }, @@ -5403,21 +9341,36 @@ "message": "Support the development of the project", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 57]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 57 + ] + ], "translation": "Soutenir le développement du projet" }, "D+NlUC": { "message": "System", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 144]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 144 + ] + ], "translation": "Système" }, "KM6m8p": { "message": "Team", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 83]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 83 + ] + ], "translation": "Équipe" }, "bff61F": { @@ -5425,8 +9378,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 322], - ["src/views/members/index.tsx", 292] + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ], + [ + "src/views/members/index.tsx", + 292 + ] ], "translation": "Forfait équipe" }, @@ -5435,9 +9394,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 332], - ["src/views/pricing/components/Pricing.tsx", 46], - ["src/views/pricing/components/PricingTiers.tsx", 47] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 332 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 46 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 47 + ] ], "translation": "Équipes" }, @@ -5446,8 +9414,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/board/index.tsx", 566] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/board/index.tsx", + 570 + ] ], "translation": "Modèle" }, @@ -5455,28 +9429,48 @@ "message": "Template created", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 67]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 67 + ] + ], "translation": "Modèle créé" }, "QHhZeE": { "message": "Template created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 68]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 68 + ] + ], "translation": "Modèle créé avec succès" }, "notwF1": { "message": "Template name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 19]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 19 + ] + ], "translation": "Le nom du modèle ne peut pas dépasser 100 caractères" }, "6OTo9n": { "message": "Template name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 18]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 18 + ] + ], "translation": "Le nom du modèle est requis" }, "iTylMl": { @@ -5484,8 +9478,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 111], - ["src/views/home/components/Features.tsx", 115] + [ + "src/components/SideNavigation.tsx", + 112 + ], + [ + "src/views/home/components/Features.tsx", + 115 + ] ], "translation": "Modèles" }, @@ -5493,14 +9493,24 @@ "message": "Terms of service", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 42]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 42 + ] + ], "translation": "Conditions d'utilisation" }, "NnH3pK": { "message": "Test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 136]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 136 + ] + ], "translation": "Tester" }, "itgYbC": { @@ -5508,8 +9518,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 132], - ["src/views/settings/components/WebhookList.tsx", 174] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 132 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 174 + ] ], "translation": "Webhook de test envoyé avec succès !" }, @@ -5517,28 +9533,48 @@ "message": "Testimonials", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 232]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 232 + ] + ], "translation": "Témoignages" }, "nhMhRr": { "message": "Thank you for your feedback!", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 34]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 34 + ] + ], "translation": "Merci pour votre retour !" }, "NcFrgC": { "message": "The board has been archived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 46]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 46 + ] + ], "translation": "Le tableau a été archivé." }, "C6gv54": { "message": "The board has been unarchived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 47]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 47 + ] + ], "translation": "Le tableau a été désarchivé." }, "nKBUeF": { @@ -5546,7 +9582,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 69] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 69 + ] ], "translation": "La carte a été dupliquée." }, @@ -5555,7 +9594,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 84] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 84 + ] ], "translation": "Le mot de passe actuel que vous avez saisi est incorrect." }, @@ -5563,7 +9605,12 @@ "message": "The main difference between Kan and Trello is that Kan is open source, allowing anyone to view, modify, and contribute to our code. Our cloud offering also offers no restrictions on features for individual use, whereas Trello locks basic features such as the number of boards you can create behind a paywall.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 33]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 33 + ] + ], "translation": "La principale différence entre Kan et Trello est que Kan est open source, permettant à quiconque de consulter, modifier et contribuer à notre code. Notre offre cloud n'impose également aucune restriction sur les fonctionnalités pour un usage individuel, alors que Trello verrouille des fonctionnalités de base telles que le nombre de tableaux que vous pouvez créer derrière un paywall." }, "6tDFBe": { @@ -5571,8 +9618,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 35], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 58] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 35 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 58 + ] ], "translation": "Les permissions du membre ont été mises à jour." }, @@ -5580,37 +9633,64 @@ "message": "The member's role has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 59]], + "origin": [ + [ + "src/views/members/index.tsx", + 59 + ] + ], "translation": "Le rôle du membre a été mis à jour." }, "gUX7b+": { "message": "The open source <0/> alternative to Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 65]], + "origin": [ + [ + "src/views/home/index.tsx", + 65 + ] + ], "translation": "L'alternative open source <0/> à Trello" }, "0xD8Of": { "message": "The page you're looking for doesn't exist or has been moved.", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 29]], + "origin": [ + [ + "src/pages/404.tsx", + 29 + ] + ], "translation": "La page que vous recherchez n'existe pas ou a été déplacée." }, "fQCrjt": { "message": "The visibility of your board has been set to {0}.", "placeholders": { - "0": ["isPublic ? \"public\" : \"private\""] + "0": [ + "isPublic ? \"public\" : \"private\"" + ] }, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 50]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 50 + ] + ], "translation": "La visibilité de votre tableau a été définie sur {0}." }, "FEr96N": { "message": "Theme", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 131]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 131 + ] + ], "translation": "Thème" }, "Yf9FAx": { @@ -5618,7 +9698,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 50] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 50 + ] ], "translation": "Ils ne pourront pas accéder à cet espace de travail." }, @@ -5627,11 +9710,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 44], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 39], - ["src/views/card/components/DeleteCardConfirmation.tsx", 78], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 59], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 69] + [ + "src/components/DeleteLabelConfirmation.tsx", + 44 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 39 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 78 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 59 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 69 + ] ], "translation": "Cette action ne peut pas être annulée." }, @@ -5639,28 +9737,48 @@ "message": "This API key will only be shown once. Please save it in a secure location.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 129]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 129 + ] + ], "translation": "Cette clé API ne sera affichée qu'une seule fois. Veuillez la sauvegarder dans un endroit sécurisé." }, "l4asa1": { "message": "This board is private or does not exist", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 184]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 184 + ] + ], "translation": "Ce tableau est privé ou n'existe pas" }, "wY+6Ye": { "message": "This board URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 136]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 136 + ] + ], "translation": "Cette URL de tableau est déjà utilisée" }, "mTwGOf": { "message": "This invitation link is invalid or has expired.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 108]], + "origin": [ + [ + "src/views/invite/index.tsx", + 108 + ] + ], "translation": "Ce lien d'invitation est invalide ou a expiré." }, "vlxQFL": { @@ -5668,7 +9786,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 81] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 81 + ] ], "translation": "Les permissions de ce membre ont été réinitialisées aux valeurs par défaut de son rôle." }, @@ -5676,14 +9797,24 @@ "message": "This URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 73]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 73 + ] + ], "translation": "Cette URL est déjà prise" }, "gKmoow": { "message": "This URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 75]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 75 + ] + ], "translation": "Cette URL est réservée" }, "OAYToL": { @@ -5703,7 +9834,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 70] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 70 + ] ], "translation": "Cela entraînera la suppression définitive de toutes les données associées à cet espace de travail." }, @@ -5712,7 +9846,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 60 + ] ], "translation": "Cela entraînera la suppression définitive de toutes les données associées à votre compte." }, @@ -5720,14 +9857,24 @@ "message": "This workspace URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 252]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 252 + ] + ], "translation": "Cette URL d'espace de travail est déjà utilisée" }, "bJtM0P": { "message": "This workspace URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 254]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 254 + ] + ], "translation": "Cette URL d'espace de travail est réservée" }, "kp6L3T": { @@ -5735,7 +9882,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 125] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 125 + ] ], "translation": "Ce nom d'utilisateur d'espace de travail est déjà pris" }, @@ -5743,7 +9893,12 @@ "message": "Title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 127]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 127 + ] + ], "translation": "Titre" }, "wK4OTM": { @@ -5751,7 +9906,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 180] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 180 + ] ], "translation": "Titre (facultatif)" }, @@ -5760,8 +9918,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] ], "translation": "À faire" }, @@ -5769,21 +9933,36 @@ "message": "Toggle menu", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 114 + ] + ], "translation": "Basculer le menu" }, "L5WQLg": { "message": "Token is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 19]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 19 + ] + ], "translation": "Le jeton est requis" }, "eEQyz+": { "message": "Track all card changes with detailed activity history.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 111 + ] + ], "translation": "Suivez toutes les modifications de carte avec un historique d'activité détaillé." }, "dtbpdR": { @@ -5791,8 +9970,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 218], - ["src/views/settings/IntegrationsSettings.tsx", 142] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 218 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 142 + ] ], "translation": "Trello" }, @@ -5800,56 +9985,96 @@ "message": "Trello disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 79]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 79 + ] + ], "translation": "Trello déconnecté" }, "kxEs5t": { "message": "Trello imports", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 95 + ] + ], "translation": "Imports Trello" }, "HO+uOC": { "message": "Triaging", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 57]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 57 + ] + ], "translation": "Triage" }, "o+JCfN": { "message": "Trusted by fast-moving teams<0/>around the world", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Logos.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Logos.tsx", + 67 + ] + ], "translation": "Utilisé par des équipes dynamiques<0/>partout dans le monde" }, "bZSICm": { "message": "Unable to add checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 89]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 89 + ] + ], "translation": "Impossible d'ajouter l'élément de liste de contrôle" }, "T7DJ2k": { "message": "Unable to add comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewCommentForm.tsx", 36]], + "origin": [ + [ + "src/views/card/components/NewCommentForm.tsx", + 36 + ] + ], "translation": "Impossible d'ajouter le commentaire" }, "2Q871c": { "message": "Unable to add label", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 244]], + "origin": [ + [ + "src/views/card/index.tsx", + 286 + ] + ], "translation": "Impossible d'ajouter l'étiquette" }, "LeM5RY": { "message": "Unable to clear overrides", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 39]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 39 + ] + ], "translation": "Impossible d'effacer les remplacements" }, "W1ewR0": { @@ -5857,10 +10082,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 313], - ["src/views/card/components/Dropdown.tsx", 49], - ["src/views/public/board/CardModal.tsx", 43], - ["src/views/public/board/index.tsx", 84] + [ + "src/views/board/index.tsx", + 317 + ], + [ + "src/views/card/components/Dropdown.tsx", + 49 + ], + [ + "src/views/public/board/CardModal.tsx", + 43 + ], + [ + "src/views/public/board/index.tsx", + 84 + ] ], "translation": "Impossible de copier le lien" }, @@ -5868,21 +10105,36 @@ "message": "Unable to create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 183]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 183 + ] + ], "translation": "Impossible de créer la carte" }, "mHhffx": { "message": "Unable to create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 70]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 70 + ] + ], "translation": "Impossible de créer la liste de contrôle" }, "TztLaN": { "message": "Unable to create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 78]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 78 + ] + ], "translation": "Impossible de créer la liste" }, "YcyP2z": { @@ -5890,8 +10142,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewTemplateForm.tsx", 60], - ["src/views/board/components/NewTemplateForm.tsx", 76] + [ + "src/views/board/components/NewTemplateForm.tsx", + 60 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 76 + ] ], "translation": "Impossible de créer le modèle" }, @@ -5900,8 +10158,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 122], - ["src/views/onboarding/workspace-details/index.tsx", 100] + [ + "src/components/NewWorkspaceForm.tsx", + 122 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 100 + ] ], "translation": "Impossible de créer l'espace de travail" }, @@ -5909,14 +10173,24 @@ "message": "Unable to delete attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 73]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 73 + ] + ], "translation": "Impossible de supprimer la pièce jointe" }, "Z6r9z1": { "message": "Unable to delete card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 51]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 51 + ] + ], "translation": "Impossible de supprimer la carte" }, "DahTzR": { @@ -5924,7 +10198,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 37] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 37 + ] ], "translation": "Impossible de supprimer la liste de contrôle" }, @@ -5932,14 +10209,24 @@ "message": "Unable to delete checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 95 + ] + ], "translation": "Impossible de supprimer l'élément de liste de contrôle" }, "2QGEbi": { "message": "Unable to delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 45]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 45 + ] + ], "translation": "Impossible de supprimer le commentaire" }, "Oo4E6p": { @@ -5947,7 +10234,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 75] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 75 + ] ], "translation": "Impossible de dupliquer la carte" }, @@ -5955,7 +10245,12 @@ "message": "Unable to move card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 41]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 41 + ] + ], "translation": "Impossible de déplacer la carte" }, "8yFGGF": { @@ -5963,7 +10258,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 27] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 27 + ] ], "translation": "Impossible de retirer le membre" }, @@ -5971,7 +10269,12 @@ "message": "Unable to reorder checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Checklists.tsx", 80]], + "origin": [ + [ + "src/views/card/components/Checklists.tsx", + 80 + ] + ], "translation": "Impossible de réorganiser l'élément de la checklist" }, "vfRdCZ": { @@ -5979,7 +10282,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 92] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 92 + ] ], "translation": "Impossible de réinitialiser les permissions" }, @@ -5987,35 +10293,60 @@ "message": "Unable to send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 40]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 40 + ] + ], "translation": "Impossible d'envoyer le feedback" }, "Q60WUZ": { "message": "Unable to start checkout", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 149]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 149 + ] + ], "translation": "Impossible de démarrer le paiement" }, "T7Mywq": { "message": "Unable to update board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 64]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 64 + ] + ], "translation": "Impossible de mettre à jour le tableau" }, "XpcjLO": { "message": "Unable to update board URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 72]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 72 + ] + ], "translation": "Impossible de mettre à jour l'URL du tableau" }, "Wy6pcF": { "message": "Unable to update board visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 56]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 56 + ] + ], "translation": "Impossible de mettre à jour la visibilité du tableau" }, "o9WLwO": { @@ -6023,8 +10354,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 273], - ["src/views/card/index.tsx", 231] + [ + "src/views/board/index.tsx", + 277 + ], + [ + "src/views/card/index.tsx", + 273 + ] ], "translation": "Impossible de mettre à jour la carte" }, @@ -6032,35 +10369,60 @@ "message": "Unable to update checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistNameInput.tsx", 46]], + "origin": [ + [ + "src/views/card/components/ChecklistNameInput.tsx", + 46 + ] + ], "translation": "Impossible de mettre à jour la checklist" }, "WQPDcG": { "message": "Unable to update checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 67 + ] + ], "translation": "Impossible de mettre à jour l'élément de la checklist" }, "fYVH36": { "message": "Unable to update comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 92]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 92 + ] + ], "translation": "Impossible de mettre à jour le commentaire" }, "C56tim": { "message": "Unable to update due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DueDateSelector.tsx", 63]], + "origin": [ + [ + "src/views/card/components/DueDateSelector.tsx", + 63 + ] + ], "translation": "Impossible de mettre à jour la date d'échéance" }, "delOXn": { "message": "Unable to update labels", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/LabelSelector.tsx", 74]], + "origin": [ + [ + "src/views/card/components/LabelSelector.tsx", + 74 + ] + ], "translation": "Impossible de mettre à jour les étiquettes" }, "I0gAKM": { @@ -6068,8 +10430,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 217], - ["src/views/card/components/ListSelector.tsx", 54] + [ + "src/views/board/index.tsx", + 221 + ], + [ + "src/views/card/components/ListSelector.tsx", + 54 + ] ], "translation": "Impossible de mettre à jour la liste" }, @@ -6077,7 +10445,12 @@ "message": "Unable to update members", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/MemberSelector.tsx", 81]], + "origin": [ + [ + "src/views/card/components/MemberSelector.tsx", + 81 + ] + ], "translation": "Impossible de mettre à jour les membres" }, "GYv20o": { @@ -6085,8 +10458,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 41], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 64] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 41 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 64 + ] ], "translation": "Impossible de mettre à jour les permissions" }, @@ -6094,44 +10473,76 @@ "message": "Unable to update role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 65]], + "origin": [ + [ + "src/views/members/index.tsx", + 65 + ] + ], "translation": "Impossible de mettre à jour le rôle" }, "It4/FS": { "message": "Unarchive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Désarchiver le tableau" }, "E8zYtd": { "message": "unassigned <0>{0} from the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 183]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 183 + ] + ], "translation": "a retiré <0>{0} de la carte" }, "hAMddS": { "message": "unassigned themselves from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 180]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 180 + ] + ], "translation": "s'est retiré de la carte" }, "9Xigls": { "message": "Under Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "En cours de révision" }, "M9p3Vw": { "message": "Unlimited activity log", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 41]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 41 + ] + ], "translation": "Journal d'activité illimité" }, "1wCGT0": { @@ -6139,12 +10550,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 74], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 75], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 76], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 77], - ["src/views/pricing/components/Pricing.tsx", 37], - ["src/views/pricing/components/PricingTiers.tsx", 36] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 74 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 75 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 76 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 77 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 37 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 36 + ] ], "translation": "Tableaux illimités" }, @@ -6152,7 +10581,12 @@ "message": "Unlimited boards, unlimited lists, unlimited cards. No credit card required.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 57]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 57 + ] + ], "translation": "Tableaux illimités, listes illimitées, cartes illimitées. Aucune carte bancaire requise." }, "Zz1qkk": { @@ -6160,8 +10594,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 39], - ["src/views/pricing/components/PricingTiers.tsx", 37] + [ + "src/views/pricing/components/Pricing.tsx", + 39 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 37 + ] ], "translation": "Cartes illimitées" }, @@ -6169,7 +10609,12 @@ "message": "Unlimited comments", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 40]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 40 + ] + ], "translation": "Commentaires illimités" }, "86FLn5": { @@ -6177,10 +10622,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 92], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 93], - ["src/views/pricing/components/PricingTiers.tsx", 59] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 92 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 93 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 59 + ] ], "translation": "Téléchargements de fichiers illimités" }, @@ -6188,7 +10645,12 @@ "message": "Unlimited lists", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 38 + ] + ], "translation": "Listes illimitées" }, "mx8+1u": { @@ -6196,11 +10658,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 297], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 84], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 85], - ["src/views/pricing/components/PricingTiers.tsx", 80], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 68] + [ + "src/components/NewWorkspaceForm.tsx", + 297 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 84 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 85 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 80 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 68 + ] ], "translation": "Membres illimités" }, @@ -6208,14 +10685,24 @@ "message": "Unlimited members and a custom workspace username for teams ready to scale.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 94]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 94 + ] + ], "translation": "Membres illimités et un nom d'utilisateur d'espace de travail personnalisé pour les équipes prêtes à évoluer." }, "Ws+3X+": { "message": "Unlimited seats and advanced features for growing teams.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 75]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 75 + ] + ], "translation": "Places illimitées et fonctionnalités avancées pour les équipes en croissance." }, "SMaFdc": { @@ -6223,8 +10710,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/pages/unsubscribe/index.tsx", 68], - ["src/pages/unsubscribe/index.tsx", 93] + [ + "src/pages/unsubscribe/index.tsx", + 68 + ], + [ + "src/pages/unsubscribe/index.tsx", + 93 + ] ], "translation": "Se désabonner" }, @@ -6233,11 +10726,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugForm.tsx", 175], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 80], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 94], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 89], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 157] + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 175 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 80 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 94 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 89 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 157 + ] ], "translation": "Mettre à jour" }, @@ -6245,44 +10753,76 @@ "message": "Update label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Mettre à jour l'étiquette" }, "L5ZPjz": { "message": "updated a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 136]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 136 + ] + ], "translation": "a mis à jour un élément de la checklist" }, "tGwwnq": { "message": "updated the description", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 126]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 126 + ] + ], "translation": "a mis à jour la description" }, "RfgJqw": { "message": "updated the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 143]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 143 + ] + ], "translation": "a mis à jour la date d'échéance" }, "V3MPSQ": { "message": "updated the title", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 125]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 125 + ] + ], "translation": "a mis à jour le titre" }, "zERArS": { "message": "updated the title to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 152]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 152 + ] + ], "translation": "a mis à jour le titre en <0>{0}" }, "IelE1h": { @@ -6290,9 +10830,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 55], - ["src/views/settings/WorkspaceSettings.tsx", 118] + [ + "src/components/SideNavigation.tsx", + 242 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 55 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 118 + ] ], "translation": "Passer à Pro" }, @@ -6301,8 +10850,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 337], - ["src/views/onboarding/workspace-details/index.tsx", 243] + [ + "src/components/NewWorkspaceForm.tsx", + 337 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 243 + ] ], "translation": "Passer à Pro (29 $/mois)" }, @@ -6310,7 +10865,12 @@ "message": "Upload failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 51]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 51 + ] + ], "translation": "Échec du téléchargement" }, "BBUDfW": { @@ -6318,8 +10878,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 50], - ["src/views/boards/components/TemplateBoards.tsx", 67] + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 67 + ] ], "translation": "Urgent" }, @@ -6328,8 +10894,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 217], - ["src/views/settings/components/WebhookList.tsx", 218] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 217 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 218 + ] ], "translation": "URL" }, @@ -6338,8 +10910,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 38], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 38] + [ + "src/components/NewWorkspaceForm.tsx", + 38 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 38 + ] ], "translation": "L'URL ne peut contenir que des lettres, des chiffres et des traits d'union" }, @@ -6347,7 +10925,12 @@ "message": "URL cannot exceed 2048 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 25 + ] + ], "translation": "L'URL ne peut pas dépasser 2048 caractères" }, "i5rE2/": { @@ -6355,8 +10938,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 36], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 36] + [ + "src/components/NewWorkspaceForm.tsx", + 36 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 36 + ] ], "translation": "L'URL ne peut pas dépasser 64 caractères" }, @@ -6365,8 +10954,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 34], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 34] + [ + "src/components/NewWorkspaceForm.tsx", + 34 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 34 + ] ], "translation": "L'URL doit contenir au moins 3 caractères" }, @@ -6374,112 +10969,208 @@ "message": "Use template", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 154]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 154 + ] + ], "translation": "Utiliser le modèle" }, "n6EWYz": { "message": "Used to sign webhook payloads for verification. Leave blank to keep existing secret.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 239]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 239 + ] + ], "translation": "Utilisé pour signer les charges utiles du webhook à des fins de vérification. Laissez vide pour conserver le secret existant." }, "7PzzBU": { "message": "User", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 322]], + "origin": [ + [ + "src/views/members/index.tsx", + 322 + ] + ], "translation": "Utilisateur" }, "tYN21H": { "message": "User is already a member of this workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 98]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 98 + ] + ], "translation": "L'utilisateur est déjà membre de cet espace de travail" }, "vSJd18": { "message": "Video", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Vidéo" }, "FmfJjN": { "message": "View and manage your API keys.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 25 + ] + ], "translation": "Consultez et gérez vos clés API." }, "t2nDzl": { "message": "View and manage your billing and subscription.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 42]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 42 + ] + ], "translation": "Consultez et gérez votre facturation et votre abonnement." }, "aiHZVP": { "message": "View docs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 67]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 67 + ] + ], "translation": "Voir la documentation" }, "F8DaWi": { "message": "View only", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 153]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 153 + ] + ], "translation": "Lecture seule" }, "fSf2ee": { "message": "View our roadmap.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 154]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 154 + ] + ], "translation": "Consultez notre feuille de route." }, "U5dMR6": { "message": "View workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 187]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 187 + ] + ], "translation": "Voir l'espace de travail" }, + "V8YRD4": { + "message": "Viewing now: {0}", + "placeholders": { + "0": [ + "viewers.map((v) => v.userName).join(\", \")" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 61 + ] + ], + "translation": "" + }, "2q/Q7x": { "message": "Visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 103]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 103 + ] + ], "translation": "Visibilité" }, "BJbLe4": { "message": "We are using the <0>AGPL-3.0 license.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 94]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 94 + ] + ], "translation": "Nous utilisons la <0>licence AGPL-3.0." }, "+EkBs0": { "message": "We couldn't update your preferences. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 63]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 63 + ] + ], "translation": "Nous n'avons pas pu mettre à jour vos préférences. Veuillez réessayer." }, "9y1RcT": { "message": "We're just getting started. ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 152]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 152 + ] + ], "translation": "Nous ne faisons que commencer." }, "GdWB+V": { "message": "Webhook created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 104]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 104 + ] + ], "translation": "Webhook créé avec succès" }, "2X4ecw": { @@ -6487,7 +11178,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 23] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 23 + ] ], "translation": "Webhook supprimé avec succès" }, @@ -6495,14 +11189,24 @@ "message": "Webhook name cannot exceed 255 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 20]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 20 + ] + ], "translation": "Le nom du webhook ne peut pas dépasser 255 caractères" }, "U2+rn0": { "message": "Webhook name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 19 + ] + ], "translation": "Le nom du webhook est requis" }, "8iP9oQ": { @@ -6510,8 +11214,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 135], - ["src/views/settings/components/WebhookList.tsx", 177] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 135 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 177 + ] ], "translation": "Le test du webhook a échoué" }, @@ -6519,14 +11229,24 @@ "message": "Webhook updated successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 118]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 118 + ] + ], "translation": "Webhook mis à jour avec succès" }, "Hf1cEZ": { "message": "Webhook URL is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 23]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 23 + ] + ], "translation": "L'URL du webhook est requise" }, "v1kQyJ": { @@ -6534,8 +11254,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 71], - ["src/views/settings/WebhookSettings.tsx", 28] + [ + "src/components/SettingsLayout.tsx", + 71 + ], + [ + "src/views/settings/WebhookSettings.tsx", + 28 + ] ], "translation": "Webhooks" }, @@ -6543,42 +11269,72 @@ "message": "Week start day", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 91 + ] + ], "translation": "Jour de début de semaine" }, "9eF5oV": { "message": "Welcome back", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 43]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 43 + ] + ], "translation": "Bon retour" }, "xEbBrW": { "message": "What license are you using?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 91 + ] + ], "translation": "Quelle licence utilisez-vous ?" }, "H5G+qG": { "message": "What's the difference between Kan and Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 30]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 30 + ] + ], "translation": "Quelle est la différence entre Kan et Trello ?" }, "mVZH9V": { "message": "When Trello launched in 2011, it blew everyone away with its carefully designed simplicity, but over the years it lost its magic and grew into something closer to \"Jira Lite\". This project is our attempt to recapture the original magic of Trello's simplicity, in open source.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 25 + ] + ], "translation": "Lorsque Trello a été lancé en 2011, il a impressionné tout le monde avec sa simplicité soigneusement conçue, mais au fil des années, il a perdu sa magie et s'est transformé en quelque chose de plus proche de \"Jira Lite\". Ce projet est notre tentative de retrouver la magie originale de la simplicité de Trello, en open source." }, "SFnH1j": { "message": "Why make an open source Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 22]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 22 + ] + ], "translation": "Pourquoi créer un Trello open source ?" }, "pmUArF": { @@ -6586,12 +11342,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 47], - ["src/views/board/index.tsx", 530], - ["src/views/boards/index.tsx", 48], - ["src/views/members/index.tsx", 258], - ["src/views/public/board/index.tsx", 125], - ["src/views/public/boards/index.tsx", 75] + [ + "src/components/SettingsLayout.tsx", + 47 + ], + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/members/index.tsx", + 258 + ], + [ + "src/views/public/board/index.tsx", + 125 + ], + [ + "src/views/public/boards/index.tsx", + 75 + ] ], "translation": "Espace de travail" }, @@ -6599,7 +11373,12 @@ "message": "Workspace created successfully. You can upgrade later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 147]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 147 + ] + ], "translation": "Espace de travail créé avec succès. Vous pourrez effectuer une mise à niveau ultérieurement dans les paramètres.", "obsolete": true }, @@ -6608,7 +11387,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 26] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 26 + ] ], "translation": "Espace de travail supprimé" }, @@ -6617,8 +11399,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 253], - ["src/views/settings/WorkspaceSettings.tsx", 82] + [ + "src/views/onboarding/workspace-details/index.tsx", + 253 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 82 + ] ], "translation": "Description de l'espace de travail" }, @@ -6627,7 +11415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 30] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 30 + ] ], "translation": "La description de l'espace de travail ne peut pas dépasser 280 caractères" }, @@ -6636,7 +11427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 27] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 27 + ] ], "translation": "La description de l'espace de travail doit contenir au moins 3 caractères" }, @@ -6645,7 +11439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 50] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 50 + ] ], "translation": "Description de l'espace de travail mise à jour" }, @@ -6654,9 +11451,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 90], - ["src/views/pricing/components/Pricing.tsx", 54], - ["src/views/pricing/components/PricingTiers.tsx", 57] + [ + "src/views/home/components/Features.tsx", + 90 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 54 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 57 + ] ], "translation": "Membres de l'espace de travail" }, @@ -6665,9 +11471,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 227], - ["src/views/onboarding/workspace-details/index.tsx", 188], - ["src/views/settings/WorkspaceSettings.tsx", 63] + [ + "src/components/NewWorkspaceForm.tsx", + 227 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 188 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 63 + ] ], "translation": "Nom de l'espace de travail" }, @@ -6676,8 +11491,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 30], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 15] + [ + "src/components/NewWorkspaceForm.tsx", + 30 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 15 + ] ], "translation": "Le nom de l'espace de travail ne peut pas dépasser 64 caractères" }, @@ -6685,7 +11506,12 @@ "message": "Workspace name is required", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 29]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 29 + ] + ], "translation": "Le nom de l'espace de travail est requis" }, "jZBHkN": { @@ -6693,7 +11519,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 14] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 14 + ] ], "translation": "Le nom de l'espace de travail doit contenir au moins 3 caractères" }, @@ -6702,7 +11531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 45] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 45 + ] ], "translation": "Nom de l'espace de travail mis à jour" }, @@ -6710,7 +11542,12 @@ "message": "Workspace permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 53 + ] + ], "translation": "Permissions de l'espace de travail" }, "MN6YzG": { @@ -6718,7 +11555,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 62] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 62 + ] ], "translation": "Identifiant de l'espace de travail mis à jour" }, @@ -6726,28 +11566,48 @@ "message": "Workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 72]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 72 + ] + ], "translation": "URL de l'espace de travail" }, "DSGzV+": { "message": "Workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 97 + ] + ], "translation": "Nom d'utilisateur de l'espace de travail" }, "/8pTF/": { "message": "workspace-url", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 241]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 241 + ] + ], "translation": "workspace-url" }, "4kJRen": { "message": "Writing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 43]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 43 + ] + ], "translation": "Écriture" }, "zkWmBh": { @@ -6755,8 +11615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 19], - ["src/views/pricing/index.tsx", 25] + [ + "src/views/pricing/components/Pricing.tsx", + 19 + ], + [ + "src/views/pricing/index.tsx", + 25 + ] ], "translation": "Annuel" }, @@ -6764,42 +11630,72 @@ "message": "Yes, we offer an forever free plan for individual use. No restrictions, no paywalls, no limits.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 86 + ] + ], "translation": "Oui, nous proposons un forfait gratuit à vie pour un usage individuel. Aucune restriction, aucun paywall, aucune limite." }, "RtlIYB": { "message": "You are about to change your password.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 91 + ] + ], "translation": "Vous êtes sur le point de modifier votre mot de passe." }, "3WXdoZ": { "message": "You can always change these later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 182]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 182 + ] + ], "translation": "Vous pourrez toujours modifier ces paramètres plus tard dans les réglages." }, "aelko+": { "message": "You can get a custom workspace URL, like <0>kan.bn/kan, by going into your <1>workspace settings and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 67 + ] + ], "translation": "Vous pouvez obtenir une URL d'espace de travail personnalisée, comme <0>kan.bn/kan, en accédant aux <1>paramètres de votre espace de travail et en souscrivant un abonnement pro. Tous les abonnements contribuent au financement du développement du projet !" }, "kSxwQL": { "message": "You can invite team members by clicking the \"Invite\" button in the top right corner of the <0>members page and entering their email address. They will receive an email with a link to join the workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 111 + ] + ], "translation": "Vous pouvez inviter des membres de l'équipe en cliquant sur le bouton « Inviter » en haut à droite de la <0>page des membres et en saisissant leur adresse e-mail. Ils recevront un e-mail avec un lien pour rejoindre l'espace de travail." }, "vAj6xG": { "message": "You can self-host by following the instructions in our <0>repo.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 127]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 127 + ] + ], "translation": "Vous pouvez auto-héberger en suivant les instructions de notre <0>dépôt." }, "h2FKMV": { @@ -6807,14 +11703,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/List.tsx", 117], - ["src/views/board/components/UpdateBoardSlugButton.tsx", 58], - ["src/views/board/components/VisibilityButton.tsx", 72], - ["src/views/board/index.tsx", 604], - ["src/views/board/index.tsx", 662], - ["src/views/boards/components/BoardsList.tsx", 71], - ["src/views/boards/index.tsx", 59], - ["src/views/boards/index.tsx", 80] + [ + "src/views/board/components/List.tsx", + 117 + ], + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 58 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 72 + ], + [ + "src/views/board/index.tsx", + 608 + ], + [ + "src/views/board/index.tsx", + 667 + ], + [ + "src/views/boards/components/BoardsList.tsx", + 71 + ], + [ + "src/views/boards/index.tsx", + 59 + ], + [ + "src/views/boards/index.tsx", + 80 + ] ], "translation": "Vous n'avez pas la permission" }, @@ -6822,49 +11742,180 @@ "message": "You have been logged in successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 233]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 233 + ] + ], "translation": "Vous avez été connecté avec succès." }, "mchgzf": { "message": "You have been signed up successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 216]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 216 + ] + ], "translation": "Vous avez été inscrit avec succès." }, "raHesj": { "message": "You have been unsubscribed!", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 98]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 98 + ] + ], "translation": "Vous avez été désabonné !" }, "R275Pz": { "message": "You have unlimited seats with your Pro Plan. There is no additional charge for new members!", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 326]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 326 + ] + ], "translation": "Vous disposez de places illimitées avec votre forfait pro. Il n'y a aucun frais supplémentaire pour les nouveaux membres !" }, "MdN5zD": { "message": "You need to be an admin to manage workspace permissions.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 86 + ] + ], "translation": "Vous devez être administrateur pour gérer les permissions de l'espace de travail." }, + "Cb5YSG": { + "message": "You were added to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 33 + ] + ], + "translation": "" + }, + "EYpSRU": { + "message": "You were added to a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 34 + ] + ], + "translation": "" + }, + "j77sVH": { + "message": "You were assigned to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 45 + ] + ], + "translation": "" + }, + "4sxGcV": { + "message": "You were assigned to a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 46 + ] + ], + "translation": "" + }, + "9HDx2Z": { + "message": "You were mentioned in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 29 + ] + ], + "translation": "" + }, + "e6wIqm": { + "message": "You were mentioned in a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 30 + ] + ], + "translation": "" + }, + "11dHnN": { + "message": "You were removed from", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 37 + ] + ], + "translation": "" + }, + "YdIn4I": { + "message": "You were removed from a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 38 + ] + ], + "translation": "" + }, "2SePRT": { "message": "You've been invited to join a workspace on kan.bn.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 134]], + "origin": [ + [ + "src/views/invite/index.tsx", + 134 + ] + ], "translation": "Vous avez été invité à rejoindre un espace de travail sur kan.bn." }, "uOqaMC": { "message": "You've been invited to join a workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 135]], + "origin": [ + [ + "src/views/invite/index.tsx", + 135 + ] + ], "translation": "Vous avez été invité à rejoindre un espace de travail." }, "GoDLB9": { @@ -6872,7 +11923,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 28 + ] ], "translation": "Votre compte a été supprimé." }, @@ -6880,49 +11934,84 @@ "message": "Your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 229]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 229 + ] + ], "translation": "Votre avatar" }, "evg7+A": { "message": "Your boards have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 382]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 382 + ] + ], "translation": "Vos tableaux ont été importés." }, "LqWW5F": { "message": "Your display name has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 42]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 42 + ] + ], "translation": "Votre nom d'affichage a été mis à jour." }, "tca56/": { "message": "Your file has been uploaded successfully.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 46]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 46 + ] + ], "translation": "Votre fichier a été téléchargé avec succès." }, "HcT8J4": { "message": "Your GitHub account has been connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 100 + ] + ], "translation": "Votre compte GitHub a été connecté." }, "AdxYds": { "message": "Your GitHub account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 123]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 123 + ] + ], "translation": "Votre compte GitHub a été déconnecté." }, "PELbXB": { "message": "Your GitHub account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 220]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 220 + ] + ], "translation": "Votre compte GitHub est connecté." }, "Ozt2vv": { @@ -6930,7 +12019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 70] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 70 + ] ], "translation": "Votre mot de passe a été modifié." }, @@ -6938,49 +12030,108 @@ "message": "Your profile image has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 190]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 190 + ] + ], "translation": "Votre image de profil a été mise à jour." }, "+jbXzb": { "message": "Your projects have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 230]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 230 + ] + ], "translation": "Vos projets ont été importés." }, + "0AfkMq": { + "message": "Your role changed in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 41 + ] + ], + "translation": "" + }, + "GKeVeM": { + "message": "Your role was changed", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 42 + ] + ], + "translation": "" + }, "CJWDTP": { "message": "Your Trello account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 80]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 80 + ] + ], "translation": "Votre compte Trello a été déconnecté." }, "WRsbHO": { "message": "Your Trello account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 171]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 171 + ] + ], "translation": "Votre compte Trello est connecté." }, "25fAUC": { "message": "Your unsubscribe link is missing a token. Please open the latest email and try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 33]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 33 + ] + ], "translation": "Votre lien de désinscription ne contient pas de jeton. Veuillez ouvrir le dernier e-mail et réessayer." }, "GRAGsB": { "message": "Your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 322]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 322 + ] + ], "translation": "Votre espace de travail" }, "j0o6ml": { "message": "Your workspace description", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 325]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 325 + ] + ], "translation": "La description de votre espace de travail" }, "GnSSGm": { @@ -6988,7 +12139,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 51] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 51 + ] ], "translation": "La description de votre espace de travail a été mise à jour." }, @@ -6997,7 +12151,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 27 + ] ], "translation": "Votre espace de travail a été supprimé." }, @@ -7006,7 +12163,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 46] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 46 + ] ], "translation": "Le nom de votre espace de travail a été mis à jour." }, @@ -7015,7 +12175,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 63 + ] ], "translation": "L'identifiant de votre espace de travail a été mis à jour." }, @@ -7024,8 +12187,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 197], - ["src/views/onboarding/workspace-details/index.tsx", 198] + [ + "src/views/onboarding/workspace-details/index.tsx", + 197 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 198 + ] ], "translation": "votre-espace-de-travail" }, @@ -7033,7 +12202,12 @@ "message": "YouTube URL", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 147]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 147 + ] + ], "translation": "URL YouTube" } } \ No newline at end of file diff --git a/apps/web/src/locales/fr/messages.ts b/apps/web/src/locales/fr/messages.ts index 0254321a4..2a05b5c47 100644 --- a/apps/web/src/locales/fr/messages.ts +++ b/apps/web/src/locales/fr/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Réseaux sociaux\"],\"+3TYXa\":[\"Pour une durabilité à long terme, nous reconnaissons que tous les bons projets open source ont besoin d'une source de revenus. La nôtre provient de l'offre cloud payante pour les espaces de travail avec plusieurs utilisateurs et pour les slugs d'espace de travail personnalisés. Il n'y a aucune obligation de l'utiliser, et vous pouvez héberger le logiciel sur votre propre infrastructure gratuitement.\"],\"+5kO8P\":[\"Samedi\"],\"+8Nek/\":[\"Mensuel\"],\"+EkBs0\":[\"Nous n'avons pas pu mettre à jour vos préférences. Veuillez réessayer.\"],\"+MdEsf\":[\"Le nouveau mot de passe est requis\"],\"+OhFss\":[\"Commencez gratuitement, sans limite d'utilisation. Pour la collaboration, passez à un forfait adapté à la taille de votre équipe.\"],\"+VoTOr\":[\"facturé mensuellement\"],\"+djOzj\":[\"Inviter un membre\"],\"+h2faV\":[\"Paramètres | Webhooks\"],\"+jbXzb\":[\"Vos projets ont été importés.\"],\"+nvZ6j\":[\"Étiquettes et filtres\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Modèle\"],\"/asTmx\":[\"Rapport de bug\"],\"/bBVaD\":[\"GitHub déconnecté\"],\"/bZzdR\":[\"Mentions\"],\"/f3t6v\":[\"Configurez les actions autorisées pour chaque rôle d'espace de travail. Ces permissions s'appliquent à tous les membres ayant ce rôle.\"],\"/gaSVU\":[\"Roadmap\"],\"/glL9Q\":[\"Aucun \",[\"0\"]],\"/jd3aj\":[\"Rôles d'administrateur avancés\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"Une application kanban puissante et flexible qui vous aide à organiser le travail, suivre les progrès et obtenir des résultats, le tout au même endroit.\"],\"/tOdd2\":[\"Votre image de profil a été mise à jour.\"],\"0+0/3e\":[\"Créer une nouvelle étiquette\"],\"0+ewPp\":[\"Amélioration\"],\"02i3WU\":[\"Importations\"],\"06EQqT\":[\"Duplication en cours…\"],\"0KjpAr\":[\"Peut voir les membres\"],\"0RE1AJ\":[\"Les tableaux que vous archivez apparaîtront ici.\"],\"0StR7t\":[\"Saisissez votre nouveau mot de passe\"],\"0jV46i\":[\"Impossible de supprimer l'élément de liste de contrôle\"],\"0qyZ4b\":[\"Chargement des permissions...\"],\"0rPv1T\":[\"Photo de profil mise à jour\"],\"0utuU6\":[\"Copier les listes de contrôle\"],\"0xD8Of\":[\"La page que vous recherchez n'existe pas ou a été déplacée.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Importer le tableau (1)\"],\"other\":[\"Importer les tableaux (\",[\"boardCount\"],\")\"]}]],\"14Xi3Z\":[\"L'ajout d'un nouveau membre coûtera \",[\"price\"],\" supplémentaires (\",[\"billingType\"],\") par siège.\"],\"1H5u1m\":[\"Des questions ?\"],\"1WuwiM\":[\"Aller aux paramètres\"],\"1bJKhj\":[\"Copier le lien vers la carte\"],\"1hzdxO\":[\"Permissions de l'espace de travail\"],\"1iShX0\":[\"Échéance aujourd'hui\"],\"1njn7W\":[\"Clair\"],\"1rVAfU\":[\"Charger plus d'activités\"],\"1rWxEw\":[\"En attente du client\"],\"1sRmLC\":[\"Discutez et collaborez sur les cartes.\"],\"1wCGT0\":[\"Tableaux illimités\"],\"25fAUC\":[\"Votre lien de désinscription ne contient pas de jeton. Veuillez ouvrir le dernier e-mail et réessayer.\"],\"25mvI+\":[\"Les liens d'invitation nécessitent un abonnement Team ou Pro. Veuillez mettre à niveau votre espace de travail.\"],\"29sSki\":[\"a terminé l'élément de checklist <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"Liste\"],\"2Bu8xj\":[\"Aucun tableau trouvé\"],\"2M84k3\":[\"Permissions personnalisées\"],\"2MPcep\":[\"Importation terminée\"],\"2POOFK\":[\"Gratuit\"],\"2Py5S/\":[\"Je reconnais que toutes les données de l'espace de travail seront définitivement supprimées et je souhaite continuer.\"],\"2Q871c\":[\"Impossible d'ajouter l'étiquette\"],\"2QGEbi\":[\"Impossible de supprimer le commentaire\"],\"2SePRT\":[\"Vous avez été invité à rejoindre un espace de travail sur kan.bn.\"],\"2X4ecw\":[\"Webhook supprimé avec succès\"],\"2h4PVB\":[\"Le nom de votre espace de travail a été mis à jour.\"],\"2liqDZ\":[\"Je reconnais que toutes les données de mon compte seront définitivement supprimées et je souhaite continuer.\"],\"2q/Q7x\":[\"Visibilité\"],\"2roTVj\":[\"Commentaires envoyés\"],\"3LDCpD\":[\"Cette action ne peut pas être annulée.\"],\"3WXdoZ\":[\"Vous pourrez toujours modifier ces paramètres plus tard dans les réglages.\"],\"3ZjRJY\":[\"a renommé la checklist <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Toute personne disposant de ce lien peut rejoindre votre espace de travail\"],\"3d54Wj\":[\"Webhook mis à jour avec succès\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Connecter GitHub\"],\"3pIq39\":[\"Rôles d'administrateur\"],\"479pdJ\":[\"Confirmez votre nouveau mot de passe\"],\"4DOCMI\":[\"URL YouTube\"],\"4Revpc\":[\"Petite\"],\"4RoY9J\":[\"Article de blog\"],\"4XF0BB\":[\"Photo de profil\"],\"4gAX8s\":[\"Basculer le menu\"],\"4kJRen\":[\"Écriture\"],\"4obmDr\":[\"404 - Page introuvable | kan.bn\"],\"51UCsN\":[\"Déplacer vers une autre liste\"],\"53QYh8\":[\"Échec de la création du tableau\"],\"55xJ/O\":[\"Erreur lors du changement de mot de passe\"],\"58AiWX\":[\"Veuillez confirmer votre nouveau mot de passe\"],\"5ACX4z\":[\"Newsletter\"],\"5IXWmO\":[\"Consultez votre boîte de réception\"],\"5P4rhH\":[\"Impossible de mettre à jour les membres\"],\"5RkSzq\":[\"Copier le lien du tableau\"],\"5eZwRW\":[\"Connectez votre compte Trello pour importer des tableaux.\"],\"5h8ooz\":[\"Clés API\"],\"5iplxh\":[\"Le nouveau mot de passe doit être différent du mot de passe actuel\"],\"5k0NLb\":[\"Révision\"],\"5lWFkC\":[\"Se connecter\"],\"5ntVtp\":[\"Échec du test du webhook\"],\"5y6qY8\":[\"a ajouté une pièce jointe\"],\"69b7aE\":[\"Ouvrir le menu de commandes\"],\"6EWT6T\":[\"Recrutement\"],\"6FDocz\":[\"S'inscrire avec \"],\"6FsGbN\":[\"Commencez en créant un nouveau \",[\"0\"]],\"6OTo9n\":[\"Le nom du modèle est requis\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Nouveau \",[\"0\"]],\"6YtxFj\":[\"Nom\"],\"6mbe4b\":[\"Particuliers\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"Les permissions du membre ont été mises à jour.\"],\"6uBU1F\":[\"Accès complet à l'API\"],\"6zeSBB\":[\"Peut créer des cartes\"],\"74F7N/\":[\"Êtes-vous sûr de vouloir supprimer votre compte ?\"],\"7EhE4k\":[\"Mettre à jour l'étiquette\"],\"7L01XJ\":[\"Actions\"],\"7PzzBU\":[\"Utilisateur\"],\"7RpHg/\":[\"Nom d'utilisateur personnalisé\"],\"7Ufoyg\":[\"Listes illimitées\"],\"7aONWr\":[\"L'URL ne peut pas dépasser 2048 caractères\"],\"7b2yuC\":[\"Veuillez saisir un mot de passe valide\"],\"7d1a0d\":[\"Public\"],\"7eMo+U\":[\"Retour à l'accueil\"],\"7hktsm\":[\"Premiers pas\"],\"7i8j3G\":[\"Entreprise\"],\"8+BY11\":[\"URL du tableau copiée dans le presse-papiers\"],\"86FLn5\":[\"Téléchargements de fichiers illimités\"],\"86XI28\":[\"Confirmez vos préférences d'e-mail :\"],\"8AbRER\":[\"Définir la date d'échéance\"],\"8AwlaR\":[\"Membres illimités et un nom d'utilisateur d'espace de travail personnalisé pour les équipes prêtes à évoluer.\"],\"8F1i42\":[\"Page introuvable\"],\"8Is1ih\":[\"Offre de lancement\"],\"8RdLDU\":[\"Projet personnel\"],\"8TveY+\":[\"Tableaux\"],\"8Z4pNX\":[\"Peut créer des listes\"],\"8iP0S8\":[\"Tout ce qui est inclus dans le forfait gratuit, plus :\"],\"8iP9oQ\":[\"Le test du webhook a échoué\"],\"8yFGGF\":[\"Impossible de retirer le membre\"],\"99VIgC\":[\"Retirer le membre\"],\"9PaIxv\":[\"Fonctionnalités principales\"],\"9Xigls\":[\"En cours de révision\"],\"9YPBHv\":[\"Échec de la suppression du webhook\"],\"9cDpsw\":[\"Permissions\"],\"9eF5oV\":[\"Bon retour\"],\"9h7RDh\":[\"Offre\"],\"9lFfqv\":[\"/mois\"],\"9s9O5h\":[\"Erreur lors de la suppression de l'espace de travail\"],\"9u5BOr\":[\"Membres | \",[\"0\"]],\"9wdpwp\":[\"Portail de facturation\"],\"9x4DAL\":[[\"0\"],\" introuvable\"],\"9y1RcT\":[\"Nous ne faisons que commencer.\"],\"A23Y7X\":[\"Rejoindre l'espace de travail | kan.bn\"],\"A42Dqn\":[\"Image de marque personnalisée\"],\"A5hiCy\":[\"Créer un modèle\"],\"A8jqN7\":[\"Impossible d'envoyer le feedback\"],\"ABCjd9\":[\"Publication\"],\"ADEin1\":[\"Paramètres | Facturation\"],\"ALhEZV\":[\"Peut inviter des membres\"],\"ANyn0x\":[\"Tout ce dont vous avez besoin, gratuit pour toujours. Tableaux illimités, listes illimitées, cartes illimitées. Mise à niveau à tout moment.\"],\"ARvBT/\":[\"facturé annuellement\"],\"ASjvm9\":[\"URL de l'espace de travail\"],\"AUYALh\":[\"Bientôt disponible\"],\"AX4ktp\":[\"Création de contenu\"],\"AZI/wb\":[\"Étiquettes et filtres\"],\"AdxYds\":[\"Votre compte GitHub a été déconnecté.\"],\"AeXO77\":[\"Compte\"],\"Alp2ti\":[\"Contacter les ventes\"],\"Ax/hYa\":[\"La description de l'espace de travail ne peut pas dépasser 280 caractères\"],\"B3xxao\":[\"Ajouter une carte\"],\"BBUDfW\":[\"Urgent\"],\"BEVzjL\":[\"Échec de l'importation\"],\"BJbLe4\":[\"Nous utilisons la <0>licence AGPL-3.0.\"],\"BMkVQ3\":[\"a supprimé la checklist <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"a déplacé la carte de <0>\",[\"0\"],\" vers <1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Dupliquer la carte\"],\"BZkYSt\":[\"a retiré \",[\"0\"],\" étiquettes : <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Êtes-vous sûr de vouloir supprimer l'espace de travail \",[\"0\"],\" ?\"],\"Bhgd0l\":[\"Nous contacter\"],\"BzEFor\":[\"ou\"],\"C56tim\":[\"Impossible de mettre à jour la date d'échéance\"],\"C6gv54\":[\"Le tableau a été désarchivé.\"],\"CAL6E9\":[\"Équipes\"],\"CB/NpV\":[\"Priorité élevée\"],\"CHZ1jC\":[\"a supprimé l'élément de checklist <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Veuillez saisir un nom valide\"],\"CJWDTP\":[\"Votre compte Trello a été déconnecté.\"],\"CJukzS\":[[\"0\"],\" étiquettes\"],\"CTqTgr\":[\"Raccourcis\"],\"CYWHT+\":[\"Erreur lors du téléchargement de l'image de profil\"],\"Cd4sTD\":[\"Idéal pour les particuliers et créateurs solo qui débutent\"],\"Ci/KUX\":[\"Paramètres | Espace de travail\"],\"CkVV1t\":[\"Erreur lors de la mise à jour de la description de l'espace de travail\"],\"Cmudpi\":[\"Peut supprimer l'espace de travail\"],\"CozWO1\":[\"Nom de l'espace de travail\"],\"CujNX4\":[\"a ajouté une pièce jointe <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"Système\"],\"D0esZz\":[\"Journal d'activité\"],\"D3C4Yx\":[\"Le mot de passe actuel est requis\"],\"D7/JvJ\":[\"Ajustez le recadrage carré pour adapter votre avatar.\"],\"D9ROdV\":[\"Liens d'invitation\"],\"DAV3uK\":[\"Permissions mises à jour\"],\"DBC3t5\":[\"Dimanche\"],\"DFjdv0\":[\"Supprimer le modèle\"],\"DMeWZD\":[\"Êtes-vous sûr de vouloir supprimer \",[\"0\"],\" ?\"],\"DPfwMq\":[\"Terminé\"],\"DSGzV+\":[\"Nom d'utilisateur de l'espace de travail\"],\"DahTzR\":[\"Impossible de supprimer la liste de contrôle\"],\"DbZgsJ\":[\"Créer un modèle\"],\"DtXlZq\":[\"Impossible de mettre à jour la checklist\"],\"Dz63YI\":[\"Une erreur s'est produite lors de la déconnexion de votre compte GitHub.\"],\"E0t3jO\":[\"a ajouté l'élément de checklist <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Tarification par siège\"],\"E8zYtd\":[\"a retiré <0>\",[\"0\"],\" de la carte\"],\"ECJKc4\":[\"Clé API créée\"],\"EEHmPC\":[\"Offre de lancement : obtenez un nombre illimité de membres avec Pro\"],\"EH8IL3\":[\"Checklists\"],\"EII/X8\":[\"Toutes les fonctionnalités Teams +\"],\"ERpq2P\":[\"Aucun résultat trouvé pour « \",[\"debouncedQuery\"],\" ».\"],\"ESClHO\":[\"Support e-mail prioritaire\"],\"Eg99Sc\":[\"Aucune méthode d'authentification n'est actuellement disponible\"],\"Eit43O\":[\"a défini la date d'échéance\"],\"EkH9pt\":[\"Mettre à jour\"],\"EvArWh\":[\"Collaborez facilement avec votre équipe.\"],\"F/FPk/\":[\"Paramètres | Permissions\"],\"F/vB2g\":[\"Idées pour améliorer cette page...\"],\"F0YmUY\":[\"Copier le lien de la carte\"],\"F3bW6y\":[\"Plateforme\"],\"F4KRmY\":[\"8 $/mois\"],\"F4PLG4\":[\"Description de l'espace de travail mise à jour\"],\"F6m23G\":[\"Téléchargement de fichiers\"],\"F6pfE9\":[\"Actif\"],\"F8DaWi\":[\"Lecture seule\"],\"FEr96N\":[\"Thème\"],\"FdtSNC\":[\"Créer un espace de travail\"],\"FmN5me\":[\"Résolution\"],\"FmfJjN\":[\"Consultez et gérez vos clés API.\"],\"Fpci8b\":[\"Êtes-vous sûr de vouloir supprimer cette checklist ?\"],\"G1Gw0v\":[\"Nouveau modèle\"],\"GAD3Dx\":[\"Domaine personnalisé\"],\"GDvlUT\":[\"Rôle\"],\"GRAGsB\":[\"Votre espace de travail\"],\"GYv20o\":[\"Impossible de mettre à jour les permissions\"],\"GdWB+V\":[\"Webhook créé avec succès\"],\"GnRmu4\":[\"Nom de la checklist\"],\"GnSSGm\":[\"La description de votre espace de travail a été mise à jour.\"],\"GoDLB9\":[\"Votre compte a été supprimé.\"],\"GpB8YV\":[\"Entreprise\"],\"GwNIE2\":[\"Feuille de route étendue\"],\"Gxxi5J\":[\"Ajouter une checklist\"],\"H5G+qG\":[\"Quelle est la différence entre Kan et Trello ?\"],\"HBI6nY\":[\"Besoin d'aide ?\"],\"HO+uOC\":[\"Triage\"],\"HQVm6e\":[\"Cette URL est déjà prise\"],\"HVIzNO\":[\"Peut voir les listes\"],\"HYV6Lq\":[\"Échec de l'acceptation de l'invitation. Veuillez réessayer plus tard ou contacter le support client.\"],\"HcT8J4\":[\"Votre compte GitHub a été connecté.\"],\"HeFWjW\":[\"Prochaines étapes\"],\"Hf1cEZ\":[\"L'URL du webhook est requise\"],\"Hg1qE9\":[\"L'identifiant de votre espace de travail a été mis à jour.\"],\"I+AROe\":[\"Peut modifier des cartes\"],\"I0gAKM\":[\"Impossible de mettre à jour la liste\"],\"IDvohQ\":[\"a marqué un élément de la checklist comme incomplet\"],\"IFgUX6\":[\"Peut supprimer des membres\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Passer à Pro\"],\"Iqh0Uv\":[\"Planifié\"],\"IqjpYe\":[\"Visibilité de l'e-mail\"],\"IrZaAn\":[\"Mot de passe modifié\"],\"It4/FS\":[\"Désarchiver le tableau\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Continuer avec \"],\"J4+OTA\":[\"Déplacer vers la liste\"],\"J5nbej\":[\"Critique\"],\"J5pbP6\":[\"Peut modifier les rôles et permissions des membres\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JCdzgZ\":[\"Demande de fonctionnalité\"],\"JUce1S\":[\"Assignés\"],\"JbXXUW\":[\"Gardez à l'esprit que cette action est irréversible.\"],\"JcCDm9\":[\"Modèle créé\"],\"Jgaz7E\":[\"Permissions réinitialisées\"],\"JjEJSy\":[\"Configurer votre espace de travail\"],\"JnWJXY\":[\"lien magique\"],\"JxhWxU\":[\"dans\"],\"JyXBgS\":[\"docs\"],\"K3iLeO\":[\"Découvrez ce que nos utilisateurs disent de Kan\"],\"K7k9u3\":[\"Impossible de déplacer la carte\"],\"KAsRdK\":[\"Aller aux membres\"],\"KEim/+\":[\"a retiré une pièce jointe\"],\"KFJgmZ\":[\"Le nom d'affichage doit contenir au moins 3 caractères\"],\"KLJ4eD\":[\"Lien d'invitation copié\"],\"KM6m8p\":[\"Équipe\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Contrôles d'administration avancés\"],\"KiVc+q\":[\"Temps plein\"],\"KuSt9W\":[\"Comment auto-héberger ?\"],\"L5WQLg\":[\"Le jeton est requis\"],\"L5ZPjz\":[\"a mis à jour un élément de la checklist\"],\"LTGE7Y\":[\"Espace de travail créé avec succès. Vous pourrez effectuer une mise à niveau ultérieurement dans les paramètres.\"],\"LeM5RY\":[\"Impossible d'effacer les remplacements\"],\"LoUCpj\":[\"Erreur lors de la mise à jour du nom de l'espace de travail\"],\"LqWW5F\":[\"Votre nom d'affichage a été mis à jour.\"],\"LrcnbT\":[\"Hébergez Kan sur votre propre infrastructure. Idéal pour les organisations qui ont besoin d'un contrôle total sur leurs données.\"],\"Lt+ZP3\":[\"a terminé un élément de checklist\"],\"M9p3Vw\":[\"Journal d'activité illimité\"],\"MCIXdZ\":[\"Connectez votre compte GitHub pour importer des projets.\"],\"MFKlMB\":[\"Inviter\"],\"MHrjPM\":[\"Titre\"],\"MI5OBT\":[\"L'URL ne peut contenir que des lettres, des chiffres et des traits d'union\"],\"MK16u2\":[\"Aucune date\"],\"MKAScN\":[\"Peut voir les tableaux\"],\"MN6YzG\":[\"Identifiant de l'espace de travail mis à jour\"],\"MWrbWq\":[\"Paramètres | Compte\"],\"MdN5zD\":[\"Vous devez être administrateur pour gérer les permissions de l'espace de travail.\"],\"MdwUGG\":[\"Gagnez du temps avec des modèles de tableaux réutilisables.\"],\"MeO/vH\":[\"Cela entraînera la suppression définitive de toutes les données associées à cet espace de travail.\"],\"MlyjJu\":[\"Le nom d'affichage ne peut pas dépasser 280 caractères\"],\"MxQXhL\":[\"Impossible de créer l'espace de travail\"],\"N/bcWA\":[\"Connexion | kan.bn\"],\"N3380t\":[\"Peut créer des tableaux\"],\"N7aud6\":[\"Recherche intelligente\"],\"NH54UR\":[\"a renommé l'élément de checklist en <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"Le tableau a été archivé.\"],\"NgaR6B\":[\"Saisissez votre mot de passe\"],\"NnH3pK\":[\"Tester\"],\"NoNwIX\":[\"Inactif\"],\"NypLoL\":[\"a renommé une checklist\"],\"O0li0W\":[\"Saisissez votre mot de passe actuel et choisissez un nouveau mot de passe sécurisé.\"],\"O1wAlQ\":[\"Invité\"],\"O3oNi5\":[\"E-mail\"],\"O83K21\":[\"a ajouté un élément de checklist\"],\"O9jVbx\":[\"Priorité basse\"],\"OAYToL\":[\"Cela supprimera toutes les permissions personnalisées des membres dans cet espace de travail. Les membres hériteront uniquement des permissions de leurs rôles.\"],\"OIA0ad\":[\"Nom de l'espace de travail mis à jour\"],\"OTxjpR\":[\"votre-espace-de-travail\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Déconnecter GitHub\"],\"Oi+J+N\":[\"Choisissez un forfait pour commencer. Tous les forfaits payants incluent un essai gratuit de 14 jours.\"],\"OkTY4+\":[\"Le secret ne peut pas dépasser 512 caractères\"],\"Oo4E6p\":[\"Impossible de dupliquer la carte\"],\"OpNhRn\":[\"Aucune carte bancaire requise\"],\"OtjenF\":[\"Veuillez saisir une adresse e-mail valide\"],\"OvoEq7\":[\"Membre\"],\"OwneeH\":[\"Nom d'utilisateur d'espace de travail personnalisé\"],\"Ozt2vv\":[\"Votre mot de passe a été modifié.\"],\"P6dJdq\":[\"Remplacements effacés\"],\"P8Cunr\":[\"Nom d'utilisateur par défaut\"],\"PCIlOO\":[\"Ajouter un membre\"],\"PELbXB\":[\"Votre compte GitHub est connecté.\"],\"PRjvDT\":[\"Êtes-vous sûr de vouloir supprimer ce commentaire ?\"],\"PRofO0\":[\"Modifier la vidéo YouTube\"],\"PTzsxH\":[\"Visibilité du tableau mise à jour\"],\"PVT7q7\":[\"GitHub connecté\"],\"PZCqeW\":[\"Veuillez réessayer plus tard.\"],\"Pat4r8\":[\"Roadmap basique\"],\"PpZkda\":[\"Fonctionnalités\"],\"PyYD/v\":[\"a assigné <0>\",[\"0\"],\" à la carte\"],\"Q60WUZ\":[\"Impossible de démarrer le paiement\"],\"Q9pQaX\":[\"Aucun rôle trouvé pour cet espace de travail pour le moment.\"],\"QD8opX\":[\"Tableau\"],\"QHhZeE\":[\"Modèle créé avec succès\"],\"QNtP5M\":[\"Utiliser le modèle\"],\"Qh7QmR\":[\"Retiré des favoris\"],\"QnzD50\":[\"Sur site\"],\"QtACvI\":[\"Créer une étiquette\"],\"Qtzfdk\":[\"Forfait Pro ∞\"],\"R+w/Va\":[\"Facturation\"],\"R1c3Mq\":[\"Le nom du tableau est requis\"],\"R275Pz\":[\"Vous disposez de places illimitées avec votre forfait pro. Il n'y a aucun frais supplémentaire pour les nouveaux membres !\"],\"R3FsF4\":[\"Échec du téléchargement\"],\"R41XLH\":[\"Échec de la mise à jour du webhook\"],\"R6pB8R\":[\"Mettre une étoile sur Github\"],\"RHZu7R\":[\"Apprécié par des équipes du monde entier\"],\"RJA+sg\":[\"Nouveau ticket\"],\"RRn9jf\":[\"Cliquez sur le lien que nous avons envoyé à \",[\"magicLinkRecipient\"],\" pour vous connecter.\"],\"RSGOS1\":[\"Peut supprimer des listes\"],\"RfgJqw\":[\"a mis à jour la date d'échéance\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Envoyer un commentaire\"],\"RtlIYB\":[\"Vous êtes sur le point de modifier votre mot de passe.\"],\"RzxgOE\":[\"Rôles et permissions\"],\"SFnH1j\":[\"Pourquoi créer un Trello open source ?\"],\"SMaFdc\":[\"Se désabonner\"],\"SNfg0e\":[\"Peut voir l'espace de travail\"],\"SPLN9O\":[\"Vos données vous appartiennent\"],\"SRvxId\":[\"Secret HMAC pour la vérification de signature\"],\"STSYcd\":[\"Peut supprimer des commentaires\"],\"SUXBxp\":[\"Ingénierie\"],\"SUvm1Y\":[\"Idéal pour les particuliers qui débutent et qui ont simplement besoin de l'essentiel.\"],\"SWEskc\":[\"L'URL doit contenir au moins 3 caractères\"],\"Sb2gYF\":[\"Nouvelle liste\"],\"ScJ9fj\":[\"Politique de confidentialité\"],\"Se/UIp\":[\"À faire\"],\"SiPp29\":[\"Créer un webhook\"],\"SkCNhl\":[\"Rechercher des tableaux et des cartes...\"],\"SlfejT\":[\"Erreur\"],\"T/pF0Z\":[\"Retirer des favoris\"],\"T21jY/\":[\"a ajouté une étiquette à la carte\"],\"T7DJ2k\":[\"Impossible d'ajouter le commentaire\"],\"T7LJic\":[\"a déplacé la carte vers une autre liste\"],\"T7Mywq\":[\"Impossible de mettre à jour le tableau\"],\"TCOMOO\":[\"Modifier les permissions\"],\"TCt/8K\":[\"Accès API limité\"],\"TFv5tM\":[\"Impossible de mettre à jour le rôle\"],\"TH3Irz\":[\"Permission\"],\"TKFUnX\":[\"Compte supprimé\"],\"TX0bT7\":[\"Aucun webhook configuré. Ajoutez un webhook pour recevoir des notifications.\"],\"TXO5TM\":[\"Aucun raccourci clavier enregistré.\"],\"TYli1B\":[\"Peut modifier des commentaires\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Revue de code\"],\"TdfEV7\":[\"Archivé\"],\"TjREUS\":[\"Nouvelle clé API\"],\"TmvrjU\":[\"L'URL du tableau doit contenir au moins 3 caractères\"],\"TvY/XA\":[\"Documentation\"],\"Tz0i8g\":[\"Paramètres\"],\"TztLaN\":[\"Impossible de créer la liste\"],\"U2+rn0\":[\"Le nom du webhook est requis\"],\"U3pytU\":[\"Administrateur\"],\"U5dMR6\":[\"Voir l'espace de travail\"],\"UCLeG0\":[\"Conditions d'utilisation\"],\"UGCIzB\":[\"Ajouter / modifier l'étiquette\"],\"UQbwrz\":[\"Tous les systèmes sont opérationnels\"],\"URAE3q\":[\"En pause\"],\"USVCGU\":[\"Erreur lors de la désactivation du lien d'invitation\"],\"UbRKMZ\":[\"En attente\"],\"UbYdrA\":[\"Fréquence de paiement\"],\"UeDFpo\":[\"Comment le projet est-il financé ?\"],\"UirJfL\":[\"SLA personnalisé\"],\"UlhdTP\":[\"Espace de travail supprimé\"],\"Un80BR\":[\"Amis OSS\"],\"UoSI+i\":[\"Idéal pour les petites équipes en croissance qui ont besoin de collaboration\"],\"UveK6V\":[\"Aller à l'application\"],\"Uworke\":[\"Temps partiel\"],\"UxKoFf\":[\"Navigation\"],\"V1KOLq\":[\"Notifications par e-mail pour les mentions\"],\"V3MPSQ\":[\"a mis à jour le titre\"],\"V8YWP3\":[\"Saisissez un titre personnalisé\"],\"VHS0aJ\":[\"Effacer toutes les permissions personnalisées ?\"],\"VKoDQD\":[\"Créer un nouveau \",[\"0\"]],\"VUZDlr\":[\"Témoignages\"],\"VXk54Y\":[\"s'est auto-assigné la carte\"],\"VbyRUy\":[\"Commentaires\"],\"VhMDMg\":[\"Changer le mot de passe\"],\"Vt50G1\":[\"Kanban basique\"],\"W/Elkg\":[\"Priorité moyenne\"],\"W/nQk1\":[\"Forfait gratuit\"],\"W1ewR0\":[\"Impossible de copier le lien\"],\"W5r8Qh\":[\"a supprimé un élément de checklist\"],\"W8oT+L\":[\"Échec de la récupération des informations vidéo\"],\"WHHLh9\":[\"Impossible de supprimer la pièce jointe\"],\"WI4eGo\":[\"Comment obtenir une URL personnalisée ?\"],\"WQPDcG\":[\"Impossible de mettre à jour l'élément de la checklist\"],\"WRkpB1\":[\"Inscription désactivée\"],\"WRsbHO\":[\"Votre compte Trello est connecté.\"],\"WYDptz\":[\"Abonnement requis\"],\"WYwN1G\":[\"Nouvel import\"],\"WbTDwg\":[\"En cours\"],\"Weq9zb\":[\"Général\"],\"WmPhYW\":[\"Une erreur s'est produite lors de la déconnexion de votre compte Trello.\"],\"WnEwDO\":[\"Vous avez déjà un compte ? <0><1>Se connecter\"],\"Ws+3X+\":[\"Places illimitées et fonctionnalités avancées pour les équipes en croissance.\"],\"Wy6pcF\":[\"Impossible de mettre à jour la visibilité du tableau\"],\"X0N0PA\":[\" (modifié)\"],\"XDRXbZ\":[\"La description de l'espace de travail doit contenir au moins 3 caractères\"],\"XEoGkQ\":[\"Aller à l'accueil\"],\"XILg0L\":[\"Adresse e-mail invalide\"],\"XJOV1Y\":[\"Activité\"],\"XNxYxq\":[\"Modèles de tableau\"],\"XTKtey\":[\"Créer une liste\"],\"XXbgHS\":[\"Embauché\"],\"XYLcNv\":[\"Support\"],\"XicmhT\":[\"Date d'échéance\"],\"Xid3K6\":[\"L'URL du tableau ne peut contenir que des lettres, des chiffres et des traits d'union\"],\"Xjj/kS\":[\"Kanban réinventé\"],\"XpcjLO\":[\"Impossible de mettre à jour l'URL du tableau\"],\"Y8yzGg\":[\"Commencez gratuitement. Évoluez au rythme de votre équipe. Aucun frais caché, aucun contrat.\"],\"YBBifR\":[\"Déconnecter Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Impossible de réorganiser l'élément de la checklist\"],\"YRk79X\":[\"Sécurité avancée, conformité et assistance dédiée pour les grandes organisations.\"],\"YVT40D\":[\"a retiré l'étiquette <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Erreur lors de la mise à niveau de l'abonnement\"],\"YcyP2z\":[\"Impossible de créer le modèle\"],\"Yf9FAx\":[\"Ils ne pourront pas accéder à cet espace de travail.\"],\"YhvWXb\":[\"Analytiques du tableau\"],\"YirHq7\":[\"Commentaires\"],\"YkfDoz\":[\"Annuel\"],\"YoyKbT\":[\"Cette clé API ne sera affichée qu'une seule fois. Veuillez la sauvegarder dans un endroit sécurisé.\"],\"Ypy5pZ\":[\"Êtes-vous sûr de vouloir supprimer le webhook \\\"\",[\"webhookName\"],\"\\\" ? Cette action est irréversible.\"],\"YtUfwW\":[\"Échec de la connexion avec \",[\"0\"],\". Veuillez réessayer.\"],\"Yx0Ud8\":[\"Demandé\"],\"Z3FXyt\":[\"Chargement...\"],\"Z3krJD\":[\"Autoriser les membres de l'espace de travail à voir les adresses e-mail des autres\"],\"Z6r9z1\":[\"Impossible de supprimer la carte\"],\"ZAs2NN\":[\"Toutes les fonctionnalités Pro +\"],\"ZDGm40\":[\"Supprimer le compte\"],\"ZDIydz\":[\"Commencer\"],\"ZDPJBc\":[\"Les noms d'utilisateur personnalisés nécessitent une mise à niveau vers un forfait Pro\"],\"ZDo4HN\":[\"Brainstorming\"],\"ZH7TVS\":[\"Titre de la carte\"],\"ZL1A+p\":[\"Échec du téléchargement de la pièce jointe. Veuillez réessayer.\"],\"ZT4Khw\":[\"Êtes-vous sûr de vouloir supprimer cette carte ?\"],\"ZU5IYI\":[\"Tableaux illimités, listes illimitées, cartes illimitées. Aucune carte bancaire requise.\"],\"ZXSPJt\":[\"Une erreur inattendue s'est produite. Veuillez réessayer ultérieurement.\"],\"ZqDqbi\":[\"Organisez et trouvez vos cartes rapidement grâce à des outils de filtrage puissants.\"],\"Zz1qkk\":[\"Cartes illimitées\"],\"a3LDKx\":[\"Sécurité\"],\"aHCEmh\":[\"Tarifs\"],\"aHRWVI\":[\"a retiré la date d'échéance\"],\"aJ4pMe\":[\"FAQ\"],\"aKJHG+\":[\"Archiver le tableau\"],\"aW3TOw\":[\"Notifications par e-mail\"],\"aWDhU5\":[\"Kanban est meilleur en équipe. Parfait pour les petites équipes en croissance qui souhaitent collaborer.\"],\"aWlSc/\":[\"Créer une nouvelle liste\"],\"abUZlY\":[\"Ajouter des détails...\"],\"aelko+\":[\"Vous pouvez obtenir une URL d'espace de travail personnalisée, comme <0>kan.bn/kan, en accédant aux <1>paramètres de votre espace de travail et en souscrivant un abonnement pro. Tous les abonnements contribuent au financement du développement du projet !\"],\"agPptk\":[\"Moyenne\"],\"aiHZVP\":[\"Voir la documentation\"],\"b/LfJo\":[\"e-mail\"],\"b3Thhd\":[\"Échec du téléchargement\"],\"b5FKyH\":[\"a ajouté l'étiquette <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Créer \",[\"0\"]],\"bD8I7O\":[\"Terminé\"],\"bDI6VI\":[[\"0\"],\" a été retiré de vos favoris.\"],\"bFREhu\":[\"Fin de la liste\"],\"bJZm1W\":[\"Candidats\"],\"bJtM0P\":[\"Cette URL d'espace de travail est réservée\"],\"bKzM8L\":[\"Gestionnaire de compte dédié\"],\"bZSICm\":[\"Impossible d'ajouter l'élément de liste de contrôle\"],\"bcIybO\":[\"Le nom de l'espace de travail est requis\"],\"bdztP2\":[\"Recherche\"],\"be30i9\":[\"0 $\"],\"bfZE+Y\":[\"Le rôle du membre a été mis à jour.\"],\"bff61F\":[\"Forfait équipe\"],\"bfgr/e\":[\"Question\"],\"bmXKoX\":[\"a ajouté \",[\"0\"],\" étiquettes : <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Erreur lors de la suppression du compte\"],\"c/IAuR\":[\"Important\"],\"c3b0B0\":[\"Commencer\"],\"c4nMcR\":[\"Votre avatar\"],\"c9AJhn\":[\"Rejoindre l'espace de travail\"],\"cAgBMh\":[\"Contrôle et propriété complets :\"],\"cFQEU/\":[\"Ouvrir les raccourcis clavier\"],\"cOh+MI\":[\"Filtrage\"],\"cWXW+7\":[\"Ajouter un webhook\"],\"cWcxrL\":[\"Nouvelle checklist\"],\"cWtfn1\":[\"Passer à Pro (29 $/mois)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Description de l'espace de travail\"],\"cji2nM\":[\"Erreur lors de la création du lien d'invitation\"],\"cnGeoo\":[\"Supprimer\"],\"cp1rsD\":[\"Désactiver le lien d'invitation\"],\"csFbe+\":[\"Aller aux modèles\"],\"curoK5\":[\"Nouveau workspace\"],\"d+F6q9\":[\"Créé\"],\"d33Usy\":[\"Créer une checklist\"],\"dEgA5A\":[\"Annuler\"],\"dUh9QW\":[\"Planification\"],\"ddrz1m\":[\"En retard\"],\"delOXn\":[\"Impossible de mettre à jour les étiquettes\"],\"dgr4Kq\":[\"Modifier l'étiquette\"],\"dmKdk0\":[\"Une fois votre espace de travail supprimé, il n'y a pas de retour en arrière possible. Cette action ne peut pas être annulée.\"],\"dsLT3m\":[\"Créer une carte\"],\"dtQIWT\":[\"Collaboration\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Cette URL d'espace de travail est déjà utilisée\"],\"e1v+J3\":[\"Secret (facultatif)\"],\"e4hPSt\":[\"Réinitialiser aux valeurs par défaut du rôle\"],\"eEQyz+\":[\"Suivez toutes les modifications de carte avec un historique d'activité détaillé.\"],\"ePK91l\":[\"Modifier\"],\"eZCGbT\":[\"Oui, nous proposons un forfait gratuit à vie pour un usage individuel. Aucune restriction, aucun paywall, aucune limite.\"],\"edWbV6\":[\"Lien copié\"],\"ekCRTP\":[\"Rejeté\"],\"en3oy5\":[\"Fonctionnalité\"],\"euc6Ns\":[\"Dupliquer\"],\"eus61c\":[\"Envoyer un test\"],\"evg7+A\":[\"Vos tableaux ont été importés.\"],\"evj0lK\":[\"Proposez-vous une offre gratuite ?\"],\"f8fH8W\":[\"Design\"],\"f8lDFq\":[\"a créé la carte\"],\"fDQ7hA\":[\"Copier les étiquettes\"],\"fEY2vP\":[\"Carte introuvable\"],\"fQCrjt\":[\"La visibilité de votre tableau a été définie sur \",[\"0\"],\".\"],\"fR9laE\":[\"Saisissez votre mot de passe actuel\"],\"fSf2ee\":[\"Consultez notre feuille de route.\"],\"fW5sSv\":[\"Modifier le webhook\"],\"fYVH36\":[\"Impossible de mettre à jour le commentaire\"],\"fcWrnU\":[\"Se déconnecter\"],\"fuwKpE\":[\"Veuillez réessayer.\"],\"fvLNDy\":[\"Aucune liste n'a encore été créée\"],\"fzGyWs\":[\"Modifier la taille de police de l'application.\"],\"fziA2d\":[\"Commentaires illimités\"],\"g2xBxu\":[\"Importer vos tableaux Trello dans Kan est facile. Vous pouvez suivre notre guide étape par étape <0>ici.\"],\"g9NChz\":[\"Gestionnaire de compte\"],\"gGx5tM\":[\"Modification\"],\"gKmoow\":[\"Cette URL est réservée\"],\"gL/7jw\":[\"Ajouter une description... (tapez « / » pour ouvrir les commandes ou « @ » pour mentionner)\"],\"gQ/02p\":[\"Erreur de déconnexion de GitHub\"],\"gUX7b+\":[\"L'alternative open source <0/> à Trello\"],\"gZxH/p\":[\"a modifié la date d'échéance en <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"Le nom de l'espace de travail ne peut pas dépasser 64 caractères\"],\"gkxGkF\":[\"Essai gratuit de 14 jours · Changez de forfait ou annulez à tout moment\"],\"gkzAEM\":[\"Continuer avec \",[\"0\"]],\"goklcJ\":[\"Entretien\"],\"gpfJ3v\":[\"Gratuit, pour toujours\"],\"gukxZ5\":[\"Intégration\"],\"gv5kbo\":[\"L'URL du tableau ne peut pas dépasser 60 caractères\"],\"h16FyT\":[\"Listes\"],\"h2FKMV\":[\"Vous n'avez pas la permission\"],\"h2ztFt\":[\"Toutes les fonctionnalités gratuites +\"],\"h4VV67\":[\"a ajouté une checklist\"],\"h7MgpO\":[\"Raccourcis clavier\"],\"h8DugX\":[\"Étiquettes\"],\"hAMddS\":[\"s'est retiré de la carte\"],\"hB02vO\":[\"Gérer les membres\"],\"hXMFoN\":[\"Aucune liste\"],\"hYzsXr\":[\"Paramètres | Intégrations\"],\"hty0d5\":[\"Lundi\"],\"i0ZMQl\":[\"Tableau archivé\"],\"i30J2U\":[\"Aucun projet trouvé\"],\"i5rE2/\":[\"L'URL ne peut pas dépasser 64 caractères\"],\"iH8pgl\":[\"Retour\"],\"iHcdea\":[\"Échéance la semaine prochaine\"],\"iLbjv+\":[\"Peut modifier l'espace de travail\"],\"iQmbPb\":[\"Licence\"],\"iSLIjg\":[\"Connecter\"],\"iTylMl\":[\"Modèles\"],\"iVIGZb\":[\"Pièce jointe téléchargée\"],\"isRobC\":[\"Nouveau\"],\"itgYbC\":[\"Webhook de test envoyé avec succès !\"],\"iwr7AP\":[\"Idées\"],\"iy1wb+\":[\"Paramètres | API\"],\"j0o6ml\":[\"La description de votre espace de travail\"],\"j1+HPc\":[\"Une erreur s'est produite lors de la connexion de votre compte GitHub.\"],\"j2+d/o\":[\"Référence API\"],\"j9IZZ0\":[\"URL d'espace de travail personnalisée\"],\"jDRt4n\":[\"Voulez-vous vous désabonner ?\"],\"jEw0Mr\":[\"Veuillez saisir une URL valide\"],\"jIuWsV\":[\"Le nom du webhook ne peut pas dépasser 255 caractères\"],\"jL82rC\":[\"Effacer les permissions personnalisées\"],\"jNuzV/\":[\"Peut supprimer des cartes\"],\"jQ6I8X\":[\"Rôle mis à jour\"],\"jZBHkN\":[\"Le nom de l'espace de travail doit contenir au moins 3 caractères\"],\"jfC/xh\":[\"Contact\"],\"jl3aEJ\":[\"a marqué l'élément de checklist <0>\",[\"0\"],\" comme incomplet\"],\"jlB2RY\":[\"Le mot de passe actuel que vous avez saisi est incorrect.\"],\"jwI32v\":[\"Tableau introuvable\"],\"k7rCa/\":[\"Grande\"],\"kECVpo\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ?\"],\"kQwvU8\":[\"a retiré une étiquette de la carte\"],\"kSxwQL\":[\"Vous pouvez inviter des membres de l'équipe en cliquant sur le bouton « Inviter » en haut à droite de la <0>page des membres et en saisissant leur adresse e-mail. Ils recevront un e-mail avec un lien pour rejoindre l'espace de travail.\"],\"kYu0eF\":[\"Supprimer l'espace de travail\"],\"kfOGMr\":[\"Victoire rapide\"],\"klpSmb\":[\"Modifier l'URL de l'espace de travail\"],\"kp6L3T\":[\"Ce nom d'utilisateur d'espace de travail est déjà pris\"],\"kryGs+\":[\"Carte\"],\"kuoc68\":[\"10 $/mois\"],\"kxEs5t\":[\"Imports Trello\"],\"l2PIAy\":[\"Auto-héberger avec Github\"],\"l31EoQ\":[\"Trouvez des réponses aux questions courantes sur Kan. Vous ne trouvez pas ce que vous cherchez ? N'hésitez pas à <0>nous contacter.\"],\"l3s5ri\":[\"Importer\"],\"l4asa1\":[\"Ce tableau est privé ou n'existe pas\"],\"lGjicL\":[\", ou consultez notre\"],\"lKAvEd\":[\"Erreur lors de la déconnexion de Trello\"],\"lXvXNI\":[\"Échec de la copie du lien d'invitation\"],\"lYT7pQ\":[\"Supprimer la liste\"],\"lkz85l\":[\"La principale différence entre Kan et Trello est que Kan est open source, permettant à quiconque de consulter, modifier et contribuer à notre code. Notre offre cloud n'impose également aucune restriction sur les fonctionnalités pour un usage individuel, alors que Trello verrouille des fonctionnalités de base telles que le nombre de tableaux que vous pouvez créer derrière un paywall.\"],\"lo8xBK\":[\"Êtes-vous sûr de vouloir supprimer \",[\"entityLabel\"],\" ?\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"lsgnzd\":[\"Erreur lors de la mise à niveau vers Pro\"],\"lyqwgn\":[\"Ajouter une étiquette\"],\"m2nk0i\":[\"Tarification simple\"],\"mErq7F\":[\"S'inscrire\"],\"mHhffx\":[\"Impossible de créer la liste de contrôle\"],\"mTGd3+\":[\"a supprimé une checklist\"],\"mTwGOf\":[\"Ce lien d'invitation est invalide ou a expiré.\"],\"mU+M00\":[[\"0\"],\" a été ajouté à vos favoris.\"],\"mVZH9V\":[\"Lorsque Trello a été lancé en 2011, il a impressionné tout le monde avec sa simplicité soigneusement conçue, mais au fil des années, il a perdu sa magie et s'est transformé en quelque chose de plus proche de \\\"Jira Lite\\\". Ce projet est notre tentative de retrouver la magie originale de la simplicité de Trello, en open source.\"],\"mZGPxt\":[\"Lien d'invitation copié dans le presse-papiers\"],\"mchgzf\":[\"Vous avez été inscrit avec succès.\"],\"mgXgHu\":[\"Aller aux tableaux\"],\"mrhyIB\":[\"Parfait pour les petites équipes en croissance qui souhaitent collaborer.\"],\"mwBdZ2\":[\"Cela entraînera la suppression définitive de toutes les données associées à votre compte.\"],\"mx8+1u\":[\"Membres illimités\"],\"n+xLOH\":[\"Support client\"],\"n1GRql\":[\"Nouvelle étiquette\"],\"n1ekoW\":[\"Se connecter\"],\"n6EWYz\":[\"Utilisé pour signer les charges utiles du webhook à des fins de vérification. Laissez vide pour conserver le secret existant.\"],\"n9V+ps\":[\"Saisissez votre nom\"],\"nKBUeF\":[\"La carte a été dupliquée.\"],\"nOhz3x\":[\"Déconnexion\"],\"nYNMZZ\":[\"Position dans la liste (0 = premier, laisser vide pour la fin)\"],\"nabda1\":[\"Supprimer la carte\"],\"nbfdhU\":[\"Intégrations\"],\"ngBZOd\":[\"Ajouter un commentaire... (tapez « / » pour ouvrir les commandes ou « @ » pour mentionner)\"],\"nhMhRr\":[\"Merci pour votre retour !\"],\"njJFtc\":[\"Supprimer le commentaire\"],\"nk7caK\":[\"Connecter Trello\"],\"nol/Fb\":[\"Comment inviter des membres de l'équipe ?\"],\"notwF1\":[\"Le nom du modèle ne peut pas dépasser 100 caractères\"],\"nq7q3Z\":[\"Le nom de la clé API ne peut pas dépasser 30 caractères\"],\"nqdIhs\":[\"Modèles de tableaux personnalisés\"],\"nryrgW\":[\"Toutes les permissions personnalisées des membres ont été réinitialisées aux valeurs par défaut de leur rôle.\"],\"o+JCfN\":[\"Utilisé par des équipes dynamiques<0/>partout dans le monde\"],\"o4e/70\":[\"Sélectionnez au moins un événement\"],\"o4sQAg\":[\"Échec de la création du webhook\"],\"o7J4JM\":[\"Filtrer\"],\"o8adVG\":[\"Téléchargements de fichiers de 10 Mo\"],\"o9WLwO\":[\"Impossible de mettre à jour la carte\"],\"oVBq1w\":[\"par utilisateur/mois\"],\"oW13KZ\":[\"Commencez gratuitement dès aujourd'hui\"],\"odFCYX\":[\"Invitation invalide\"],\"okpxfB\":[\"Créer une nouvelle clé\"],\"oyRjD/\":[\"Forfait Pro\"],\"p/hk9N\":[\"Vous avez été connecté avec succès.\"],\"pBsoKL\":[\"Ajouter aux favoris\"],\"pFGfsR\":[\"Découvrez quelques-uns de nos projets open source préférés.\"],\"pFKC6A\":[\"Nom de la clé API\"],\"pL78ec\":[\"Ajouté aux favoris\"],\"pVctI7\":[\"Option de déploiement sur site\"],\"pXVFJy\":[\"Peut supprimer des tableaux\"],\"pa9o5D\":[\"Recadrer votre avatar\"],\"pfa8F0\":[\"Nom d'affichage\"],\"pmUArF\":[\"Espace de travail\"],\"pnrmSP\":[\"Nouvelle carte\"],\"ppaRWv\":[\"Auto-hébergement\"],\"pvnfJD\":[\"Sombre\"],\"q+lt9D\":[\"Erreur lors de la suppression de l'étiquette\"],\"q3il6U\":[\"Taille de police\"],\"qPP4lD\":[\"Inviter des membres nécessite un forfait Team. Vous serez redirigé pour mettre à niveau votre espace de travail.\"],\"qQXocp\":[\"Peut gérer les paramètres de l'espace de travail\"],\"qaS+1/\":[\"Idéal pour les équipes qui veulent évoluer sans limites\"],\"qfUS/w\":[\"Amis open source\"],\"qkjvgj\":[\"Votre espace de travail a été supprimé.\"],\"qlAIQ1\":[\"À distance\"],\"qtE5nt\":[\"Ajouter un élément...\"],\"qzdST2\":[\"Visibilité du tableau\"],\"r6BgwX\":[\"Le mot de passe est requis pour se connecter.\"],\"rD6UIt\":[\"Commencer sur le cloud\"],\"rF8SEQ\":[\"Modifier le commentaire\"],\"rQRXo8\":[\"Saisissez un nouveau secret pour mettre à jour\"],\"rQXTmd\":[\"URL de la carte copiée dans le presse-papiers\"],\"rRM7r0\":[\"Importez vos tableaux Trello et démarrez rapidement.\"],\"rYUZIe\":[\"Sélectionner la source\"],\"raHesj\":[\"Vous avez été désabonné !\"],\"rarRW/\":[\"Erreur lors de l'invitation du membre\"],\"ri1hHe\":[\"Échéance le mois prochain\"],\"rmN315\":[\"Amusant\"],\"rs7L54\":[\"a ajouté un membre à la carte\"],\"rtbVvN\":[\"Peut modifier des listes\"],\"s+MGs7\":[\"Ressources\"],\"s6iE/c\":[\"L'inscription est actuellement désactivée. Veuillez réessayer plus tard.\"],\"sBhOFG\":[\"Gestion de tâches visuelle et simple qui fonctionne tout simplement. Glissez-déposez des cartes, collaborez avec votre équipe et accomplissez davantage.\"],\"sDLCvT\":[\"Connectez vos outils préférés pour optimiser votre flux de travail.\"],\"sDuhfK\":[\"Offre de lancement : places illimitées pour seulement 29 $/mois avec Pro\"],\"sU2uWc\":[\"Carte dupliquée\"],\"sUZo7y\":[\"S'inscrire | kan.bn\"],\"sVBn4K\":[\"Erreur lors de la mise à jour du nom d'affichage\"],\"sY2lzr\":[\"Aucune URL de téléchargement disponible pour cette pièce jointe.\"],\"sbNNyi\":[\"Nouveau webhook\"],\"snMaH4\":[\"Supprimer le webhook\"],\"t+R8+P\":[\"Exécution\"],\"t/YqKh\":[\"Supprimer\"],\"t0dTPm\":[\"Configurez des webhooks pour recevoir des notifications lorsque des cartes sont créées, mises à jour, déplacées ou supprimées.\"],\"t2nDzl\":[\"Consultez et gérez votre facturation et votre abonnement.\"],\"t6FvJH\":[\"Peut ajouter des commentaires\"],\"tGwwnq\":[\"a mis à jour la description\"],\"tHcbLF\":[\"Peut modifier des tableaux\"],\"tIdipJ\":[\"Modifier l'URL du tableau\"],\"tMYIu7\":[\"Journaux d'activité\"],\"tOZp9v\":[\"Rôles utilisateur et permissions configurables\"],\"tTbref\":[\"Le mot de passe est requis pour s'inscrire.\"],\"tYN21H\":[\"L'utilisateur est déjà membre de cet espace de travail\"],\"tbNcu4\":[\"Tableau désarchivé\"],\"tca56/\":[\"Votre fichier a été téléchargé avec succès.\"],\"tfDRzk\":[\"Enregistrer\"],\"tlhgDC\":[\"Aucun tableau archivé\"],\"tmlJN1\":[\"Veuillez saisir une URL YouTube valide\"],\"tmpW+w\":[\"Supprimer le tableau\"],\"tst44n\":[\"Événements\"],\"tyHiOa\":[\"Veuillez réessayer plus tard ou contacter le support client.\"],\"u2+JIh\":[\"Les URL personnalisées nécessitent une mise à niveau vers un forfait Pro\"],\"u8JHrO\":[\"Effacer les filtres\"],\"uAQUqI\":[\"Statut\"],\"uEGGDs\":[\"Mon webhook\"],\"uOqaMC\":[\"Vous avez été invité à rejoindre un espace de travail.\"],\"uP4V6I\":[\"Gratuit pour tous\"],\"uXGLuq\":[\"Créer une clé API\"],\"uZg2+w\":[\"Boostez votre espace de travail pour seulement 29 $/mois. Voici ce que vous obtiendrez :\"],\"uck1tz\":[\"a retiré un membre de la carte\"],\"usVytm\":[\"Une fois votre compte supprimé, il n'y a pas de retour en arrière possible. Cette action ne peut pas être annulée.\"],\"uvH2xS\":[\"Copier les membres\"],\"v+Wp++\":[\"Open source\"],\"v1kQyJ\":[\"Webhooks\"],\"v3YoMA\":[\"Senior\"],\"vAR/I8\":[\"Exécuter sur votre propre infrastructure\"],\"vAj6xG\":[\"Vous pouvez auto-héberger en suivant les instructions de notre <0>dépôt.\"],\"vSJd18\":[\"Vidéo\"],\"vUr5JT\":[\"Vous n'avez pas de compte ? <0><1>Inscrivez-vous\"],\"vXIe7J\":[\"Langue\"],\"vXemf6\":[\"Bug\"],\"va/3u1\":[\"Contrôlez qui peut voir et modifier vos tableaux.\"],\"vbskQn\":[\"Le nom de la clé API est requis\"],\"veIDCY\":[\"Commencer l'essai gratuit de 14 jours\"],\"vfRdCZ\":[\"Impossible de réinitialiser les permissions\"],\"vgdzLf\":[\"Créer un autre\"],\"vifyyw\":[\"Mentions légales\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"Les permissions de ce membre ont été réinitialisées aux valeurs par défaut de son rôle.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"facturation mensuelle\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Long terme\"],\"vwGkYB\":[\"Le mot de passe doit contenir au moins 8 caractères\"],\"wIb7Ng\":[\"Développement logiciel\"],\"wK4OTM\":[\"Titre (facultatif)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Veuillez sélectionner un fichier à télécharger.\"],\"wY+6Ye\":[\"Cette URL de tableau est déjà utilisée\"],\"wakO3W\":[\"a ajouté la checklist <0>\",[\"0\"],\"\"],\"wewm3j\":[\"Le nom du tableau ne peut pas dépasser 100 caractères\"],\"wgNoIs\":[\"Tout sélectionner\"],\"wlQNTg\":[\"Membres\"],\"wqkcin\":[\"Peut voir les commentaires\"],\"wqxglO\":[\"Apprentissage\"],\"wruKPE\":[\"Soutenir le développement du projet\"],\"wsy94z\":[\"Idéal pour les grandes organisations avec des besoins avancés\"],\"wtxjAY\":[\"Membres de l'espace de travail\"],\"x0kMO/\":[\"Erreur lors de la mise à jour de l'URL de l'espace de travail\"],\"x8GeCD\":[\"Nom d'affichage mis à jour\"],\"xEbBrW\":[\"Quelle licence utilisez-vous ?\"],\"xGVfLh\":[\"Continuer\"],\"xLTZVf\":[\"Jour de début de semaine\"],\"xMn+V9\":[\"Importation depuis Trello\"],\"xRPn3U\":[\"Saisissez votre adresse e-mail\"],\"xvcYhz\":[\"Effacez toutes les permissions personnalisées des membres afin que tous les membres héritent uniquement des permissions par défaut de leur rôle.\"],\"y3aU20\":[\"Enregistrer les modifications\"],\"yD3ZSw\":[\"Modifiez vos préférences de langue.\"],\"yV7o5I\":[\"Comment importer mes tableaux Trello ?\"],\"yb/fjw\":[\"Approbation\"],\"yhLUU8\":[\"Erreur de connexion à GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Importer le projet (1)\"],\"other\":[\"Importer les projets (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Fermer\"],\"zC8Whw\":[\"Commencez en créant une nouvelle liste\"],\"zERArS\":[\"a mis à jour le titre en <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Créer un lien d'invitation\"],\"zMlxCA\":[\"1 utilisateur\"],\"zMquA7\":[\"Choisir un forfait\"],\"zQPhSa\":[\"Convertir en lien\"],\"zQX5Dj\":[\"Nom de la liste\"],\"zYRVNp\":[\"Sélectionner une liste\"],\"zkWmBh\":[\"Annuel\"],\"zl1b97\":[\"Impossible de créer la carte\"],\"zoEbXq\":[\"Peut voir les cartes\"],\"zt/6cS\":[\"Idéal pour les petites équipes qui souhaitent collaborer et avancer plus rapidement ensemble.\"],\"zto8aj\":[\"Trello déconnecté\"],\"zwBp5t\":[\"Privé\"],\"zwTiVn\":[\"a retiré une pièce jointe <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"En savoir plus\"],\"zxKs+y\":[\"Échéance demain\"],\"zzDlyQ\":[\"Succès\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Réseaux sociaux\"],\"+3TYXa\":[\"Pour une durabilité à long terme, nous reconnaissons que tous les bons projets open source ont besoin d'une source de revenus. La nôtre provient de l'offre cloud payante pour les espaces de travail avec plusieurs utilisateurs et pour les slugs d'espace de travail personnalisés. Il n'y a aucune obligation de l'utiliser, et vous pouvez héberger le logiciel sur votre propre infrastructure gratuitement.\"],\"+5kO8P\":[\"Samedi\"],\"+8Nek/\":[\"Mensuel\"],\"+EkBs0\":[\"Nous n'avons pas pu mettre à jour vos préférences. Veuillez réessayer.\"],\"+MdEsf\":[\"Le nouveau mot de passe est requis\"],\"+OhFss\":[\"Commencez gratuitement, sans limite d'utilisation. Pour la collaboration, passez à un forfait adapté à la taille de votre équipe.\"],\"+VoTOr\":[\"facturé mensuellement\"],\"+djOzj\":[\"Inviter un membre\"],\"+h2faV\":[\"Paramètres | Webhooks\"],\"+jbXzb\":[\"Vos projets ont été importés.\"],\"+nvZ6j\":[\"Étiquettes et filtres\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Modèle\"],\"/asTmx\":[\"Rapport de bug\"],\"/bBVaD\":[\"GitHub déconnecté\"],\"/bZzdR\":[\"Mentions\"],\"/f3t6v\":[\"Configurez les actions autorisées pour chaque rôle d'espace de travail. Ces permissions s'appliquent à tous les membres ayant ce rôle.\"],\"/gaSVU\":[\"Roadmap\"],\"/glL9Q\":[\"Aucun \",[\"0\"]],\"/jd3aj\":[\"Rôles d'administrateur avancés\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"Une application kanban puissante et flexible qui vous aide à organiser le travail, suivre les progrès et obtenir des résultats, le tout au même endroit.\"],\"/tOdd2\":[\"Votre image de profil a été mise à jour.\"],\"0+0/3e\":[\"Créer une nouvelle étiquette\"],\"0+ewPp\":[\"Amélioration\"],\"02i3WU\":[\"Importations\"],\"06EQqT\":[\"Duplication en cours…\"],\"09Tv5j\":[\"Reconnecting…\"],\"0AfkMq\":[\"Your role changed in\"],\"0KjpAr\":[\"Peut voir les membres\"],\"0RE1AJ\":[\"Les tableaux que vous archivez apparaîtront ici.\"],\"0StR7t\":[\"Saisissez votre nouveau mot de passe\"],\"0jV46i\":[\"Impossible de supprimer l'élément de liste de contrôle\"],\"0qyZ4b\":[\"Chargement des permissions...\"],\"0rPv1T\":[\"Photo de profil mise à jour\"],\"0utuU6\":[\"Copier les listes de contrôle\"],\"0xD8Of\":[\"La page que vous recherchez n'existe pas ou a été déplacée.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Importer le tableau (1)\"],\"other\":[\"Importer les tableaux (\",[\"boardCount\"],\")\"]}]],\"11dHnN\":[\"You were removed from\"],\"14Xi3Z\":[\"L'ajout d'un nouveau membre coûtera \",[\"price\"],\" supplémentaires (\",[\"billingType\"],\") par siège.\"],\"1H5u1m\":[\"Des questions ?\"],\"1WuwiM\":[\"Aller aux paramètres\"],\"1bJKhj\":[\"Copier le lien vers la carte\"],\"1hzdxO\":[\"Permissions de l'espace de travail\"],\"1iShX0\":[\"Échéance aujourd'hui\"],\"1njn7W\":[\"Clair\"],\"1rVAfU\":[\"Charger plus d'activités\"],\"1rWxEw\":[\"En attente du client\"],\"1sRmLC\":[\"Discutez et collaborez sur les cartes.\"],\"1wCGT0\":[\"Tableaux illimités\"],\"25fAUC\":[\"Votre lien de désinscription ne contient pas de jeton. Veuillez ouvrir le dernier e-mail et réessayer.\"],\"25mvI+\":[\"Les liens d'invitation nécessitent un abonnement Team ou Pro. Veuillez mettre à niveau votre espace de travail.\"],\"29sSki\":[\"a terminé l'élément de checklist <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"Liste\"],\"2Bu8xj\":[\"Aucun tableau trouvé\"],\"2M84k3\":[\"Permissions personnalisées\"],\"2MPcep\":[\"Importation terminée\"],\"2POOFK\":[\"Gratuit\"],\"2Py5S/\":[\"Je reconnais que toutes les données de l'espace de travail seront définitivement supprimées et je souhaite continuer.\"],\"2Q871c\":[\"Impossible d'ajouter l'étiquette\"],\"2QGEbi\":[\"Impossible de supprimer le commentaire\"],\"2SePRT\":[\"Vous avez été invité à rejoindre un espace de travail sur kan.bn.\"],\"2X4ecw\":[\"Webhook supprimé avec succès\"],\"2h4PVB\":[\"Le nom de votre espace de travail a été mis à jour.\"],\"2liqDZ\":[\"Je reconnais que toutes les données de mon compte seront définitivement supprimées et je souhaite continuer.\"],\"2q/Q7x\":[\"Visibilité\"],\"2roTVj\":[\"Commentaires envoyés\"],\"3LDCpD\":[\"Cette action ne peut pas être annulée.\"],\"3WXdoZ\":[\"Vous pourrez toujours modifier ces paramètres plus tard dans les réglages.\"],\"3ZjRJY\":[\"a renommé la checklist <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Toute personne disposant de ce lien peut rejoindre votre espace de travail\"],\"3d54Wj\":[\"Webhook mis à jour avec succès\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Connecter GitHub\"],\"3pIq39\":[\"Rôles d'administrateur\"],\"4630Pc\":[\"Card updated\"],\"479pdJ\":[\"Confirmez votre nouveau mot de passe\"],\"4DOCMI\":[\"URL YouTube\"],\"4Revpc\":[\"Petite\"],\"4RoY9J\":[\"Article de blog\"],\"4XF0BB\":[\"Photo de profil\"],\"4gAX8s\":[\"Basculer le menu\"],\"4kJRen\":[\"Écriture\"],\"4obmDr\":[\"404 - Page introuvable | kan.bn\"],\"4sxGcV\":[\"You were assigned to a card\"],\"51UCsN\":[\"Déplacer vers une autre liste\"],\"53QYh8\":[\"Échec de la création du tableau\"],\"55xJ/O\":[\"Erreur lors du changement de mot de passe\"],\"58AiWX\":[\"Veuillez confirmer votre nouveau mot de passe\"],\"5ACX4z\":[\"Newsletter\"],\"5IXWmO\":[\"Consultez votre boîte de réception\"],\"5P4rhH\":[\"Impossible de mettre à jour les membres\"],\"5RkSzq\":[\"Copier le lien du tableau\"],\"5eZwRW\":[\"Connectez votre compte Trello pour importer des tableaux.\"],\"5h8ooz\":[\"Clés API\"],\"5iplxh\":[\"Le nouveau mot de passe doit être différent du mot de passe actuel\"],\"5k0NLb\":[\"Révision\"],\"5lWFkC\":[\"Se connecter\"],\"5ntVtp\":[\"Échec du test du webhook\"],\"5y6qY8\":[\"a ajouté une pièce jointe\"],\"69b7aE\":[\"Ouvrir le menu de commandes\"],\"6EWT6T\":[\"Recrutement\"],\"6FDocz\":[\"S'inscrire avec \"],\"6FsGbN\":[\"Commencez en créant un nouveau \",[\"0\"]],\"6OTo9n\":[\"Le nom du modèle est requis\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Nouveau \",[\"0\"]],\"6YtxFj\":[\"Nom\"],\"6mbe4b\":[\"Particuliers\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"Les permissions du membre ont été mises à jour.\"],\"6uBU1F\":[\"Accès complet à l'API\"],\"6zeSBB\":[\"Peut créer des cartes\"],\"74F7N/\":[\"Êtes-vous sûr de vouloir supprimer votre compte ?\"],\"7EhE4k\":[\"Mettre à jour l'étiquette\"],\"7L01XJ\":[\"Actions\"],\"7PzzBU\":[\"Utilisateur\"],\"7Qqqyu\":[\"New comment on\"],\"7RpHg/\":[\"Nom d'utilisateur personnalisé\"],\"7Ufoyg\":[\"Listes illimitées\"],\"7aONWr\":[\"L'URL ne peut pas dépasser 2048 caractères\"],\"7b2yuC\":[\"Veuillez saisir un mot de passe valide\"],\"7d1a0d\":[\"Public\"],\"7eMo+U\":[\"Retour à l'accueil\"],\"7hktsm\":[\"Premiers pas\"],\"7i8j3G\":[\"Entreprise\"],\"8+BY11\":[\"URL du tableau copiée dans le presse-papiers\"],\"86FLn5\":[\"Téléchargements de fichiers illimités\"],\"86XI28\":[\"Confirmez vos préférences d'e-mail :\"],\"8AbRER\":[\"Définir la date d'échéance\"],\"8AwlaR\":[\"Membres illimités et un nom d'utilisateur d'espace de travail personnalisé pour les équipes prêtes à évoluer.\"],\"8F1i42\":[\"Page introuvable\"],\"8Is1ih\":[\"Offre de lancement\"],\"8RdLDU\":[\"Projet personnel\"],\"8TveY+\":[\"Tableaux\"],\"8Z4pNX\":[\"Peut créer des listes\"],\"8iP0S8\":[\"Tout ce qui est inclus dans le forfait gratuit, plus :\"],\"8iP9oQ\":[\"Le test du webhook a échoué\"],\"8yFGGF\":[\"Impossible de retirer le membre\"],\"99VIgC\":[\"Retirer le membre\"],\"9HDx2Z\":[\"You were mentioned in\"],\"9PaIxv\":[\"Fonctionnalités principales\"],\"9Xigls\":[\"En cours de révision\"],\"9YPBHv\":[\"Échec de la suppression du webhook\"],\"9cDpsw\":[\"Permissions\"],\"9eF5oV\":[\"Bon retour\"],\"9h7RDh\":[\"Offre\"],\"9lFfqv\":[\"/mois\"],\"9s9O5h\":[\"Erreur lors de la suppression de l'espace de travail\"],\"9u5BOr\":[\"Membres | \",[\"0\"]],\"9wdpwp\":[\"Portail de facturation\"],\"9x4DAL\":[[\"0\"],\" introuvable\"],\"9y1RcT\":[\"Nous ne faisons que commencer.\"],\"A23Y7X\":[\"Rejoindre l'espace de travail | kan.bn\"],\"A42Dqn\":[\"Image de marque personnalisée\"],\"A5hiCy\":[\"Créer un modèle\"],\"A8jqN7\":[\"Impossible d'envoyer le feedback\"],\"ABCjd9\":[\"Publication\"],\"ADEin1\":[\"Paramètres | Facturation\"],\"ALhEZV\":[\"Peut inviter des membres\"],\"ANyn0x\":[\"Tout ce dont vous avez besoin, gratuit pour toujours. Tableaux illimités, listes illimitées, cartes illimitées. Mise à niveau à tout moment.\"],\"ARvBT/\":[\"facturé annuellement\"],\"ASjvm9\":[\"URL de l'espace de travail\"],\"AUYALh\":[\"Bientôt disponible\"],\"AX4ktp\":[\"Création de contenu\"],\"AZI/wb\":[\"Étiquettes et filtres\"],\"AdxYds\":[\"Votre compte GitHub a été déconnecté.\"],\"AeXO77\":[\"Compte\"],\"Alp2ti\":[\"Contacter les ventes\"],\"Ax/hYa\":[\"La description de l'espace de travail ne peut pas dépasser 280 caractères\"],\"B3xxao\":[\"Ajouter une carte\"],\"BBUDfW\":[\"Urgent\"],\"BEVzjL\":[\"Échec de l'importation\"],\"BJbLe4\":[\"Nous utilisons la <0>licence AGPL-3.0.\"],\"BMkVQ3\":[\"a supprimé la checklist <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"a déplacé la carte de <0>\",[\"0\"],\" vers <1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Dupliquer la carte\"],\"BZkYSt\":[\"a retiré \",[\"0\"],\" étiquettes : <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Êtes-vous sûr de vouloir supprimer l'espace de travail \",[\"0\"],\" ?\"],\"Bhgd0l\":[\"Nous contacter\"],\"BzEFor\":[\"ou\"],\"C56tim\":[\"Impossible de mettre à jour la date d'échéance\"],\"C6gv54\":[\"Le tableau a été désarchivé.\"],\"CAL6E9\":[\"Équipes\"],\"CB/NpV\":[\"Priorité élevée\"],\"CHZ1jC\":[\"a supprimé l'élément de checklist <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Veuillez saisir un nom valide\"],\"CJWDTP\":[\"Votre compte Trello a été déconnecté.\"],\"CJukzS\":[[\"0\"],\" étiquettes\"],\"CTqTgr\":[\"Raccourcis\"],\"CYWHT+\":[\"Erreur lors du téléchargement de l'image de profil\"],\"Cb5YSG\":[\"You were added to\"],\"Cd4sTD\":[\"Idéal pour les particuliers et créateurs solo qui débutent\"],\"Ci/KUX\":[\"Paramètres | Espace de travail\"],\"CkVV1t\":[\"Erreur lors de la mise à jour de la description de l'espace de travail\"],\"Cmudpi\":[\"Peut supprimer l'espace de travail\"],\"CozWO1\":[\"Nom de l'espace de travail\"],\"CujNX4\":[\"a ajouté une pièce jointe <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"Système\"],\"D0esZz\":[\"Journal d'activité\"],\"D3C4Yx\":[\"Le mot de passe actuel est requis\"],\"D7/JvJ\":[\"Ajustez le recadrage carré pour adapter votre avatar.\"],\"D9ROdV\":[\"Liens d'invitation\"],\"DAV3uK\":[\"Permissions mises à jour\"],\"DBC3t5\":[\"Dimanche\"],\"DFjdv0\":[\"Supprimer le modèle\"],\"DMeWZD\":[\"Êtes-vous sûr de vouloir supprimer \",[\"0\"],\" ?\"],\"DPfwMq\":[\"Terminé\"],\"DSGzV+\":[\"Nom d'utilisateur de l'espace de travail\"],\"DahTzR\":[\"Impossible de supprimer la liste de contrôle\"],\"DbZgsJ\":[\"Créer un modèle\"],\"DtXlZq\":[\"Impossible de mettre à jour la checklist\"],\"Dz63YI\":[\"Une erreur s'est produite lors de la déconnexion de votre compte GitHub.\"],\"E0t3jO\":[\"a ajouté l'élément de checklist <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Tarification par siège\"],\"E8zYtd\":[\"a retiré <0>\",[\"0\"],\" de la carte\"],\"ECJKc4\":[\"Clé API créée\"],\"EEHmPC\":[\"Offre de lancement : obtenez un nombre illimité de membres avec Pro\"],\"EH8IL3\":[\"Checklists\"],\"EII/X8\":[\"Toutes les fonctionnalités Teams +\"],\"ERpq2P\":[\"Aucun résultat trouvé pour « \",[\"debouncedQuery\"],\" ».\"],\"ESClHO\":[\"Support e-mail prioritaire\"],\"EYpSRU\":[\"You were added to a workspace\"],\"Eg99Sc\":[\"Aucune méthode d'authentification n'est actuellement disponible\"],\"Eit43O\":[\"a défini la date d'échéance\"],\"EkH9pt\":[\"Mettre à jour\"],\"EvArWh\":[\"Collaborez facilement avec votre équipe.\"],\"F/FPk/\":[\"Paramètres | Permissions\"],\"F/vB2g\":[\"Idées pour améliorer cette page...\"],\"F0YmUY\":[\"Copier le lien de la carte\"],\"F3bW6y\":[\"Plateforme\"],\"F4KRmY\":[\"8 $/mois\"],\"F4PLG4\":[\"Description de l'espace de travail mise à jour\"],\"F6m23G\":[\"Téléchargement de fichiers\"],\"F6pfE9\":[\"Actif\"],\"F8DaWi\":[\"Lecture seule\"],\"FEr96N\":[\"Thème\"],\"FdtSNC\":[\"Créer un espace de travail\"],\"FmN5me\":[\"Résolution\"],\"FmfJjN\":[\"Consultez et gérez vos clés API.\"],\"Fpci8b\":[\"Êtes-vous sûr de vouloir supprimer cette checklist ?\"],\"G1Gw0v\":[\"Nouveau modèle\"],\"GAD3Dx\":[\"Domaine personnalisé\"],\"GDvlUT\":[\"Rôle\"],\"GKeVeM\":[\"Your role was changed\"],\"GRAGsB\":[\"Votre espace de travail\"],\"GYv20o\":[\"Impossible de mettre à jour les permissions\"],\"GdWB+V\":[\"Webhook créé avec succès\"],\"GnRmu4\":[\"Nom de la checklist\"],\"GnSSGm\":[\"La description de votre espace de travail a été mise à jour.\"],\"GoDLB9\":[\"Votre compte a été supprimé.\"],\"GpB8YV\":[\"Entreprise\"],\"GwNIE2\":[\"Feuille de route étendue\"],\"Gxxi5J\":[\"Ajouter une checklist\"],\"H5G+qG\":[\"Quelle est la différence entre Kan et Trello ?\"],\"HBI6nY\":[\"Besoin d'aide ?\"],\"HO+uOC\":[\"Triage\"],\"HQVm6e\":[\"Cette URL est déjà prise\"],\"HVIzNO\":[\"Peut voir les listes\"],\"HYV6Lq\":[\"Échec de l'acceptation de l'invitation. Veuillez réessayer plus tard ou contacter le support client.\"],\"HbXReU\":[\"No notifications yet\"],\"HcT8J4\":[\"Votre compte GitHub a été connecté.\"],\"HeFWjW\":[\"Prochaines étapes\"],\"Hf1cEZ\":[\"L'URL du webhook est requise\"],\"Hg1qE9\":[\"L'identifiant de votre espace de travail a été mis à jour.\"],\"I+AROe\":[\"Peut modifier des cartes\"],\"I0gAKM\":[\"Impossible de mettre à jour la liste\"],\"IDvohQ\":[\"a marqué un élément de la checklist comme incomplet\"],\"IFgUX6\":[\"Peut supprimer des membres\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Passer à Pro\"],\"Iqh0Uv\":[\"Planifié\"],\"IqjpYe\":[\"Visibilité de l'e-mail\"],\"IrZaAn\":[\"Mot de passe modifié\"],\"It4/FS\":[\"Désarchiver le tableau\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Continuer avec \"],\"J4+OTA\":[\"Déplacer vers la liste\"],\"J5nbej\":[\"Critique\"],\"J5pbP6\":[\"Peut modifier les rôles et permissions des membres\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JBaoDB\":[[\"overflow\"],\" more viewers\"],\"JCdzgZ\":[\"Demande de fonctionnalité\"],\"JUce1S\":[\"Assignés\"],\"JbXXUW\":[\"Gardez à l'esprit que cette action est irréversible.\"],\"JcCDm9\":[\"Modèle créé\"],\"Jgaz7E\":[\"Permissions réinitialisées\"],\"JjEJSy\":[\"Configurer votre espace de travail\"],\"JnWJXY\":[\"lien magique\"],\"JxhWxU\":[\"dans\"],\"JyXBgS\":[\"docs\"],\"K3iLeO\":[\"Découvrez ce que nos utilisateurs disent de Kan\"],\"K4xHKu\":[\"New comment on a card\"],\"K7k9u3\":[\"Impossible de déplacer la carte\"],\"KAsRdK\":[\"Aller aux membres\"],\"KEim/+\":[\"a retiré une pièce jointe\"],\"KFJgmZ\":[\"Le nom d'affichage doit contenir au moins 3 caractères\"],\"KLJ4eD\":[\"Lien d'invitation copié\"],\"KM6m8p\":[\"Équipe\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Contrôles d'administration avancés\"],\"KiVc+q\":[\"Temps plein\"],\"KuSt9W\":[\"Comment auto-héberger ?\"],\"L5WQLg\":[\"Le jeton est requis\"],\"L5ZPjz\":[\"a mis à jour un élément de la checklist\"],\"LTGE7Y\":[\"Espace de travail créé avec succès. Vous pourrez effectuer une mise à niveau ultérieurement dans les paramètres.\"],\"LeM5RY\":[\"Impossible d'effacer les remplacements\"],\"LoUCpj\":[\"Erreur lors de la mise à jour du nom de l'espace de travail\"],\"LqWW5F\":[\"Votre nom d'affichage a été mis à jour.\"],\"LrcnbT\":[\"Hébergez Kan sur votre propre infrastructure. Idéal pour les organisations qui ont besoin d'un contrôle total sur leurs données.\"],\"Lt+ZP3\":[\"a terminé un élément de checklist\"],\"M9p3Vw\":[\"Journal d'activité illimité\"],\"MCIXdZ\":[\"Connectez votre compte GitHub pour importer des projets.\"],\"MFKlMB\":[\"Inviter\"],\"MHrjPM\":[\"Titre\"],\"MI5OBT\":[\"L'URL ne peut contenir que des lettres, des chiffres et des traits d'union\"],\"MK16u2\":[\"Aucune date\"],\"MKAScN\":[\"Peut voir les tableaux\"],\"MN6YzG\":[\"Identifiant de l'espace de travail mis à jour\"],\"MWrbWq\":[\"Paramètres | Compte\"],\"MdN5zD\":[\"Vous devez être administrateur pour gérer les permissions de l'espace de travail.\"],\"MdwUGG\":[\"Gagnez du temps avec des modèles de tableaux réutilisables.\"],\"MeO/vH\":[\"Cela entraînera la suppression définitive de toutes les données associées à cet espace de travail.\"],\"MlyjJu\":[\"Le nom d'affichage ne peut pas dépasser 280 caractères\"],\"MxQXhL\":[\"Impossible de créer l'espace de travail\"],\"N/bcWA\":[\"Connexion | kan.bn\"],\"N3380t\":[\"Peut créer des tableaux\"],\"N7aud6\":[\"Recherche intelligente\"],\"NH54UR\":[\"a renommé l'élément de checklist en <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"Le tableau a été archivé.\"],\"NgaR6B\":[\"Saisissez votre mot de passe\"],\"NnH3pK\":[\"Tester\"],\"NoNwIX\":[\"Inactif\"],\"NypLoL\":[\"a renommé une checklist\"],\"O0li0W\":[\"Saisissez votre mot de passe actuel et choisissez un nouveau mot de passe sécurisé.\"],\"O1wAlQ\":[\"Invité\"],\"O3oNi5\":[\"E-mail\"],\"O83K21\":[\"a ajouté un élément de checklist\"],\"O9jVbx\":[\"Priorité basse\"],\"OAYToL\":[\"Cela supprimera toutes les permissions personnalisées des membres dans cet espace de travail. Les membres hériteront uniquement des permissions de leurs rôles.\"],\"OIA0ad\":[\"Nom de l'espace de travail mis à jour\"],\"OTxjpR\":[\"votre-espace-de-travail\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Déconnecter GitHub\"],\"Oi+J+N\":[\"Choisissez un forfait pour commencer. Tous les forfaits payants incluent un essai gratuit de 14 jours.\"],\"OkTY4+\":[\"Le secret ne peut pas dépasser 512 caractères\"],\"Oo4E6p\":[\"Impossible de dupliquer la carte\"],\"OpNhRn\":[\"Aucune carte bancaire requise\"],\"OtjenF\":[\"Veuillez saisir une adresse e-mail valide\"],\"OvoEq7\":[\"Membre\"],\"OwneeH\":[\"Nom d'utilisateur d'espace de travail personnalisé\"],\"Ozt2vv\":[\"Votre mot de passe a été modifié.\"],\"P6dJdq\":[\"Remplacements effacés\"],\"P8Cunr\":[\"Nom d'utilisateur par défaut\"],\"PCIlOO\":[\"Ajouter un membre\"],\"PELbXB\":[\"Votre compte GitHub est connecté.\"],\"PRjvDT\":[\"Êtes-vous sûr de vouloir supprimer ce commentaire ?\"],\"PRofO0\":[\"Modifier la vidéo YouTube\"],\"PTzsxH\":[\"Visibilité du tableau mise à jour\"],\"PVT7q7\":[\"GitHub connecté\"],\"PZCqeW\":[\"Veuillez réessayer plus tard.\"],\"Pat4r8\":[\"Roadmap basique\"],\"PpZkda\":[\"Fonctionnalités\"],\"PyYD/v\":[\"a assigné <0>\",[\"0\"],\" à la carte\"],\"Q60WUZ\":[\"Impossible de démarrer le paiement\"],\"Q9pQaX\":[\"Aucun rôle trouvé pour cet espace de travail pour le moment.\"],\"QD8opX\":[\"Tableau\"],\"QHhZeE\":[\"Modèle créé avec succès\"],\"QNtP5M\":[\"Utiliser le modèle\"],\"Qh7QmR\":[\"Retiré des favoris\"],\"QnzD50\":[\"Sur site\"],\"QtACvI\":[\"Créer une étiquette\"],\"Qtzfdk\":[\"Forfait Pro ∞\"],\"R+w/Va\":[\"Facturation\"],\"R1c3Mq\":[\"Le nom du tableau est requis\"],\"R275Pz\":[\"Vous disposez de places illimitées avec votre forfait pro. Il n'y a aucun frais supplémentaire pour les nouveaux membres !\"],\"R3FsF4\":[\"Échec du téléchargement\"],\"R41XLH\":[\"Échec de la mise à jour du webhook\"],\"R6pB8R\":[\"Mettre une étoile sur Github\"],\"RHZu7R\":[\"Apprécié par des équipes du monde entier\"],\"RJA+sg\":[\"Nouveau ticket\"],\"RRn9jf\":[\"Cliquez sur le lien que nous avons envoyé à \",[\"magicLinkRecipient\"],\" pour vous connecter.\"],\"RSGOS1\":[\"Peut supprimer des listes\"],\"RfgJqw\":[\"a mis à jour la date d'échéance\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Envoyer un commentaire\"],\"RtlIYB\":[\"Vous êtes sur le point de modifier votre mot de passe.\"],\"RzxgOE\":[\"Rôles et permissions\"],\"SFnH1j\":[\"Pourquoi créer un Trello open source ?\"],\"SMaFdc\":[\"Se désabonner\"],\"SNfg0e\":[\"Peut voir l'espace de travail\"],\"SPLN9O\":[\"Vos données vous appartiennent\"],\"SRvxId\":[\"Secret HMAC pour la vérification de signature\"],\"STSYcd\":[\"Peut supprimer des commentaires\"],\"SUXBxp\":[\"Ingénierie\"],\"SUvm1Y\":[\"Idéal pour les particuliers qui débutent et qui ont simplement besoin de l'essentiel.\"],\"SWEskc\":[\"L'URL doit contenir au moins 3 caractères\"],\"Sb2gYF\":[\"Nouvelle liste\"],\"ScJ9fj\":[\"Politique de confidentialité\"],\"Se/UIp\":[\"À faire\"],\"SiPp29\":[\"Créer un webhook\"],\"SkCNhl\":[\"Rechercher des tableaux et des cartes...\"],\"SlfejT\":[\"Erreur\"],\"T/pF0Z\":[\"Retirer des favoris\"],\"T21jY/\":[\"a ajouté une étiquette à la carte\"],\"T7DJ2k\":[\"Impossible d'ajouter le commentaire\"],\"T7LJic\":[\"a déplacé la carte vers une autre liste\"],\"T7Mywq\":[\"Impossible de mettre à jour le tableau\"],\"TCOMOO\":[\"Modifier les permissions\"],\"TCt/8K\":[\"Accès API limité\"],\"TFv5tM\":[\"Impossible de mettre à jour le rôle\"],\"TH3Irz\":[\"Permission\"],\"TKFUnX\":[\"Compte supprimé\"],\"TX0bT7\":[\"Aucun webhook configuré. Ajoutez un webhook pour recevoir des notifications.\"],\"TXO5TM\":[\"Aucun raccourci clavier enregistré.\"],\"TYli1B\":[\"Peut modifier des commentaires\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Revue de code\"],\"TdfEV7\":[\"Archivé\"],\"TjREUS\":[\"Nouvelle clé API\"],\"TmvrjU\":[\"L'URL du tableau doit contenir au moins 3 caractères\"],\"TvY/XA\":[\"Documentation\"],\"Tz0i8g\":[\"Paramètres\"],\"TztLaN\":[\"Impossible de créer la liste\"],\"U2+rn0\":[\"Le nom du webhook est requis\"],\"U3pytU\":[\"Administrateur\"],\"U5dMR6\":[\"Voir l'espace de travail\"],\"UCLeG0\":[\"Conditions d'utilisation\"],\"UGCIzB\":[\"Ajouter / modifier l'étiquette\"],\"UQbwrz\":[\"Tous les systèmes sont opérationnels\"],\"URAE3q\":[\"En pause\"],\"USVCGU\":[\"Erreur lors de la désactivation du lien d'invitation\"],\"UbRKMZ\":[\"En attente\"],\"UbYdrA\":[\"Fréquence de paiement\"],\"UeDFpo\":[\"Comment le projet est-il financé ?\"],\"UirJfL\":[\"SLA personnalisé\"],\"UlhdTP\":[\"Espace de travail supprimé\"],\"Un80BR\":[\"Amis OSS\"],\"UoSI+i\":[\"Idéal pour les petites équipes en croissance qui ont besoin de collaboration\"],\"UveK6V\":[\"Aller à l'application\"],\"Uworke\":[\"Temps partiel\"],\"UxKoFf\":[\"Navigation\"],\"V1KOLq\":[\"Notifications par e-mail pour les mentions\"],\"V3MPSQ\":[\"a mis à jour le titre\"],\"V8YRD4\":[\"Viewing now: \",[\"0\"]],\"V8YWP3\":[\"Saisissez un titre personnalisé\"],\"VHS0aJ\":[\"Effacer toutes les permissions personnalisées ?\"],\"VKoDQD\":[\"Créer un nouveau \",[\"0\"]],\"VUZDlr\":[\"Témoignages\"],\"VXk54Y\":[\"s'est auto-assigné la carte\"],\"VbyRUy\":[\"Commentaires\"],\"VhMDMg\":[\"Changer le mot de passe\"],\"Vt50G1\":[\"Kanban basique\"],\"W/Elkg\":[\"Priorité moyenne\"],\"W/nQk1\":[\"Forfait gratuit\"],\"W1ewR0\":[\"Impossible de copier le lien\"],\"W5r8Qh\":[\"a supprimé un élément de checklist\"],\"W8oT+L\":[\"Échec de la récupération des informations vidéo\"],\"WHHLh9\":[\"Impossible de supprimer la pièce jointe\"],\"WI4eGo\":[\"Comment obtenir une URL personnalisée ?\"],\"WQPDcG\":[\"Impossible de mettre à jour l'élément de la checklist\"],\"WRkpB1\":[\"Inscription désactivée\"],\"WRsbHO\":[\"Votre compte Trello est connecté.\"],\"WYDptz\":[\"Abonnement requis\"],\"WYwN1G\":[\"Nouvel import\"],\"WbTDwg\":[\"En cours\"],\"Weq9zb\":[\"Général\"],\"WmPhYW\":[\"Une erreur s'est produite lors de la déconnexion de votre compte Trello.\"],\"WnEwDO\":[\"Vous avez déjà un compte ? <0><1>Se connecter\"],\"Ws+3X+\":[\"Places illimitées et fonctionnalités avancées pour les équipes en croissance.\"],\"Ws1I0u\":[\"A card was updated\"],\"Wy6pcF\":[\"Impossible de mettre à jour la visibilité du tableau\"],\"X0N0PA\":[\" (modifié)\"],\"XDRXbZ\":[\"La description de l'espace de travail doit contenir au moins 3 caractères\"],\"XEoGkQ\":[\"Aller à l'accueil\"],\"XILg0L\":[\"Adresse e-mail invalide\"],\"XJOV1Y\":[\"Activité\"],\"XNxYxq\":[\"Modèles de tableau\"],\"XTKtey\":[\"Créer une liste\"],\"XXbgHS\":[\"Embauché\"],\"XYLcNv\":[\"Support\"],\"XicmhT\":[\"Date d'échéance\"],\"Xid3K6\":[\"L'URL du tableau ne peut contenir que des lettres, des chiffres et des traits d'union\"],\"Xjj/kS\":[\"Kanban réinventé\"],\"XpcjLO\":[\"Impossible de mettre à jour l'URL du tableau\"],\"Y8yzGg\":[\"Commencez gratuitement. Évoluez au rythme de votre équipe. Aucun frais caché, aucun contrat.\"],\"YBBifR\":[\"Déconnecter Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Impossible de réorganiser l'élément de la checklist\"],\"YRk79X\":[\"Sécurité avancée, conformité et assistance dédiée pour les grandes organisations.\"],\"YVT40D\":[\"a retiré l'étiquette <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Erreur lors de la mise à niveau de l'abonnement\"],\"YcyP2z\":[\"Impossible de créer le modèle\"],\"YdIn4I\":[\"You were removed from a workspace\"],\"Yf9FAx\":[\"Ils ne pourront pas accéder à cet espace de travail.\"],\"YhvWXb\":[\"Analytiques du tableau\"],\"YirHq7\":[\"Commentaires\"],\"YkfDoz\":[\"Annuel\"],\"YoyKbT\":[\"Cette clé API ne sera affichée qu'une seule fois. Veuillez la sauvegarder dans un endroit sécurisé.\"],\"Ypy5pZ\":[\"Êtes-vous sûr de vouloir supprimer le webhook \\\"\",[\"webhookName\"],\"\\\" ? Cette action est irréversible.\"],\"YtUfwW\":[\"Échec de la connexion avec \",[\"0\"],\". Veuillez réessayer.\"],\"Yx0Ud8\":[\"Demandé\"],\"Z3FXyt\":[\"Chargement...\"],\"Z3krJD\":[\"Autoriser les membres de l'espace de travail à voir les adresses e-mail des autres\"],\"Z6r9z1\":[\"Impossible de supprimer la carte\"],\"ZAs2NN\":[\"Toutes les fonctionnalités Pro +\"],\"ZDGm40\":[\"Supprimer le compte\"],\"ZDIydz\":[\"Commencer\"],\"ZDPJBc\":[\"Les noms d'utilisateur personnalisés nécessitent une mise à niveau vers un forfait Pro\"],\"ZDo4HN\":[\"Brainstorming\"],\"ZH7TVS\":[\"Titre de la carte\"],\"ZL1A+p\":[\"Échec du téléchargement de la pièce jointe. Veuillez réessayer.\"],\"ZT4Khw\":[\"Êtes-vous sûr de vouloir supprimer cette carte ?\"],\"ZU5IYI\":[\"Tableaux illimités, listes illimitées, cartes illimitées. Aucune carte bancaire requise.\"],\"ZXSPJt\":[\"Une erreur inattendue s'est produite. Veuillez réessayer ultérieurement.\"],\"ZqDqbi\":[\"Organisez et trouvez vos cartes rapidement grâce à des outils de filtrage puissants.\"],\"Zz1qkk\":[\"Cartes illimitées\"],\"a3LDKx\":[\"Sécurité\"],\"aHCEmh\":[\"Tarifs\"],\"aHRWVI\":[\"a retiré la date d'échéance\"],\"aJ4pMe\":[\"FAQ\"],\"aKJHG+\":[\"Archiver le tableau\"],\"aW3TOw\":[\"Notifications par e-mail\"],\"aWDhU5\":[\"Kanban est meilleur en équipe. Parfait pour les petites équipes en croissance qui souhaitent collaborer.\"],\"aWlSc/\":[\"Créer une nouvelle liste\"],\"abUZlY\":[\"Ajouter des détails...\"],\"aelko+\":[\"Vous pouvez obtenir une URL d'espace de travail personnalisée, comme <0>kan.bn/kan, en accédant aux <1>paramètres de votre espace de travail et en souscrivant un abonnement pro. Tous les abonnements contribuent au financement du développement du projet !\"],\"agPptk\":[\"Moyenne\"],\"aiHZVP\":[\"Voir la documentation\"],\"b/LfJo\":[\"e-mail\"],\"b3Thhd\":[\"Échec du téléchargement\"],\"b5FKyH\":[\"a ajouté l'étiquette <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Créer \",[\"0\"]],\"bD8I7O\":[\"Terminé\"],\"bDI6VI\":[[\"0\"],\" a été retiré de vos favoris.\"],\"bFREhu\":[\"Fin de la liste\"],\"bJZm1W\":[\"Candidats\"],\"bJtM0P\":[\"Cette URL d'espace de travail est réservée\"],\"bKzM8L\":[\"Gestionnaire de compte dédié\"],\"bZSICm\":[\"Impossible d'ajouter l'élément de liste de contrôle\"],\"bcIybO\":[\"Le nom de l'espace de travail est requis\"],\"bdztP2\":[\"Recherche\"],\"be30i9\":[\"0 $\"],\"bfZE+Y\":[\"Le rôle du membre a été mis à jour.\"],\"bff61F\":[\"Forfait équipe\"],\"bfgr/e\":[\"Question\"],\"bmXKoX\":[\"a ajouté \",[\"0\"],\" étiquettes : <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Erreur lors de la suppression du compte\"],\"c/IAuR\":[\"Important\"],\"c3b0B0\":[\"Commencer\"],\"c4nMcR\":[\"Votre avatar\"],\"c9AJhn\":[\"Rejoindre l'espace de travail\"],\"cAgBMh\":[\"Contrôle et propriété complets :\"],\"cFQEU/\":[\"Ouvrir les raccourcis clavier\"],\"cOh+MI\":[\"Filtrage\"],\"cWXW+7\":[\"Ajouter un webhook\"],\"cWcxrL\":[\"Nouvelle checklist\"],\"cWtfn1\":[\"Passer à Pro (29 $/mois)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Description de l'espace de travail\"],\"cji2nM\":[\"Erreur lors de la création du lien d'invitation\"],\"cnGeoo\":[\"Supprimer\"],\"cp1rsD\":[\"Désactiver le lien d'invitation\"],\"csFbe+\":[\"Aller aux modèles\"],\"curoK5\":[\"Nouveau workspace\"],\"d+F6q9\":[\"Créé\"],\"d33Usy\":[\"Créer une checklist\"],\"dEgA5A\":[\"Annuler\"],\"dUh9QW\":[\"Planification\"],\"ddrz1m\":[\"En retard\"],\"delOXn\":[\"Impossible de mettre à jour les étiquettes\"],\"dgr4Kq\":[\"Modifier l'étiquette\"],\"dmKdk0\":[\"Une fois votre espace de travail supprimé, il n'y a pas de retour en arrière possible. Cette action ne peut pas être annulée.\"],\"dsLT3m\":[\"Créer une carte\"],\"dtQIWT\":[\"Collaboration\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Cette URL d'espace de travail est déjà utilisée\"],\"e1v+J3\":[\"Secret (facultatif)\"],\"e4hPSt\":[\"Réinitialiser aux valeurs par défaut du rôle\"],\"e6wIqm\":[\"You were mentioned in a card\"],\"eEQyz+\":[\"Suivez toutes les modifications de carte avec un historique d'activité détaillé.\"],\"ePK91l\":[\"Modifier\"],\"eZCGbT\":[\"Oui, nous proposons un forfait gratuit à vie pour un usage individuel. Aucune restriction, aucun paywall, aucune limite.\"],\"edWbV6\":[\"Lien copié\"],\"ekCRTP\":[\"Rejeté\"],\"en3oy5\":[\"Fonctionnalité\"],\"euc6Ns\":[\"Dupliquer\"],\"eus61c\":[\"Envoyer un test\"],\"evg7+A\":[\"Vos tableaux ont été importés.\"],\"evj0lK\":[\"Proposez-vous une offre gratuite ?\"],\"f8fH8W\":[\"Design\"],\"f8lDFq\":[\"a créé la carte\"],\"fDQ7hA\":[\"Copier les étiquettes\"],\"fEY2vP\":[\"Carte introuvable\"],\"fQCrjt\":[\"La visibilité de votre tableau a été définie sur \",[\"0\"],\".\"],\"fR9laE\":[\"Saisissez votre mot de passe actuel\"],\"fSf2ee\":[\"Consultez notre feuille de route.\"],\"fW5sSv\":[\"Modifier le webhook\"],\"fYVH36\":[\"Impossible de mettre à jour le commentaire\"],\"fcWrnU\":[\"Se déconnecter\"],\"fuwKpE\":[\"Veuillez réessayer.\"],\"fvLNDy\":[\"Aucune liste n'a encore été créée\"],\"fzGyWs\":[\"Modifier la taille de police de l'application.\"],\"fziA2d\":[\"Commentaires illimités\"],\"g2xBxu\":[\"Importer vos tableaux Trello dans Kan est facile. Vous pouvez suivre notre guide étape par étape <0>ici.\"],\"g9NChz\":[\"Gestionnaire de compte\"],\"gGx5tM\":[\"Modification\"],\"gKmoow\":[\"Cette URL est réservée\"],\"gL/7jw\":[\"Ajouter une description... (tapez « / » pour ouvrir les commandes ou « @ » pour mentionner)\"],\"gQ/02p\":[\"Erreur de déconnexion de GitHub\"],\"gUX7b+\":[\"L'alternative open source <0/> à Trello\"],\"gZxH/p\":[\"a modifié la date d'échéance en <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"Le nom de l'espace de travail ne peut pas dépasser 64 caractères\"],\"gkxGkF\":[\"Essai gratuit de 14 jours · Changez de forfait ou annulez à tout moment\"],\"gkzAEM\":[\"Continuer avec \",[\"0\"]],\"goklcJ\":[\"Entretien\"],\"gpfJ3v\":[\"Gratuit, pour toujours\"],\"gukxZ5\":[\"Intégration\"],\"gv5kbo\":[\"L'URL du tableau ne peut pas dépasser 60 caractères\"],\"h16FyT\":[\"Listes\"],\"h2FKMV\":[\"Vous n'avez pas la permission\"],\"h2ztFt\":[\"Toutes les fonctionnalités gratuites +\"],\"h4VV67\":[\"a ajouté une checklist\"],\"h7MgpO\":[\"Raccourcis clavier\"],\"h8DugX\":[\"Étiquettes\"],\"hAMddS\":[\"s'est retiré de la carte\"],\"hB02vO\":[\"Gérer les membres\"],\"hXMFoN\":[\"Aucune liste\"],\"hYzsXr\":[\"Paramètres | Intégrations\"],\"hty0d5\":[\"Lundi\"],\"i0ZMQl\":[\"Tableau archivé\"],\"i30J2U\":[\"Aucun projet trouvé\"],\"i5rE2/\":[\"L'URL ne peut pas dépasser 64 caractères\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Retour\"],\"iHcdea\":[\"Échéance la semaine prochaine\"],\"iLbjv+\":[\"Peut modifier l'espace de travail\"],\"iQmbPb\":[\"Licence\"],\"iSLIjg\":[\"Connecter\"],\"iTylMl\":[\"Modèles\"],\"iVIGZb\":[\"Pièce jointe téléchargée\"],\"isRobC\":[\"Nouveau\"],\"itgYbC\":[\"Webhook de test envoyé avec succès !\"],\"iwr7AP\":[\"Idées\"],\"iy1wb+\":[\"Paramètres | API\"],\"j0o6ml\":[\"La description de votre espace de travail\"],\"j1+HPc\":[\"Une erreur s'est produite lors de la connexion de votre compte GitHub.\"],\"j2+d/o\":[\"Référence API\"],\"j77sVH\":[\"You were assigned to\"],\"j9IZZ0\":[\"URL d'espace de travail personnalisée\"],\"jDRt4n\":[\"Voulez-vous vous désabonner ?\"],\"jEw0Mr\":[\"Veuillez saisir une URL valide\"],\"jIuWsV\":[\"Le nom du webhook ne peut pas dépasser 255 caractères\"],\"jL82rC\":[\"Effacer les permissions personnalisées\"],\"jNuzV/\":[\"Peut supprimer des cartes\"],\"jQ6I8X\":[\"Rôle mis à jour\"],\"jZBHkN\":[\"Le nom de l'espace de travail doit contenir au moins 3 caractères\"],\"jfC/xh\":[\"Contact\"],\"jl3aEJ\":[\"a marqué l'élément de checklist <0>\",[\"0\"],\" comme incomplet\"],\"jlB2RY\":[\"Le mot de passe actuel que vous avez saisi est incorrect.\"],\"jwI32v\":[\"Tableau introuvable\"],\"k7rCa/\":[\"Grande\"],\"kECVpo\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ?\"],\"kQwvU8\":[\"a retiré une étiquette de la carte\"],\"kSxwQL\":[\"Vous pouvez inviter des membres de l'équipe en cliquant sur le bouton « Inviter » en haut à droite de la <0>page des membres et en saisissant leur adresse e-mail. Ils recevront un e-mail avec un lien pour rejoindre l'espace de travail.\"],\"kYu0eF\":[\"Supprimer l'espace de travail\"],\"kfOGMr\":[\"Victoire rapide\"],\"klpSmb\":[\"Modifier l'URL de l'espace de travail\"],\"kp6L3T\":[\"Ce nom d'utilisateur d'espace de travail est déjà pris\"],\"kryGs+\":[\"Carte\"],\"kuoc68\":[\"10 $/mois\"],\"kxEs5t\":[\"Imports Trello\"],\"l2PIAy\":[\"Auto-héberger avec Github\"],\"l31EoQ\":[\"Trouvez des réponses aux questions courantes sur Kan. Vous ne trouvez pas ce que vous cherchez ? N'hésitez pas à <0>nous contacter.\"],\"l3s5ri\":[\"Importer\"],\"l4asa1\":[\"Ce tableau est privé ou n'existe pas\"],\"lGjicL\":[\", ou consultez notre\"],\"lKAvEd\":[\"Erreur lors de la déconnexion de Trello\"],\"lXvXNI\":[\"Échec de la copie du lien d'invitation\"],\"lYT7pQ\":[\"Supprimer la liste\"],\"lkz85l\":[\"La principale différence entre Kan et Trello est que Kan est open source, permettant à quiconque de consulter, modifier et contribuer à notre code. Notre offre cloud n'impose également aucune restriction sur les fonctionnalités pour un usage individuel, alors que Trello verrouille des fonctionnalités de base telles que le nombre de tableaux que vous pouvez créer derrière un paywall.\"],\"lo8xBK\":[\"Êtes-vous sûr de vouloir supprimer \",[\"entityLabel\"],\" ?\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"lsgnzd\":[\"Erreur lors de la mise à niveau vers Pro\"],\"lyqwgn\":[\"Ajouter une étiquette\"],\"m2nk0i\":[\"Tarification simple\"],\"mErq7F\":[\"S'inscrire\"],\"mHhffx\":[\"Impossible de créer la liste de contrôle\"],\"mTGd3+\":[\"a supprimé une checklist\"],\"mTwGOf\":[\"Ce lien d'invitation est invalide ou a expiré.\"],\"mU+M00\":[[\"0\"],\" a été ajouté à vos favoris.\"],\"mVZH9V\":[\"Lorsque Trello a été lancé en 2011, il a impressionné tout le monde avec sa simplicité soigneusement conçue, mais au fil des années, il a perdu sa magie et s'est transformé en quelque chose de plus proche de \\\"Jira Lite\\\". Ce projet est notre tentative de retrouver la magie originale de la simplicité de Trello, en open source.\"],\"mZGPxt\":[\"Lien d'invitation copié dans le presse-papiers\"],\"mchgzf\":[\"Vous avez été inscrit avec succès.\"],\"mgXgHu\":[\"Aller aux tableaux\"],\"mrhyIB\":[\"Parfait pour les petites équipes en croissance qui souhaitent collaborer.\"],\"mwBdZ2\":[\"Cela entraînera la suppression définitive de toutes les données associées à votre compte.\"],\"mx8+1u\":[\"Membres illimités\"],\"n+xLOH\":[\"Support client\"],\"n1GRql\":[\"Nouvelle étiquette\"],\"n1ekoW\":[\"Se connecter\"],\"n6EWYz\":[\"Utilisé pour signer les charges utiles du webhook à des fins de vérification. Laissez vide pour conserver le secret existant.\"],\"n9V+ps\":[\"Saisissez votre nom\"],\"nKBUeF\":[\"La carte a été dupliquée.\"],\"nOhz3x\":[\"Déconnexion\"],\"nYNMZZ\":[\"Position dans la liste (0 = premier, laisser vide pour la fin)\"],\"nabda1\":[\"Supprimer la carte\"],\"nbfdhU\":[\"Intégrations\"],\"ngBZOd\":[\"Ajouter un commentaire... (tapez « / » pour ouvrir les commandes ou « @ » pour mentionner)\"],\"nhMhRr\":[\"Merci pour votre retour !\"],\"njJFtc\":[\"Supprimer le commentaire\"],\"nk7caK\":[\"Connecter Trello\"],\"nol/Fb\":[\"Comment inviter des membres de l'équipe ?\"],\"notwF1\":[\"Le nom du modèle ne peut pas dépasser 100 caractères\"],\"nq7q3Z\":[\"Le nom de la clé API ne peut pas dépasser 30 caractères\"],\"nqdIhs\":[\"Modèles de tableaux personnalisés\"],\"nryrgW\":[\"Toutes les permissions personnalisées des membres ont été réinitialisées aux valeurs par défaut de leur rôle.\"],\"o+JCfN\":[\"Utilisé par des équipes dynamiques<0/>partout dans le monde\"],\"o4e/70\":[\"Sélectionnez au moins un événement\"],\"o4sQAg\":[\"Échec de la création du webhook\"],\"o7J4JM\":[\"Filtrer\"],\"o8adVG\":[\"Téléchargements de fichiers de 10 Mo\"],\"o9WLwO\":[\"Impossible de mettre à jour la carte\"],\"oVBq1w\":[\"par utilisateur/mois\"],\"oW13KZ\":[\"Commencez gratuitement dès aujourd'hui\"],\"odFCYX\":[\"Invitation invalide\"],\"okpxfB\":[\"Créer une nouvelle clé\"],\"onllUU\":[\"Mark all as read\"],\"oyRjD/\":[\"Forfait Pro\"],\"p/hk9N\":[\"Vous avez été connecté avec succès.\"],\"pBsoKL\":[\"Ajouter aux favoris\"],\"pFGfsR\":[\"Découvrez quelques-uns de nos projets open source préférés.\"],\"pFKC6A\":[\"Nom de la clé API\"],\"pL78ec\":[\"Ajouté aux favoris\"],\"pM1sn/\":[\"New notification\"],\"pVctI7\":[\"Option de déploiement sur site\"],\"pXVFJy\":[\"Peut supprimer des tableaux\"],\"pa9o5D\":[\"Recadrer votre avatar\"],\"pfa8F0\":[\"Nom d'affichage\"],\"pmUArF\":[\"Espace de travail\"],\"pnrmSP\":[\"Nouvelle carte\"],\"ppaRWv\":[\"Auto-hébergement\"],\"pvnfJD\":[\"Sombre\"],\"q+lt9D\":[\"Erreur lors de la suppression de l'étiquette\"],\"q3il6U\":[\"Taille de police\"],\"qPP4lD\":[\"Inviter des membres nécessite un forfait Team. Vous serez redirigé pour mettre à niveau votre espace de travail.\"],\"qQXocp\":[\"Peut gérer les paramètres de l'espace de travail\"],\"qaS+1/\":[\"Idéal pour les équipes qui veulent évoluer sans limites\"],\"qfUS/w\":[\"Amis open source\"],\"qkjvgj\":[\"Votre espace de travail a été supprimé.\"],\"qlAIQ1\":[\"À distance\"],\"qtE5nt\":[\"Ajouter un élément...\"],\"qzdST2\":[\"Visibilité du tableau\"],\"r6BgwX\":[\"Le mot de passe est requis pour se connecter.\"],\"rD6UIt\":[\"Commencer sur le cloud\"],\"rF8SEQ\":[\"Modifier le commentaire\"],\"rQRXo8\":[\"Saisissez un nouveau secret pour mettre à jour\"],\"rQXTmd\":[\"URL de la carte copiée dans le presse-papiers\"],\"rRM7r0\":[\"Importez vos tableaux Trello et démarrez rapidement.\"],\"rYUZIe\":[\"Sélectionner la source\"],\"raHesj\":[\"Vous avez été désabonné !\"],\"rarRW/\":[\"Erreur lors de l'invitation du membre\"],\"ri1hHe\":[\"Échéance le mois prochain\"],\"rmN315\":[\"Amusant\"],\"rs7L54\":[\"a ajouté un membre à la carte\"],\"rtbVvN\":[\"Peut modifier des listes\"],\"s+MGs7\":[\"Ressources\"],\"s6iE/c\":[\"L'inscription est actuellement désactivée. Veuillez réessayer plus tard.\"],\"sBhOFG\":[\"Gestion de tâches visuelle et simple qui fonctionne tout simplement. Glissez-déposez des cartes, collaborez avec votre équipe et accomplissez davantage.\"],\"sDLCvT\":[\"Connectez vos outils préférés pour optimiser votre flux de travail.\"],\"sDuhfK\":[\"Offre de lancement : places illimitées pour seulement 29 $/mois avec Pro\"],\"sU2uWc\":[\"Carte dupliquée\"],\"sUZo7y\":[\"S'inscrire | kan.bn\"],\"sVBn4K\":[\"Erreur lors de la mise à jour du nom d'affichage\"],\"sY2lzr\":[\"Aucune URL de téléchargement disponible pour cette pièce jointe.\"],\"sbNNyi\":[\"Nouveau webhook\"],\"snMaH4\":[\"Supprimer le webhook\"],\"t+R8+P\":[\"Exécution\"],\"t/YqKh\":[\"Supprimer\"],\"t0dTPm\":[\"Configurez des webhooks pour recevoir des notifications lorsque des cartes sont créées, mises à jour, déplacées ou supprimées.\"],\"t2nDzl\":[\"Consultez et gérez votre facturation et votre abonnement.\"],\"t6FvJH\":[\"Peut ajouter des commentaires\"],\"tGwwnq\":[\"a mis à jour la description\"],\"tHcbLF\":[\"Peut modifier des tableaux\"],\"tIdipJ\":[\"Modifier l'URL du tableau\"],\"tMYIu7\":[\"Journaux d'activité\"],\"tOZp9v\":[\"Rôles utilisateur et permissions configurables\"],\"tTbref\":[\"Le mot de passe est requis pour s'inscrire.\"],\"tYN21H\":[\"L'utilisateur est déjà membre de cet espace de travail\"],\"tbNcu4\":[\"Tableau désarchivé\"],\"tca56/\":[\"Votre fichier a été téléchargé avec succès.\"],\"tfDRzk\":[\"Enregistrer\"],\"tlhgDC\":[\"Aucun tableau archivé\"],\"tmlJN1\":[\"Veuillez saisir une URL YouTube valide\"],\"tmpW+w\":[\"Supprimer le tableau\"],\"tst44n\":[\"Événements\"],\"tyHiOa\":[\"Veuillez réessayer plus tard ou contacter le support client.\"],\"u2+JIh\":[\"Les URL personnalisées nécessitent une mise à niveau vers un forfait Pro\"],\"u8JHrO\":[\"Effacer les filtres\"],\"uAQUqI\":[\"Statut\"],\"uEGGDs\":[\"Mon webhook\"],\"uOqaMC\":[\"Vous avez été invité à rejoindre un espace de travail.\"],\"uP4V6I\":[\"Gratuit pour tous\"],\"uXGLuq\":[\"Créer une clé API\"],\"uZg2+w\":[\"Boostez votre espace de travail pour seulement 29 $/mois. Voici ce que vous obtiendrez :\"],\"uck1tz\":[\"a retiré un membre de la carte\"],\"usVytm\":[\"Une fois votre compte supprimé, il n'y a pas de retour en arrière possible. Cette action ne peut pas être annulée.\"],\"uvH2xS\":[\"Copier les membres\"],\"v+Wp++\":[\"Open source\"],\"v1kQyJ\":[\"Webhooks\"],\"v3YoMA\":[\"Senior\"],\"vAR/I8\":[\"Exécuter sur votre propre infrastructure\"],\"vAj6xG\":[\"Vous pouvez auto-héberger en suivant les instructions de notre <0>dépôt.\"],\"vSJd18\":[\"Vidéo\"],\"vUr5JT\":[\"Vous n'avez pas de compte ? <0><1>Inscrivez-vous\"],\"vXIe7J\":[\"Langue\"],\"vXemf6\":[\"Bug\"],\"va/3u1\":[\"Contrôlez qui peut voir et modifier vos tableaux.\"],\"vbskQn\":[\"Le nom de la clé API est requis\"],\"veIDCY\":[\"Commencer l'essai gratuit de 14 jours\"],\"vfRdCZ\":[\"Impossible de réinitialiser les permissions\"],\"vgdzLf\":[\"Créer un autre\"],\"vifyyw\":[\"Mentions légales\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"Les permissions de ce membre ont été réinitialisées aux valeurs par défaut de son rôle.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"facturation mensuelle\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Long terme\"],\"vwGkYB\":[\"Le mot de passe doit contenir au moins 8 caractères\"],\"wIb7Ng\":[\"Développement logiciel\"],\"wK4OTM\":[\"Titre (facultatif)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Veuillez sélectionner un fichier à télécharger.\"],\"wY+6Ye\":[\"Cette URL de tableau est déjà utilisée\"],\"wakO3W\":[\"a ajouté la checklist <0>\",[\"0\"],\"\"],\"wewm3j\":[\"Le nom du tableau ne peut pas dépasser 100 caractères\"],\"wgNoIs\":[\"Tout sélectionner\"],\"wlQNTg\":[\"Membres\"],\"wqkcin\":[\"Peut voir les commentaires\"],\"wqxglO\":[\"Apprentissage\"],\"wruKPE\":[\"Soutenir le développement du projet\"],\"wsy94z\":[\"Idéal pour les grandes organisations avec des besoins avancés\"],\"wtxjAY\":[\"Membres de l'espace de travail\"],\"x0kMO/\":[\"Erreur lors de la mise à jour de l'URL de l'espace de travail\"],\"x8GeCD\":[\"Nom d'affichage mis à jour\"],\"xEbBrW\":[\"Quelle licence utilisez-vous ?\"],\"xGVfLh\":[\"Continuer\"],\"xLTZVf\":[\"Jour de début de semaine\"],\"xMn+V9\":[\"Importation depuis Trello\"],\"xRPn3U\":[\"Saisissez votre adresse e-mail\"],\"xvcYhz\":[\"Effacez toutes les permissions personnalisées des membres afin que tous les membres héritent uniquement des permissions par défaut de leur rôle.\"],\"y3aU20\":[\"Enregistrer les modifications\"],\"yD3ZSw\":[\"Modifiez vos préférences de langue.\"],\"yV7o5I\":[\"Comment importer mes tableaux Trello ?\"],\"yb/fjw\":[\"Approbation\"],\"yhLUU8\":[\"Erreur de connexion à GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Importer le projet (1)\"],\"other\":[\"Importer les projets (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Fermer\"],\"zC8Whw\":[\"Commencez en créant une nouvelle liste\"],\"zERArS\":[\"a mis à jour le titre en <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Créer un lien d'invitation\"],\"zMlxCA\":[\"1 utilisateur\"],\"zMquA7\":[\"Choisir un forfait\"],\"zQPhSa\":[\"Convertir en lien\"],\"zQX5Dj\":[\"Nom de la liste\"],\"zYRVNp\":[\"Sélectionner une liste\"],\"zkWmBh\":[\"Annuel\"],\"zl1b97\":[\"Impossible de créer la carte\"],\"zoEbXq\":[\"Peut voir les cartes\"],\"zt/6cS\":[\"Idéal pour les petites équipes qui souhaitent collaborer et avancer plus rapidement ensemble.\"],\"zto8aj\":[\"Trello déconnecté\"],\"zwBp5t\":[\"Privé\"],\"zwTiVn\":[\"a retiré une pièce jointe <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"En savoir plus\"],\"zxKs+y\":[\"Échéance demain\"],\"zzDlyQ\":[\"Succès\"]}")as Messages; \ No newline at end of file diff --git a/apps/web/src/locales/it/messages.json b/apps/web/src/locales/it/messages.json index 72be95036..d94600e1f 100644 --- a/apps/web/src/locales/it/messages.json +++ b/apps/web/src/locales/it/messages.json @@ -3,23 +3,40 @@ "message": " (edited)", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 153]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 153 + ] + ], "translation": " (modificato)" }, "lGjicL": { "message": ", or see our", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 102]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 102 + ] + ], "translation": ", oppure consulta il nostro" }, "J/hVSQ": { "message": "{0}", "placeholders": { - "0": ["isTemplate ? \"Templates\" : \"Boards\""] + "0": [ + "isTemplate ? \"Templates\" : \"Boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/index.tsx", 53]], + "origin": [ + [ + "src/views/boards/index.tsx", + 53 + ] + ], "translation": "{0}" }, "JArWcF": { @@ -29,74 +46,146 @@ "card?.title ?? t`Card`", "isTemplate ? \"Templates\" : \"Boards\"" ], - "1": ["board?.name ?? t`Board`", "workspace.name ?? t`Workspace`"] + "1": [ + "board?.name ?? t`Board`", + "workspace.name ?? t`Workspace`" + ] }, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 48], - ["src/views/card/index.tsx", 317] + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/card/index.tsx", + 364 + ] ], "translation": "{0} | {1}" }, "mU+M00": { "message": "{0} has been added to your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 56]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 56 + ] + ], "translation": "{0} è stato aggiunto ai tuoi preferiti." }, "bDI6VI": { "message": "{0} has been removed from your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 57]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 57 + ] + ], "translation": "{0} è stato rimosso dai tuoi preferiti." }, "CJukzS": { "message": "{0} labels", "placeholders": { - "0": ["labelPublicIds.length"] + "0": [ + "labelPublicIds.length" + ] }, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 455]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 455 + ] + ], "translation": "{0} etichette" }, "9x4DAL": { "message": "{0} not found", "placeholders": { - "0": ["isTemplate ? \"Template\" : \"Board\""] + "0": [ + "isTemplate ? \"Template\" : \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/index.tsx", 557]], + "origin": [ + [ + "src/views/board/index.tsx", + 561 + ] + ], "translation": "{0} non trovato" }, "0xWkkH": { "message": "{boardCount, plural, one {Import board (1)} other {Import boards ({boardCount})}}", "placeholders": { - "boardCount": ["boardCount"] + "boardCount": [ + "boardCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 489]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 489 + ] + ], "translation": "{boardCount, plural, one {Importa bacheca (1)} other {Importa bacheche ({boardCount})}}" }, + "JBaoDB": { + "message": "{overflow} more viewers", + "placeholders": { + "overflow": [ + "overflow" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 70 + ] + ], + "translation": "" + }, "yndBF+": { "message": "{projectCount, plural, one {Import project (1)} other {Import projects ({projectCount})}}", "placeholders": { - "projectCount": ["projectCount"] + "projectCount": [ + "projectCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 341]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 341 + ] + ], "translation": "{projectCount, plural, one {Importa progetto (1)} other {Importa progetti ({projectCount})}}" }, "9lFfqv": { "message": "/month", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 207]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 207 + ] + ], "translation": "/mese" }, "be30i9": { @@ -104,8 +193,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 30], - ["src/views/pricing/components/PricingTiers.tsx", 30] + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ] ], "translation": "$0" }, @@ -114,8 +209,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 158], - ["src/views/members/components/InviteMemberForm.tsx", 170] + [ + "src/views/members/components/InviteMemberForm.tsx", + 158 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] ], "translation": "$10/mese" }, @@ -123,7 +224,12 @@ "message": "$8/month", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 170]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] + ], "translation": "$8/mese" }, "zMlxCA": { @@ -131,9 +237,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 82], - ["src/views/pricing/components/Pricing.tsx", 36], - ["src/views/pricing/components/PricingTiers.tsx", 35] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 82 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 36 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 35 + ] ], "translation": "1 utente" }, @@ -141,7 +256,12 @@ "message": "10mb file uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 90]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 90 + ] + ], "translation": "Caricamento file da 10 MB" }, "gkxGkF": { @@ -149,9 +269,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 66], - ["src/views/pricing/components/PricingTiers.tsx", 88], - ["src/views/pricing/components/PricingTiers.tsx", 263] + [ + "src/views/pricing/components/PricingTiers.tsx", + 66 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 88 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 263 + ] ], "translation": "Prova gratuita di 14 giorni · Cambia piano o annulla in qualsiasi momento" }, @@ -159,21 +288,48 @@ "message": "404 - Page Not Found | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 11]], + "origin": [ + [ + "src/pages/404.tsx", + 11 + ] + ], "translation": "404 - Pagina non trovata | kan.bn" }, + "Ws1I0u": { + "message": "A card was updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 54 + ] + ], + "translation": "" + }, "/rn4RE": { "message": "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 71]], + "origin": [ + [ + "src/views/home/index.tsx", + 71 + ] + ], "translation": "Un'app kanban potente e flessibile che ti aiuta a organizzare il lavoro, monitorare i progressi e ottenere risultati, tutto in un unico posto." }, "AeXO77": { "message": "Account", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 41]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 41 + ] + ], "translation": "Account" }, "TKFUnX": { @@ -181,7 +337,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 27 + ] ], "translation": "Account eliminato" }, @@ -190,7 +349,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 283] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 283 + ] ], "translation": "Account manager" }, @@ -198,7 +360,12 @@ "message": "Actions", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 56]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 56 + ] + ], "translation": "Azioni" }, "F6pfE9": { @@ -206,9 +373,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 26], - ["src/views/settings/components/NewWebhookModal.tsx", 293], - ["src/views/settings/components/WebhookList.tsx", 106] + [ + "src/views/boards/index.tsx", + 26 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 293 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] ], "translation": "Attivo" }, @@ -217,8 +393,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 455], - ["src/views/public/board/CardModal.tsx", 200] + [ + "src/views/card/index.tsx", + 502 + ], + [ + "src/views/public/board/CardModal.tsx", + 200 + ] ], "translation": "Attività" }, @@ -227,7 +409,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 148] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 148 + ] ], "translation": "Registro attività" }, @@ -235,35 +420,60 @@ "message": "Activity logs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 110]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 110 + ] + ], "translation": "Registri attività" }, "UGCIzB": { "message": "Add / edit label", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 50]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 50 + ] + ], "translation": "Aggiungi / modifica etichetta" }, "B3xxao": { "message": "Add a card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 136]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 136 + ] + ], "translation": "Aggiungi una card" }, "qtE5nt": { "message": "Add an item...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 141]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 141 + ] + ], "translation": "Aggiungi un elemento..." }, "Gxxi5J": { "message": "Add checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 65]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 65 + ] + ], "translation": "Aggiungi checklist" }, "ngBZOd": { @@ -271,8 +481,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/Comment.tsx", 185], - ["src/views/card/components/NewCommentForm.tsx", 68] + [ + "src/views/card/components/Comment.tsx", + 185 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 68 + ] ], "translation": "Aggiungi commento... (digita '/' per aprire i comandi o '@' per menzionare)" }, @@ -280,14 +496,24 @@ "message": "Add description... (type '/' to open commands or '@' to mention)", "placeholders": {}, "comments": [], - "origin": [["src/components/Editor.tsx", 482]], + "origin": [ + [ + "src/components/Editor.tsx", + 482 + ] + ], "translation": "Aggiungi descrizione... (digita '/' per aprire i comandi o '@' per menzionare)" }, "abUZlY": { "message": "Add details...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 189 + ] + ], "translation": "Aggiungi dettagli..." }, "lyqwgn": { @@ -295,8 +521,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/LabelSelector.tsx", 114], - ["src/views/card/components/LabelSelector.tsx", 119] + [ + "src/views/card/components/LabelSelector.tsx", + 114 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 119 + ] ], "translation": "Aggiungi etichetta" }, @@ -305,8 +537,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 135], - ["src/views/members/components/InviteMemberForm.tsx", 257] + [ + "src/views/card/components/MemberSelector.tsx", + 135 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 257 + ] ], "translation": "Aggiungi membro" }, @@ -314,126 +552,222 @@ "message": "Add to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 122]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 122 + ] + ], "translation": "Aggiungi ai preferiti" }, "cWXW+7": { "message": "Add webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 36 + ] + ], "translation": "Aggiungi webhook" }, "bmXKoX": { "message": "added {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 102]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 102 + ] + ], "translation": "ha aggiunto {0} etichette: <0>{labelList}" }, "h4VV67": { "message": "added a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 132]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 132 + ] + ], "translation": "ha aggiunto una checklist" }, "O83K21": { "message": "added a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 135]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 135 + ] + ], "translation": "ha aggiunto un elemento della checklist" }, "T21jY/": { "message": "added a label to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 128]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 128 + ] + ], "translation": "ha aggiunto un'etichetta alla card" }, "rs7L54": { "message": "added a member to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 130]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 130 + ] + ], "translation": "ha aggiunto un membro alla card" }, "5y6qY8": { "message": "added an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 140]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 140 + ] + ], "translation": "ha aggiunto un allegato" }, "CujNX4": { "message": "added an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 278]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 278 + ] + ], "translation": "ha aggiunto un allegato <0>{0}" }, "wakO3W": { "message": "added checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 208]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 208 + ] + ], "translation": "ha aggiunto la checklist <0>{0}" }, "E0t3jO": { "message": "added checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 232]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 232 + ] + ], "translation": "ha aggiunto l'elemento della checklist <0>{0}" }, "b5FKyH": { "message": "added label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 192]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 192 + ] + ], "translation": "ha aggiunto l'etichetta <0>{0}" }, "pL78ec": { "message": "Added to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 53]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 53 + ] + ], "translation": "Aggiunto ai preferiti" }, "14Xi3Z": { "message": "Adding a new member will cost an additional {price} ({billingType}) per seat.", "placeholders": { - "price": ["price"], - "billingType": ["billingType"] + "price": [ + "price" + ], + "billingType": [ + "billingType" + ] }, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 327]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 327 + ] + ], "translation": "L'aggiunta di un nuovo membro costerà {price} aggiuntivi ({billingType}) per postazione." }, "D7/JvJ": { "message": "Adjust the square crop to fit your avatar.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 256]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 256 + ] + ], "translation": "Regola il ritaglio quadrato per adattarlo al tuo avatar." }, "U3pytU": { "message": "Admin", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 201]], + "origin": [ + [ + "src/views/members/index.tsx", + 201 + ] + ], "translation": "Admin" }, "3pIq39": { @@ -441,19 +775,39 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 264], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 265], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 266], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 267], - ["src/views/pricing/components/Pricing.tsx", 55] - ], - "translation": "Ruoli admin" - }, + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 264 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 265 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 266 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 267 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 55 + ] + ], + "translation": "Ruoli admin" + }, "Kec+/t": { "message": "Advanced admin controls", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 103]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 103 + ] + ], "translation": "Controlli admin avanzati" }, "/jd3aj": { @@ -461,7 +815,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 268] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 268 + ] ], "translation": "Ruoli admin avanzati" }, @@ -469,42 +826,72 @@ "message": "Advanced security, compliance, and dedicated support for large organizations.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 97 + ] + ], "translation": "Sicurezza avanzata, conformità e supporto dedicato per grandi organizzazioni." }, "h2ztFt": { "message": "All Free features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 56]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 56 + ] + ], "translation": "Tutte le funzionalità Free +" }, "nryrgW": { "message": "All member permission overrides have been reset to their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 26 + ] + ], "translation": "Tutte le sostituzioni dei permessi dei membri sono state ripristinate ai valori predefiniti del loro ruolo." }, "ZAs2NN": { "message": "All Pro features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 101]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 101 + ] + ], "translation": "Tutte le funzionalità Pro +" }, "UQbwrz": { "message": "All systems operational", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 18]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 18 + ] + ], "translation": "Tutti i sistemi operativi" }, "EII/X8": { "message": "All Teams features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 79]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 79 + ] + ], "translation": "Tutte le funzionalità Teams +" }, "Z3krJD": { @@ -523,28 +910,48 @@ "message": "Already have an account? <0><1>Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 90]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 90 + ] + ], "translation": "Hai già un account? <0><1>Accedi" }, "j1+HPc": { "message": "An error occurred while connecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 107]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 107 + ] + ], "translation": "Si è verificato un errore durante la connessione del tuo account GitHub." }, "Dz63YI": { "message": "An error occurred while disconnecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 130]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 130 + ] + ], "translation": "Si è verificato un errore durante la disconnessione del tuo account GitHub." }, "WmPhYW": { "message": "An error occurred while disconnecting your Trello account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 87]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 87 + ] + ], "translation": "Si è verificato un errore durante la disconnessione del tuo account Trello." }, "ZXSPJt": { @@ -552,7 +959,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 90] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 90 + ] ], "translation": "Si è verificato un errore imprevisto. Riprova più tardi." }, @@ -560,14 +970,24 @@ "message": "Annual", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 63]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 63 + ] + ], "translation": "Annuale" }, "3bqt9U": { "message": "Anyone with this link can join your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 311]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 311 + ] + ], "translation": "Chiunque abbia questo link può unirsi al tuo workspace" }, "OZtEcz": { @@ -575,8 +995,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 65], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 237] + [ + "src/components/SettingsLayout.tsx", + 65 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 237 + ] ], "translation": "API" }, @@ -584,119 +1010,196 @@ "message": "API key created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 91]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 91 + ] + ], "translation": "Chiave API creata" }, "pFKC6A": { "message": "API key name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 161]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 161 + ] + ], "translation": "Nome chiave API" }, "nq7q3Z": { "message": "API key name cannot exceed 30 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 25 + ] + ], "translation": "Il nome della chiave API non può superare i 30 caratteri" }, "vbskQn": { "message": "API key name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 24 + ] + ], "translation": "Il nome della chiave API è obbligatorio" }, "5h8ooz": { "message": "API keys", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 22]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 22 + ] + ], "translation": "Chiavi API" }, "j2+d/o": { "message": "API Reference", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 31]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 31 + ] + ], "translation": "Riferimento API" }, "bJZm1W": { "message": "Applicants", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 75]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 75 + ] + ], "translation": "Candidati" }, "yb/fjw": { "message": "Approval", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 46]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 46 + ] + ], "translation": "Approvazione" }, "aKJHG+": { "message": "Archive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Archivia bacheca" }, "TdfEV7": { "message": "Archived", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 27]], + "origin": [ + [ + "src/views/boards/index.tsx", + 27 + ] + ], "translation": "Archiviato" }, "lo8xBK": { "message": "Are you sure want to remove {entityLabel}?", "placeholders": { - "entityLabel": ["entityLabel"] + "entityLabel": [ + "entityLabel" + ] }, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 47] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 47 + ] ], "translation": "Sei sicuro di voler rimuovere {entityLabel}?" }, "Ypy5pZ": { "message": "Are you sure you want to delete the webhook \"{webhookName}\"? This action cannot be undone.", "placeholders": { - "webhookName": ["webhookName"] + "webhookName": [ + "webhookName" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 60 + ] ], "translation": "Sei sicuro di voler eliminare il webhook \"{webhookName}\"? Questa azione non può essere annullata." }, "BhDZlc": { "message": "Are you sure you want to delete the workspace {0}?", "placeholders": { - "0": ["workspace.name"] + "0": [ + "workspace.name" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 62] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 62 + ] ], "translation": "Sei sicuro di voler eliminare il workspace {0}?" }, "DMeWZD": { "message": "Are you sure you want to delete this {0}?", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/DeleteBoardConfirmation.tsx", 36]], + "origin": [ + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 36 + ] + ], "translation": "Sei sicuro di voler eliminare questo {0}?" }, "ZT4Khw": { "message": "Are you sure you want to delete this card?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 75]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 75 + ] + ], "translation": "Sei sicuro di voler eliminare questa card?" }, "Fpci8b": { @@ -704,7 +1207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 56] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 56 + ] ], "translation": "Sei sicuro di voler eliminare questa checklist?" }, @@ -712,14 +1218,24 @@ "message": "Are you sure you want to delete this comment?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 66]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 66 + ] + ], "translation": "Sei sicuro di voler eliminare questo commento?" }, "kECVpo": { "message": "Are you sure you want to delete this label?", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 41]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 41 + ] + ], "translation": "Sei sicuro di voler eliminare questa etichetta?" }, "74F7N/": { @@ -727,17 +1243,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 54] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 54 + ] ], "translation": "Sei sicuro di voler eliminare il tuo account?" }, "PyYD/v": { "message": "assigned <0>{0} to the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 172]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 172 + ] + ], "translation": "ha assegnato <0>{0} alla card" }, "JUce1S": { @@ -745,7 +1271,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 199] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 199 + ] ], "translation": "Assegnatari" }, @@ -753,91 +1282,156 @@ "message": "Attachment uploaded", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 45]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 45 + ] + ], "translation": "Allegato caricato" }, "1rWxEw": { "message": "Awaiting Customer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 59]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 59 + ] + ], "translation": "In attesa del cliente" }, "iH8pgl": { "message": "Back", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 275]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 275 + ] + ], "translation": "Indietro" }, "KNKCTb": { "message": "Backlog", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Backlog" }, "Vt50G1": { "message": "Basic Kanban", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 16]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 16 + ] + ], "translation": "Kanban base" }, "Pat4r8": { "message": "Basic Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 28]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 28 + ] + ], "translation": "Roadmap base" }, "Cd4sTD": { "message": "Best for individuals and solo creators getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 32]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 32 + ] + ], "translation": "Ideale per singoli utenti e creator che iniziano" }, "wsy94z": { "message": "Best for large organizations with advanced needs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 98 + ] + ], "translation": "Ideale per grandi organizzazioni con esigenze avanzate" }, "UoSI+i": { "message": "Best for small and growing teams that need collaboration", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 53]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 53 + ] + ], "translation": "Ideale per piccoli team in crescita che necessitano di collaborazione" }, "zt/6cS": { "message": "Best for small teams who want to collaborate and move faster together.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 86]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 86 + ] + ], "translation": "Ideale per piccoli team che vogliono collaborare e muoversi più velocemente insieme." }, "qaS+1/": { "message": "Best for teams that want to scale without limits", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 76]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 76 + ] + ], "translation": "Ideale per team che vogliono scalare senza limiti" }, "ARvBT/": { "message": "billed annually", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "fatturato annualmente" }, "+VoTOr": { "message": "billed monthly", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "fatturato mensilmente" }, "R+w/Va": { @@ -845,9 +1439,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 58], - ["src/views/boards/components/TemplateBoards.tsx", 68], - ["src/views/settings/BillingSettings.tsx", 39] + [ + "src/components/SettingsLayout.tsx", + 58 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 68 + ], + [ + "src/views/settings/BillingSettings.tsx", + 39 + ] ], "translation": "Fatturazione" }, @@ -855,14 +1458,24 @@ "message": "Billing portal", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 49 + ] + ], "translation": "Portale di fatturazione" }, "4RoY9J": { "message": "Blog Post", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Post del blog" }, "QD8opX": { @@ -870,9 +1483,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/card/index.tsx", 317], - ["src/views/public/board/index.tsx", 125] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/card/index.tsx", + 364 + ], + [ + "src/views/public/board/index.tsx", + 125 + ] ], "translation": "Board" }, @@ -881,8 +1503,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 314], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 85] + [ + "src/components/NewWorkspaceForm.tsx", + 314 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 85 + ] ], "translation": "Analisi della board" }, @@ -890,28 +1518,48 @@ "message": "Board archived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Bacheca archiviata" }, "wewm3j": { "message": "Board name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 23 + ] + ], "translation": "Il nome della board non può superare i 100 caratteri" }, "R1c3Mq": { "message": "Board name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 22 + ] + ], "translation": "Il nome della board è obbligatorio" }, "jwI32v": { "message": "Board not found", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 181]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 181 + ] + ], "translation": "Board non trovata" }, "XNxYxq": { @@ -919,7 +1567,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 116] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 116 + ] ], "translation": "Template di board" }, @@ -927,21 +1578,36 @@ "message": "Board unarchived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Bacheca ripristinata" }, "Xid3K6": { "message": "Board URL can only contain letters, numbers, and hyphens", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 46]], - "translation": "L'URL della board può contenere solo lettere, numeri e trattini" - }, - "gv5kbo": { + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 46 + ] + ], + "translation": "L'URL della board può contenere solo lettere, numeri e trattini" + }, + "gv5kbo": { "message": "Board URL cannot exceed 60 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 44]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 44 + ] + ], "translation": "L'URL della board non può superare i 60 caratteri" }, "8+BY11": { @@ -949,8 +1615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 82], - ["src/views/public/board/index.tsx", 79] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 82 + ], + [ + "src/views/public/board/index.tsx", + 79 + ] ], "translation": "URL della board copiato negli appunti" }, @@ -958,7 +1630,12 @@ "message": "Board URL must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 42]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 42 + ] + ], "translation": "L'URL della board deve contenere almeno 3 caratteri" }, "qzdST2": { @@ -966,8 +1643,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 85], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 132] + [ + "src/views/home/components/Features.tsx", + 85 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 132 + ] ], "translation": "Visibilità della board" }, @@ -975,7 +1658,12 @@ "message": "Board visibility updated", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 49]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 49 + ] + ], "translation": "Visibilità della board aggiornata" }, "8TveY+": { @@ -983,8 +1671,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 99], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 73] + [ + "src/components/SideNavigation.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 73 + ] ], "translation": "Board" }, @@ -992,28 +1686,48 @@ "message": "Boards you archive will appear here.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Le bacheche che archivi appariranno qui." }, "ZDo4HN": { "message": "Brainstorming", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 42]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 42 + ] + ], "translation": "Brainstorming" }, "vXemf6": { "message": "Bug", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 24]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ] + ], "translation": "Bug" }, "/asTmx": { "message": "Bug Report", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 64]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 64 + ] + ], "translation": "Segnalazione bug" }, "t6FvJH": { @@ -1021,8 +1735,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 146], - ["src/views/settings/components/RolePermissions.tsx", 35] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 146 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 35 + ] ], "translation": "Può aggiungere commenti" }, @@ -1031,8 +1751,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 131], - ["src/views/settings/components/RolePermissions.tsx", 20] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 131 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 20 + ] ], "translation": "Può creare board" }, @@ -1041,8 +1767,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 141], - ["src/views/settings/components/RolePermissions.tsx", 30] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 141 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 30 + ] ], "translation": "Può creare card" }, @@ -1051,8 +1783,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 136], - ["src/views/settings/components/RolePermissions.tsx", 25] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 136 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 25 + ] ], "translation": "Può creare liste" }, @@ -1061,8 +1799,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 133], - ["src/views/settings/components/RolePermissions.tsx", 22] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 133 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 22 + ] ], "translation": "Può eliminare board" }, @@ -1071,8 +1815,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 143], - ["src/views/settings/components/RolePermissions.tsx", 32] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 143 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 32 + ] ], "translation": "Può eliminare card" }, @@ -1081,8 +1831,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 148], - ["src/views/settings/components/RolePermissions.tsx", 37] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 148 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 37 + ] ], "translation": "Può eliminare commenti" }, @@ -1091,8 +1847,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 138], - ["src/views/settings/components/RolePermissions.tsx", 27] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 138 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 27 + ] ], "translation": "Può eliminare liste" }, @@ -1101,8 +1863,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 127], - ["src/views/settings/components/RolePermissions.tsx", 16] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 127 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 16 + ] ], "translation": "Può eliminare workspace" }, @@ -1111,8 +1879,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 132], - ["src/views/settings/components/RolePermissions.tsx", 21] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 132 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 21 + ] ], "translation": "Può modificare board" }, @@ -1121,8 +1895,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 142], - ["src/views/settings/components/RolePermissions.tsx", 31] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 142 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 31 + ] ], "translation": "Può modificare card" }, @@ -1131,8 +1911,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 147], - ["src/views/settings/components/RolePermissions.tsx", 36] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 147 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 36 + ] ], "translation": "Può modificare commenti" }, @@ -1141,8 +1927,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 137], - ["src/views/settings/components/RolePermissions.tsx", 26] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 137 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 26 + ] ], "translation": "Può modificare liste" }, @@ -1151,8 +1943,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 152], - ["src/views/settings/components/RolePermissions.tsx", 41] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 152 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 41 + ] ], "translation": "Può modificare ruoli e permessi dei membri" }, @@ -1161,8 +1959,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 126], - ["src/views/settings/components/RolePermissions.tsx", 15] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 126 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 15 + ] ], "translation": "Può modificare workspace" }, @@ -1171,8 +1975,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 151], - ["src/views/settings/components/RolePermissions.tsx", 40] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 151 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 40 + ] ], "translation": "Può invitare membri" }, @@ -1181,8 +1991,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 128], - ["src/views/settings/components/RolePermissions.tsx", 17] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 128 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 17 + ] ], "translation": "Può gestire le impostazioni dello workspace" }, @@ -1191,8 +2007,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 153], - ["src/views/settings/components/RolePermissions.tsx", 42] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 153 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 42 + ] ], "translation": "Può rimuovere membri" }, @@ -1201,8 +2023,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 130], - ["src/views/settings/components/RolePermissions.tsx", 19] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 130 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 19 + ] ], "translation": "Può visualizzare le bacheche" }, @@ -1211,8 +2039,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 140], - ["src/views/settings/components/RolePermissions.tsx", 29] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 140 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 29 + ] ], "translation": "Può visualizzare le card" }, @@ -1221,8 +2055,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 145], - ["src/views/settings/components/RolePermissions.tsx", 34] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 145 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 34 + ] ], "translation": "Può visualizzare i commenti" }, @@ -1231,8 +2071,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 135], - ["src/views/settings/components/RolePermissions.tsx", 24] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 135 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 24 + ] ], "translation": "Può visualizzare le liste" }, @@ -1241,8 +2087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 150], - ["src/views/settings/components/RolePermissions.tsx", 39] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 150 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 39 + ] ], "translation": "Può visualizzare i membri" }, @@ -1251,8 +2103,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 125], - ["src/views/settings/components/RolePermissions.tsx", 14] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 125 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 14 + ] ], "translation": "Può visualizzare lo workspace" }, @@ -1261,26 +2119,74 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 49], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 176], - ["src/views/board/components/CardContextDuplicateModal.tsx", 267], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 44], - ["src/views/card/components/Comment.tsx", 195], - ["src/views/card/components/DeleteCardConfirmation.tsx", 86], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 64], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 77], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 55], - ["src/views/onboarding/select-plan/index.tsx", 209], - ["src/views/settings/components/Avatar.tsx", 287], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 168], + [ + "src/components/DeleteLabelConfirmation.tsx", + 49 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 176 + ], + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 267 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 44 + ], + [ + "src/views/card/components/Comment.tsx", + 195 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 86 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 64 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 77 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 55 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 209 + ], + [ + "src/views/settings/components/Avatar.tsx", + 287 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 168 + ], [ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 40 ], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 88], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 108] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 88 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 66 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 98 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 108 + ] ], "translation": "Annulla" }, @@ -1288,7 +2194,12 @@ "message": "Card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 317]], + "origin": [ + [ + "src/views/card/index.tsx", + 364 + ] + ], "translation": "Card" }, "sU2uWc": { @@ -1296,7 +2207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 67] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 67 + ] ], "translation": "Scheda duplicata" }, @@ -1305,8 +2219,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 363], - ["src/views/card/index.tsx", 400] + [ + "src/views/card/index.tsx", + 410 + ], + [ + "src/views/card/index.tsx", + 447 + ] ], "translation": "Card non trovata" }, @@ -1314,17 +2234,43 @@ "message": "Card title", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 321]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 321 + ] + ], "translation": "Titolo della card" }, + "4630Pc": { + "message": "Card updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 53 + ] + ], + "translation": "" + }, "rQXTmd": { "message": "Card URL copied to clipboard", "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 308], - ["src/views/card/components/Dropdown.tsx", 44], - ["src/views/public/board/CardModal.tsx", 38] + [ + "src/views/board/index.tsx", + 312 + ], + [ + "src/views/card/components/Dropdown.tsx", + 44 + ], + [ + "src/views/public/board/CardModal.tsx", + 38 + ] ], "translation": "URL della card copiato negli appunti" }, @@ -1333,10 +2279,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 88], - ["src/views/settings/AccountSettings.tsx", 98], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 109], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 178] + [ + "src/views/settings/AccountSettings.tsx", + 88 + ], + [ + "src/views/settings/AccountSettings.tsx", + 98 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 109 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 178 + ] ], "translation": "Cambia password" }, @@ -1344,25 +2302,43 @@ "message": "Change the application font size.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 63]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 63 + ] + ], "translation": "Modifica la dimensione del carattere dell'applicazione." }, "yD3ZSw": { "message": "Change your language preferences.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 53 + ] + ], "translation": "Modifica le tue preferenze di lingua." }, "gZxH/p": { "message": "changed the due date to <0>{formattedDate}", "placeholders": { - "formattedDate": ["formattedDate"] + "formattedDate": [ + "formattedDate" + ] }, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 303], - ["src/views/card/components/ActivityList.tsx", 317] + [ + "src/views/card/components/ActivityList.tsx", + 303 + ], + [ + "src/views/card/components/ActivityList.tsx", + 317 + ] ], "translation": "ha modificato la data di scadenza in <0>{formattedDate}" }, @@ -1370,7 +2346,12 @@ "message": "Check out some of our favorite open source projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 61]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 61 + ] + ], "translation": "Dai un'occhiata ad alcuni dei nostri progetti open source preferiti." }, "5IXWmO": { @@ -1378,8 +2359,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 43], - ["src/views/auth/signup/index.tsx", 71] + [ + "src/views/auth/login/index.tsx", + 43 + ], + [ + "src/views/auth/signup/index.tsx", + 71 + ] ], "translation": "Controlla la tua casella di posta" }, @@ -1387,7 +2374,12 @@ "message": "Checklist name", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 119]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 119 + ] + ], "translation": "Nome della checklist" }, "EH8IL3": { @@ -1395,8 +2387,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 108], - ["src/views/pricing/components/PricingTiers.tsx", 39] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 108 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 39 + ] ], "translation": "Checklist" }, @@ -1404,7 +2402,12 @@ "message": "Choose a plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 122]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 122 + ] + ], "translation": "Scegli un piano" }, "VHS0aJ": { @@ -1423,7 +2426,12 @@ "message": "Clear any custom member permissions so that all members only inherit permissions from their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 67]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 67 + ] + ], "translation": "Cancella tutti i permessi personalizzati dei membri in modo che tutti i membri ereditino solo i permessi predefiniti dal loro ruolo." }, "jL82rC": { @@ -1435,7 +2443,10 @@ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 48 ], - ["src/views/settings/PermissionsSettings.tsx", 80] + [ + "src/views/settings/PermissionsSettings.tsx", + 80 + ] ], "translation": "Cancella permessi personalizzati" }, @@ -1443,18 +2454,31 @@ "message": "Clear filters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 227]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 227 + ] + ], "translation": "Cancella filtri" }, "RRn9jf": { "message": "Click on the link we've sent to {magicLinkRecipient} to sign in.", "placeholders": { - "magicLinkRecipient": ["magicLinkRecipient"] + "magicLinkRecipient": [ + "magicLinkRecipient" + ] }, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 48], - ["src/views/auth/signup/index.tsx", 76] + [ + "src/views/auth/login/index.tsx", + 48 + ], + [ + "src/views/auth/signup/index.tsx", + 76 + ] ], "translation": "Clicca sul link che abbiamo inviato a {magicLinkRecipient} per accedere." }, @@ -1463,9 +2487,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 354], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 172], - ["src/views/settings/components/NewApiKeyModal.tsx", 136] + [ + "src/views/card/index.tsx", + 401 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 172 + ], + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 136 + ] ], "translation": "Chiudi" }, @@ -1473,14 +2506,24 @@ "message": "Code Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Revisione del codice" }, "EvArWh": { "message": "Collaborate seamlessly with your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 91 + ] + ], "translation": "Collabora senza problemi con il tuo team." }, "dtQIWT": { @@ -1488,7 +2531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 309] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 309 + ] ], "translation": "Collaborazione" }, @@ -1497,9 +2543,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 317], - ["src/views/home/components/Features.tsx", 67], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 88] + [ + "src/components/NewWorkspaceForm.tsx", + 317 + ], + [ + "src/views/home/components/Features.tsx", + 67 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 88 + ] ], "translation": "Prossimamente" }, @@ -1508,8 +2563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 105], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 156] + [ + "src/views/home/components/Features.tsx", + 105 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 156 + ] ], "translation": "Commenti" }, @@ -1517,65 +2578,112 @@ "message": "Company", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 95 + ] + ], "translation": "Azienda" }, "bD8I7O": { "message": "Complete", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 94]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 94 + ] + ], "translation": "Completa" }, "cAgBMh": { "message": "Complete control and ownership:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 70]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 70 + ] + ], "translation": "Controllo e proprietà completi:" }, "Lt+ZP3": { "message": "completed a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 137]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 137 + ] + ], "translation": "ha completato un elemento della checklist" }, "29sSki": { "message": "completed checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 249]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 249 + ] + ], "translation": "ha completato l'elemento della checklist <0>{0}" }, "tOZp9v": { "message": "Configurable user roles and permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 82]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 82 + ] + ], "translation": "Ruoli utente e permessi configurabili" }, "t0dTPm": { "message": "Configure webhooks to receive notifications when cards are created, updated, moved, or deleted.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 31]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 31 + ] + ], "translation": "Configura i webhook per ricevere notifiche quando le schede vengono create, aggiornate, spostate o eliminate." }, "/f3t6v": { "message": "Configure which actions are allowed for each workspace role. These permissions apply to all members with that role.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 56]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 56 + ] + ], "translation": "Configura quali azioni sono consentite per ogni ruolo del workspace. Questi permessi si applicano a tutti i membri con quel ruolo." }, "86XI28": { "message": "Confirm your email preferences:", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 81]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 81 + ] + ], "translation": "Conferma le tue preferenze email:" }, "479pdJ": { @@ -1583,7 +2691,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 150] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 150 + ] ], "translation": "Conferma la tua nuova password" }, @@ -1591,42 +2702,72 @@ "message": "Connect", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Connetti" }, "3jod3l": { "message": "Connect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 212]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 212 + ] + ], "translation": "Connetti GitHub" }, "nk7caK": { "message": "Connect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 162]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 162 + ] + ], "translation": "Connetti Trello" }, "sDLCvT": { "message": "Connect your favorite tools to streamline your workflow.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 122]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 122 + ] + ], "translation": "Connetti i tuoi strumenti preferiti per semplificare il tuo flusso di lavoro." }, "MCIXdZ": { "message": "Connect your GitHub account to import projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 191]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 191 + ] + ], "translation": "Connetti il tuo account GitHub per importare progetti." }, "5eZwRW": { "message": "Connect your Trello account to import boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 149]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 149 + ] + ], "translation": "Connetti il tuo account Trello per importare le bacheche." }, "jfC/xh": { @@ -1634,8 +2775,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 38], - ["src/views/home/components/Header.tsx", 42] + [ + "src/views/home/components/Footer.tsx", + 38 + ], + [ + "src/views/home/components/Header.tsx", + 42 + ] ], "translation": "Contatti" }, @@ -1643,7 +2790,12 @@ "message": "Contact Sales", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 95]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 95 + ] + ], "translation": "Contatta il reparto vendite" }, "Bhgd0l": { @@ -1651,9 +2803,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 96], - ["src/views/pricing/components/PricingTiers.tsx", 96] + [ + "src/components/FeedbackModal.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ] ], "translation": "Contattaci" }, @@ -1661,7 +2822,12 @@ "message": "Content Creation", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 40]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 40 + ] + ], "translation": "Creazione di contenuti" }, "xGVfLh": { @@ -1669,8 +2835,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 212], - ["src/views/onboarding/workspace-details/index.tsx", 291] + [ + "src/views/onboarding/select-plan/index.tsx", + 212 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 291 + ] ], "translation": "Continua" }, @@ -1678,44 +2850,76 @@ "message": "Continue with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "Continua con " }, "gkzAEM": { "message": "Continue with {0}", "placeholders": { - "0": ["key === \"oidc\" ? oidcProviderName : provider.name"] + "0": [ + "key === \"oidc\" ? oidcProviderName : provider.name" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 355]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 355 + ] + ], "translation": "Continua con {0}" }, "va/3u1": { "message": "Control who can view and edit your boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 86 + ] + ], "translation": "Controlla chi può visualizzare e modificare le tue board." }, "zQPhSa": { "message": "Convert to link", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 47]], + "origin": [ + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 47 + ] + ], "translation": "Converti in link" }, "5RkSzq": { "message": "Copy board link", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugButton.tsx", 87]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 87 + ] + ], "translation": "Copia link board" }, "F0YmUY": { "message": "Copy card link", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 58]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 58 + ] + ], "translation": "Copia link card" }, "0utuU6": { @@ -1723,7 +2927,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 257] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 257 + ] ], "translation": "Copia checklist" }, @@ -1732,7 +2939,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 221] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 221 + ] ], "translation": "Copia etichette" }, @@ -1740,7 +2950,12 @@ "message": "Copy link to card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 62]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 62 + ] + ], "translation": "Copia link alla scheda" }, "uvH2xS": { @@ -1748,7 +2963,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 239] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 239 + ] ], "translation": "Copia membri" }, @@ -1757,17 +2975,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 305] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 305 + ] ], "translation": "Funzionalità principali" }, "b9XOHo": { "message": "Create {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 166]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 166 + ] + ], "translation": "Crea {0}" }, "vgdzLf": { @@ -1775,9 +3003,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 213], - ["src/views/board/components/NewCardForm.tsx", 520], - ["src/views/board/components/NewListForm.tsx", 141] + [ + "src/components/LabelForm.tsx", + 213 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 520 + ], + [ + "src/views/board/components/NewListForm.tsx", + 141 + ] ], "translation": "Crea un altro" }, @@ -1785,53 +3022,91 @@ "message": "Create API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 175]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 175 + ] + ], "translation": "Crea chiave API" }, "dsLT3m": { "message": "Create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 530]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 530 + ] + ], "translation": "Crea card" }, "d33Usy": { "message": "Create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 135]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 135 + ] + ], "translation": "Crea checklist" }, "zKY5xi": { "message": "Create invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 349]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 349 + ] + ], "translation": "Crea link di invito" }, "QtACvI": { "message": "Create label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Crea etichetta" }, "XTKtey": { "message": "Create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 153]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 153 + ] + ], "translation": "Crea lista" }, "VKoDQD": { "message": "Create new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], "origin": [ - ["src/views/boards/components/BoardsList.tsx", 80], - ["src/views/boards/index.tsx", 41] + [ + "src/views/boards/components/BoardsList.tsx", + 80 + ], + [ + "src/views/boards/index.tsx", + 41 + ] ], "translation": "Crea nuovo {0}" }, @@ -1839,7 +3114,12 @@ "message": "Create new key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 30 + ] + ], "translation": "Crea nuova chiave" }, "0+0/3e": { @@ -1847,8 +3127,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewCardForm.tsx", 417], - ["src/views/card/components/LabelSelector.tsx", 101] + [ + "src/views/board/components/NewCardForm.tsx", + 417 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 101 + ] ], "translation": "Crea nuova etichetta" }, @@ -1857,8 +3143,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 92], - ["src/views/board/index.tsx", 671] + [ + "src/views/board/index.tsx", + 94 + ], + [ + "src/views/board/index.tsx", + 676 + ] ], "translation": "Crea nuova lista" }, @@ -1866,14 +3158,24 @@ "message": "Create template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 132]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 132 + ] + ], "translation": "Crea template" }, "SiPp29": { "message": "Create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Crea webhook" }, "FdtSNC": { @@ -1881,8 +3183,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 352], - ["src/components/WorkspaceMenu.tsx", 160] + [ + "src/components/NewWorkspaceForm.tsx", + 352 + ], + [ + "src/components/WorkspaceMenu.tsx", + 160 + ] ], "translation": "Crea workspace" }, @@ -1890,14 +3198,24 @@ "message": "Created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 236]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 236 + ] + ], "translation": "Creato" }, "f8lDFq": { "message": "created the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 124]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 124 + ] + ], "translation": "ha creato la card" }, "J5nbej": { @@ -1905,9 +3223,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Critico" }, @@ -1915,7 +3242,12 @@ "message": "Crop your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 253]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 253 + ] + ], "translation": "Ritaglia il tuo avatar" }, "D3C4Yx": { @@ -1923,7 +3255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 19] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 19 + ] ], "translation": "La password attuale è obbligatoria" }, @@ -1931,7 +3266,12 @@ "message": "Custom board templates", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 38 + ] + ], "translation": "Template board personalizzati" }, "A42Dqn": { @@ -1939,8 +3279,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 172], - ["src/views/pricing/components/PricingTiers.tsx", 83] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 172 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 83 + ] ], "translation": "Branding personalizzato" }, @@ -1948,28 +3294,48 @@ "message": "Custom domain", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 74]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 74 + ] + ], "translation": "Dominio personalizzato" }, "2M84k3": { "message": "Custom permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 64]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 64 + ] + ], "translation": "Permessi personalizzati" }, "UirJfL": { "message": "Custom SLA", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 105]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 105 + ] + ], "translation": "SLA personalizzato" }, "u2+JIh": { "message": "Custom URLs require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 283]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 283 + ] + ], "translation": "Gli URL personalizzati richiedono l'upgrade a un piano Pro" }, "7RpHg/": { @@ -1977,8 +3343,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 100], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 101] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 101 + ] ], "translation": "Username personalizzato" }, @@ -1986,7 +3358,12 @@ "message": "Custom usernames require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 220]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 220 + ] + ], "translation": "I nomi utente personalizzati richiedono l'aggiornamento a un piano Pro" }, "j9IZZ0": { @@ -1994,8 +3371,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 307], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 78] + [ + "src/components/NewWorkspaceForm.tsx", + 307 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 78 + ] ], "translation": "URL workspace personalizzato" }, @@ -2003,35 +3386,60 @@ "message": "Custom workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 81]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 81 + ] + ], "translation": "Username workspace personalizzato" }, "n+xLOH": { "message": "Customer Support", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 54]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 54 + ] + ], "translation": "Assistenza clienti" }, "pvnfJD": { "message": "Dark", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 158]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 158 + ] + ], "translation": "Scuro" }, "cp1rsD": { "message": "Deactivate invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 348]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 348 + ] + ], "translation": "Disattiva link di invito" }, "bKzM8L": { "message": "Dedicated account manager", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 104]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 104 + ] + ], "translation": "Account manager dedicato" }, "P8Cunr": { @@ -2039,8 +3447,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 98], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 99] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 98 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 99 + ] ], "translation": "Username predefinito" }, @@ -2049,15 +3463,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 51], - ["src/components/LabelForm.tsx", 228], - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 52], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 47], - ["src/views/card/components/DeleteCardConfirmation.tsx", 92], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 67], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 83], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 73], - ["src/views/settings/components/WebhookList.tsx", 140] + [ + "src/components/DeleteLabelConfirmation.tsx", + 51 + ], + [ + "src/components/LabelForm.tsx", + 228 + ], + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 52 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 47 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 92 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 67 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 83 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 73 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 140 + ] ], "translation": "Elimina" }, @@ -2066,9 +3507,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 70], - ["src/views/settings/AccountSettings.tsx", 80], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 96] + [ + "src/views/settings/AccountSettings.tsx", + 70 + ], + [ + "src/views/settings/AccountSettings.tsx", + 80 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 96 + ] ], "translation": "Elimina account" }, @@ -2076,7 +3526,12 @@ "message": "Delete board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Elimina board" }, "nabda1": { @@ -2084,8 +3539,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMenu.tsx", 74], - ["src/views/card/components/Dropdown.tsx", 76] + [ + "src/views/board/components/CardContextMenu.tsx", + 74 + ], + [ + "src/views/card/components/Dropdown.tsx", + 76 + ] ], "translation": "Elimina card" }, @@ -2093,21 +3554,36 @@ "message": "Delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 120]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 120 + ] + ], "translation": "Elimina commento" }, "lYT7pQ": { "message": "Delete list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 147]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 147 + ] + ], "translation": "Elimina lista" }, "DFjdv0": { "message": "Delete template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Elimina template" }, "snMaH4": { @@ -2115,7 +3591,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 46] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 46 + ] ], "translation": "Elimina webhook" }, @@ -2124,9 +3603,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 106], - ["src/views/settings/WorkspaceSettings.tsx", 125], - ["src/views/settings/WorkspaceSettings.tsx", 136] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 106 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 125 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 136 + ] ], "translation": "Elimina workspace" }, @@ -2134,116 +3622,200 @@ "message": "deleted a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 134]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 134 + ] + ], "translation": "ha eliminato una checklist" }, "W5r8Qh": { "message": "deleted a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 139]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 139 + ] + ], "translation": "ha eliminato un elemento della checklist" }, "BMkVQ3": { "message": "deleted checklist <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 224]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 224 + ] + ], "translation": "ha eliminato la checklist <0>{0}" }, "CHZ1jC": { "message": "deleted checklist item <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 267]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 267 + ] + ], "translation": "ha eliminato l'elemento della checklist <0>{0}" }, "f8fH8W": { "message": "Design", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 45]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 45 + ] + ], "translation": "Design" }, "Odv3J6": { "message": "Disconnect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 223]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 223 + ] + ], "translation": "Disconnetti GitHub" }, "YBBifR": { "message": "Disconnect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 177]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 177 + ] + ], "translation": "Disconnetti Trello" }, "1sRmLC": { "message": "Discuss and collaborate on cards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 106]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 106 + ] + ], "translation": "Discuti e collabora sulle card." }, "pfa8F0": { "message": "Display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 36 + ] + ], "translation": "Nome visualizzato" }, "MlyjJu": { "message": "Display name cannot exceed 280 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 22]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 22 + ] + ], "translation": "Il nome visualizzato non può superare i 280 caratteri" }, "KFJgmZ": { "message": "Display name must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 19 + ] + ], "translation": "Il nome visualizzato deve contenere almeno 3 caratteri" }, "x8GeCD": { "message": "Display name updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 41]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 41 + ] + ], "translation": "Nome visualizzato aggiornato" }, "evj0lK": { "message": "Do you offer a free plan?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 83]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 83 + ] + ], "translation": "Offrite un piano gratuito?" }, "jDRt4n": { "message": "Do you want to unsubscribe?", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 78]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 78 + ] + ], "translation": "Vuoi annullare l'iscrizione?" }, "JyXBgS": { "message": "docs", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 109]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 109 + ] + ], "translation": "docs" }, "TbjyhA": { "message": "Docs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 20]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 20 + ] + ], "translation": "Docs" }, "TvY/XA": { @@ -2251,12 +3823,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 209], - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36], - ["src/views/home/components/Footer.tsx", 78], - ["src/views/home/components/Header.tsx", 36] + [ + "src/components/UserMenu.tsx", + 209 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ], + [ + "src/views/home/components/Footer.tsx", + 78 + ], + [ + "src/views/home/components/Header.tsx", + 36 + ] ], "translation": "Documentazione" }, @@ -2264,7 +3854,12 @@ "message": "Don't have an account? <0><1>Sign up", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 63]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 63 + ] + ], "translation": "Non hai un account? <0><1>Registrati" }, "DPfwMq": { @@ -2272,15 +3867,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 36], - ["src/views/board/components/CardContextLabelsModal.tsx", 48], - ["src/views/board/components/CardContextMembersModal.tsx", 68], - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 48], - ["src/views/boards/components/TemplateBoards.tsx", 61] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 36 + ], + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 48 + ], + [ + "src/views/board/components/CardContextMembersModal.tsx", + 68 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 48 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 61 + ] ], "translation": "Fatto" }, @@ -2288,7 +3910,12 @@ "message": "Download failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 142]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 142 + ] + ], "translation": "Download non riuscito" }, "XicmhT": { @@ -2296,9 +3923,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/Filters.tsx", 171], - ["src/views/board/components/NewCardForm.tsx", 472], - ["src/views/card/index.tsx", 153] + [ + "src/views/board/components/Filters.tsx", + 171 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 472 + ], + [ + "src/views/card/index.tsx", + 155 + ] ], "translation": "Data di scadenza" }, @@ -2306,28 +3942,48 @@ "message": "Due next month", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 132]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 132 + ] + ], "translation": "Scadenza il mese prossimo" }, "iHcdea": { "message": "Due next week", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 127]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 127 + ] + ], "translation": "Scadenza la prossima settimana" }, "1iShX0": { "message": "Due today", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 117]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 117 + ] + ], "translation": "Scadenza oggi" }, "zxKs+y": { "message": "Due tomorrow", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 122]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 122 + ] + ], "translation": "Scadenza domani" }, "euc6Ns": { @@ -2335,7 +3991,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Duplica" }, @@ -2344,8 +4003,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 111], - ["src/views/board/components/CardContextMenu.tsx", 68] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 111 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 68 + ] ], "translation": "Duplica scheda" }, @@ -2354,7 +4019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Duplicazione in corso…" }, @@ -2363,8 +4031,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 42], - ["src/views/settings/components/WebhookList.tsx", 132] + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 42 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 132 + ] ], "translation": "Modifica" }, @@ -2373,8 +4047,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/BoardDropdown.tsx", 102], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 116] + [ + "src/views/board/components/BoardDropdown.tsx", + 102 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 116 + ] ], "translation": "Modifica URL bacheca" }, @@ -2382,14 +4062,24 @@ "message": "Edit comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 111]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 111 + ] + ], "translation": "Modifica commento" }, "dgr4Kq": { "message": "Edit label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Modifica etichetta" }, "TCOMOO": { @@ -2397,8 +4087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 162], - ["src/views/members/index.tsx", 224] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 162 + ], + [ + "src/views/members/index.tsx", + 224 + ] ], "translation": "Modifica permessi" }, @@ -2406,35 +4102,60 @@ "message": "Edit webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Modifica webhook" }, "klpSmb": { "message": "Edit workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 162]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 162 + ] + ], "translation": "Modifica URL workspace" }, "PRofO0": { "message": "Edit YouTube Video", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 108]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 108 + ] + ], "translation": "Modifica video YouTube" }, "gGx5tM": { "message": "Editing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 44]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 44 + ] + ], "translation": "Modifica" }, "b/LfJo": { "message": "email", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "email" }, "O3oNi5": { @@ -2442,8 +4163,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 272], - ["src/views/settings/AccountSettings.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 272 + ], + [ + "src/views/settings/AccountSettings.tsx", + 43 + ] ], "translation": "Email" }, @@ -2452,7 +4179,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 191] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 191 + ] ], "translation": "Notifiche email" }, @@ -2460,14 +4190,24 @@ "message": "Email notifications for mentions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 60]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 60 + ] + ], "translation": "Notifiche email per le menzioni" }, "IqjpYe": { "message": "Email visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 100 + ] + ], "translation": "Visibilità email" }, "bFREhu": { @@ -2475,7 +4215,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 200] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 200 + ] ], "translation": "Fine dell'elenco" }, @@ -2483,7 +4226,12 @@ "message": "Engineering", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Ingegneria" }, "0+ewPp": { @@ -2491,9 +4239,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Miglioramento" }, @@ -2501,14 +4258,24 @@ "message": "Enter a custom title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 131]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 131 + ] + ], "translation": "Inserisci un titolo personalizzato" }, "rQRXo8": { "message": "Enter new secret to update", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "Inserisci un nuovo secret per aggiornare" }, "fR9laE": { @@ -2516,7 +4283,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 122] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 122 + ] ], "translation": "Inserisci la tua password attuale" }, @@ -2525,7 +4295,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 111] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 111 + ] ], "translation": "Inserisci la tua password attuale e scegli una nuova password sicura." }, @@ -2533,14 +4306,24 @@ "message": "Enter your email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 402]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 402 + ] + ], "translation": "Inserisci il tuo indirizzo email" }, "n9V+ps": { "message": "Enter your name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 390]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 390 + ] + ], "translation": "Inserisci il tuo nome" }, "0StR7t": { @@ -2548,7 +4331,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 136] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 136 + ] ], "translation": "Inserisci la tua nuova password" }, @@ -2556,7 +4342,12 @@ "message": "Enter your password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 416]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 416 + ] + ], "translation": "Inserisci la tua password" }, "GpB8YV": { @@ -2564,8 +4355,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 334], - ["src/views/pricing/components/PricingTiers.tsx", 92] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 334 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 92 + ] ], "translation": "Enterprise" }, @@ -2574,9 +4371,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 77], - ["src/views/boards/components/NewBoardForm.tsx", 92], - ["src/views/members/components/InviteMemberForm.tsx", 215] + [ + "src/views/boards/components/NewBoardForm.tsx", + 77 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 92 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 215 + ] ], "translation": "Errore" }, @@ -2585,7 +4391,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 89] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 89 + ] ], "translation": "Errore durante la modifica della password" }, @@ -2593,21 +4402,36 @@ "message": "Error connecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 106]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 106 + ] + ], "translation": "Errore nella connessione a GitHub" }, "cji2nM": { "message": "Error creating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 128]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 128 + ] + ], "translation": "Errore durante la creazione del link di invito" }, "USVCGU": { "message": "Error deactivating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 144]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 144 + ] + ], "translation": "Errore durante la disattivazione del link di invito" }, "bqAQaT": { @@ -2615,7 +4439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 39] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 39 + ] ], "translation": "Errore durante l'eliminazione dell'account" }, @@ -2623,7 +4450,12 @@ "message": "Error deleting label", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 25]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 25 + ] + ], "translation": "Errore durante l'eliminazione dell'etichetta" }, "9s9O5h": { @@ -2631,7 +4463,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 45] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 45 + ] ], "translation": "Errore durante l'eliminazione dello spazio di lavoro" }, @@ -2639,14 +4474,24 @@ "message": "Error disconnecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 129]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 129 + ] + ], "translation": "Errore nella disconnessione da GitHub" }, "lKAvEd": { "message": "Error disconnecting Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 86 + ] + ], "translation": "Errore durante la disconnessione da Trello" }, "rarRW/": { @@ -2654,8 +4499,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 97], - ["src/views/members/components/InviteMemberForm.tsx", 103] + [ + "src/views/members/components/InviteMemberForm.tsx", + 97 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 103 + ] ], "translation": "Errore durante l'invito del membro" }, @@ -2663,7 +4514,12 @@ "message": "Error updating display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 54]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 54 + ] + ], "translation": "Errore durante l'aggiornamento del nome visualizzato" }, "CkVV1t": { @@ -2671,7 +4527,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 63 + ] ], "translation": "Errore durante l'aggiornamento della descrizione dello workspace" }, @@ -2680,7 +4539,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 58] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 58 + ] ], "translation": "Errore durante l'aggiornamento del nome dello workspace" }, @@ -2689,7 +4551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 75] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 75 + ] ], "translation": "Errore durante l'aggiornamento dell'URL dello workspace" }, @@ -2698,8 +4563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 240 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 43 + ] ], "translation": "Errore durante l'upgrade dell'abbonamento" }, @@ -2707,7 +4578,12 @@ "message": "Error upgrading to Pro", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 146]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 146 + ] + ], "translation": "Errore durante l'upgrade a Pro", "obsolete": true }, @@ -2716,8 +4592,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/Avatar.tsx", 69], - ["src/views/settings/components/Avatar.tsx", 199] + [ + "src/views/settings/components/Avatar.tsx", + 69 + ], + [ + "src/views/settings/components/Avatar.tsx", + 199 + ] ], "translation": "Errore durante il caricamento dell'immagine del profilo" }, @@ -2726,8 +4608,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 245], - ["src/views/settings/components/WebhookList.tsx", 224] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 245 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 224 + ] ], "translation": "Eventi" }, @@ -2735,42 +4623,72 @@ "message": "Everything in the free plan, plus:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 52 + ] + ], "translation": "Tutto ciò che è incluso nel piano gratuito, più:" }, "ANyn0x": { "message": "Everything you need, free forever. Unlimited boards, unlimited lists, unlimited cards. Upgrade any time.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 33]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 33 + ] + ], "translation": "Tutto ciò di cui hai bisogno, gratis per sempre. Board illimitate, liste illimitate, card illimitate. Fai l'upgrade quando vuoi." }, "t+R8+P": { "message": "Execution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 91]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 91 + ] + ], "translation": "Esecuzione" }, "GwNIE2": { "message": "Extended Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 34]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 34 + ] + ], "translation": "Roadmap estesa" }, "HYV6Lq": { "message": "Failed to accept invitation. Please try again later, or contact customer support.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 41]], + "origin": [ + [ + "src/views/invite/index.tsx", + 41 + ] + ], "translation": "Impossibile accettare l'invito. Riprova più tardi o contatta l'assistenza clienti." }, "lXvXNI": { "message": "Failed to copy invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 216]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 216 + ] + ], "translation": "Impossibile copiare il link di invito" }, "53QYh8": { @@ -2778,8 +4696,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 78], - ["src/views/boards/components/NewBoardForm.tsx", 93] + [ + "src/views/boards/components/NewBoardForm.tsx", + 78 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 93 + ] ], "translation": "Impossibile creare la board" }, @@ -2787,7 +4711,12 @@ "message": "Failed to create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 109]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 109 + ] + ], "translation": "Impossibile creare il webhook" }, "9YPBHv": { @@ -2795,7 +4724,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 28 + ] ], "translation": "Impossibile eliminare il webhook" }, @@ -2803,16 +4735,28 @@ "message": "Failed to fetch video information", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 82]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 82 + ] + ], "translation": "Impossibile recuperare le informazioni del video" }, "YtUfwW": { "message": "Failed to login with {0}. Please try again.", "placeholders": { - "0": ["provider.at(0)?.toUpperCase() + provider.slice(1)"] + "0": [ + "provider.at(0)?.toUpperCase() + provider.slice(1)" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 291]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 291 + ] + ], "translation": "Impossibile effettuare il login con {0}. Riprova." }, "5ntVtp": { @@ -2820,8 +4764,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 143], - ["src/views/settings/components/WebhookList.tsx", 184] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 143 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 184 + ] ], "translation": "Impossibile testare il webhook" }, @@ -2829,21 +4779,36 @@ "message": "Failed to update webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 123]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 123 + ] + ], "translation": "Impossibile aggiornare il webhook" }, "ZL1A+p": { "message": "Failed to upload attachment. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 52]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 52 + ] + ], "translation": "Impossibile caricare l'allegato. Riprova." }, "/lDBHm": { "message": "FAQ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 41 + ] + ], "translation": "FAQ" }, "aJ4pMe": { @@ -2851,8 +4816,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Faqs.tsx", 143], - ["src/views/home/components/Footer.tsx", 52] + [ + "src/views/home/components/Faqs.tsx", + 143 + ], + [ + "src/views/home/components/Footer.tsx", + 52 + ] ], "translation": "FAQ" }, @@ -2861,9 +4832,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Funzionalità" }, @@ -2871,7 +4851,12 @@ "message": "Feature Request", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 65]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 65 + ] + ], "translation": "Richiesta di funzionalità" }, "PpZkda": { @@ -2879,10 +4864,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 132], - ["src/views/home/components/Footer.tsx", 50], - ["src/views/home/components/Header.tsx", 17], - ["src/views/home/components/Header.tsx", 33] + [ + "src/views/home/components/Features.tsx", + 132 + ], + [ + "src/views/home/components/Footer.tsx", + 50 + ], + [ + "src/views/home/components/Header.tsx", + 17 + ], + [ + "src/views/home/components/Header.tsx", + 33 + ] ], "translation": "Funzionalità" }, @@ -2891,8 +4888,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 59], - ["src/components/UserMenu.tsx", 217] + [ + "src/components/FeedbackModal.tsx", + 59 + ], + [ + "src/components/UserMenu.tsx", + 217 + ] ], "translation": "Feedback" }, @@ -2900,42 +4903,72 @@ "message": "Feedback sent", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 33]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 33 + ] + ], "translation": "Feedback inviato" }, "F6m23G": { "message": "File uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 89]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 89 + ] + ], "translation": "Caricamento file" }, "o7J4JM": { "message": "Filter", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 221]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 221 + ] + ], "translation": "Filtra" }, "l31EoQ": { "message": "Find answers to common questions about Kan. Can't find what you're looking for? Feel free to <0>contact us.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 150]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 150 + ] + ], "translation": "Trova risposte alle domande più comuni su Kan. Non trovi quello che cerchi? Sentiti libero di <0>contattarci." }, "q3il6U": { "message": "Font size", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 60]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 60 + ] + ], "translation": "Dimensione del carattere" }, "+3TYXa": { "message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 41 + ] + ], "translation": "Per una sostenibilità a lungo termine, riconosciamo che tutti i buoni progetti open source necessitano di una fonte di entrate. La nostra proviene dall'offerta cloud a pagamento per workspace con più utenti e per slug workspace personalizzati. Non c'è alcun obbligo di utilizzarla e puoi ospitare il software sulla tua infrastruttura gratuitamente." }, "2POOFK": { @@ -2943,12 +4976,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 77], - ["src/views/onboarding/select-plan/index.tsx", 78], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 331], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/PricingTiers.tsx", 26] + [ + "src/views/onboarding/select-plan/index.tsx", + 77 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 78 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 331 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 26 + ] ], "translation": "Gratuito" }, @@ -2956,7 +5007,12 @@ "message": "Free for everyone", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 31]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 31 + ] + ], "translation": "Gratuito per tutti" }, "W/nQk1": { @@ -2964,8 +5020,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 333], - ["src/views/members/index.tsx", 293] + [ + "src/views/members/components/InviteMemberForm.tsx", + 333 + ], + [ + "src/views/members/index.tsx", + 293 + ] ], "translation": "Piano gratuito" }, @@ -2973,7 +5035,12 @@ "message": "Free, forever", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 34]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 34 + ] + ], "translation": "Gratuito, per sempre" }, "6uBU1F": { @@ -2981,9 +5048,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 239], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 240], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 241] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 239 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 240 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 241 + ] ], "translation": "Accesso API completo" }, @@ -2991,21 +5067,36 @@ "message": "Full-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Tempo pieno" }, "rmN315": { "message": "Fun", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Divertimento" }, "Weq9zb": { "message": "General", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 54]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 54 + ] + ], "translation": "Generale" }, "ZDIydz": { @@ -3013,12 +5104,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 71], - ["src/views/home/components/Cta.tsx", 61], - ["src/views/home/components/Header.tsx", 106], - ["src/views/pricing/components/PricingTiers.tsx", 29], - ["src/views/pricing/components/PricingTiers.tsx", 50], - ["src/views/pricing/components/PricingTiers.tsx", 73] + [ + "src/views/auth/signup/index.tsx", + 71 + ], + [ + "src/views/home/components/Cta.tsx", + 61 + ], + [ + "src/views/home/components/Header.tsx", + 106 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 29 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 50 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 73 + ] ], "translation": "Inizia" }, @@ -3027,53 +5136,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 31], - ["src/views/pricing/components/Pricing.tsx", 49] + [ + "src/views/pricing/components/Pricing.tsx", + 31 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 49 + ] ], "translation": "Inizia" }, "6FsGbN": { "message": "Get started by creating a new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Inizia creando un nuovo {0}" }, "zC8Whw": { "message": "Get started by creating a new list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 656]], + "origin": [ + [ + "src/views/board/index.tsx", + 661 + ] + ], "translation": "Inizia creando una nuova lista" }, "oW13KZ": { "message": "Get started for free today", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 54]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 54 + ] + ], "translation": "Inizia gratuitamente oggi" }, "+OhFss": { "message": "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 92]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 92 + ] + ], "translation": "Inizia gratuitamente, senza limiti di utilizzo. Per la collaborazione, passa a un piano adatto alle dimensioni del tuo team." }, "rD6UIt": { "message": "Get started on Cloud", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 75]], + "origin": [ + [ + "src/views/home/index.tsx", + 75 + ] + ], "translation": "Inizia su Cloud" }, "7hktsm": { "message": "Getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 25 + ] + ], "translation": "Per iniziare" }, "RkXlPZ": { @@ -3081,8 +5228,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 37], - ["src/views/settings/IntegrationsSettings.tsx", 186] + [ + "src/views/home/components/Footer.tsx", + 37 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 186 + ] ], "translation": "GitHub" }, @@ -3090,21 +5243,36 @@ "message": "GitHub connected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 99]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 99 + ] + ], "translation": "GitHub connesso" }, "/bBVaD": { "message": "GitHub disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 122]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 122 + ] + ], "translation": "GitHub disconnesso" }, "7eMo+U": { "message": "Go Home", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 113]], + "origin": [ + [ + "src/views/invite/index.tsx", + 113 + ] + ], "translation": "Vai alla home" }, "UveK6V": { @@ -3112,8 +5280,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Header.tsx", 100], - ["src/views/invite/index.tsx", 144] + [ + "src/views/home/components/Header.tsx", + 100 + ], + [ + "src/views/invite/index.tsx", + 144 + ] ], "translation": "Vai all'app" }, @@ -3122,8 +5296,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 107], - ["src/pages/404.tsx", 44] + [ + "src/components/SideNavigation.tsx", + 108 + ], + [ + "src/pages/404.tsx", + 44 + ] ], "translation": "Vai alle bacheche" }, @@ -3131,35 +5311,60 @@ "message": "Go to homepage", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 38]], + "origin": [ + [ + "src/pages/404.tsx", + 38 + ] + ], "translation": "Vai alla homepage" }, "KAsRdK": { "message": "Go to members", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 131]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 132 + ] + ], "translation": "Vai ai membri" }, "1WuwiM": { "message": "Go to settings", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 143]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 144 + ] + ], "translation": "Vai alle impostazioni" }, "csFbe+": { "message": "Go to templates", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 119]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 120 + ] + ], "translation": "Vai ai modelli" }, "SUvm1Y": { "message": "Good for individuals starting out who just need the essentials.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 79]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 79 + ] + ], "translation": "Perfetto per chi inizia e ha bisogno solo delle funzionalità essenziali." }, "cdyS7J": { @@ -3167,9 +5372,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 257], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 258], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 259] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 257 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 258 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 259 + ] ], "translation": "Google SSO" }, @@ -3178,7 +5392,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 260] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 260 + ] ], "translation": "Google SSO + SAML" }, @@ -3186,77 +5403,132 @@ "message": "Guest", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 203]], + "origin": [ + [ + "src/views/members/index.tsx", + 203 + ] + ], "translation": "Ospite" }, "CB/NpV": { "message": "High Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Priorità alta" }, "XXbgHS": { "message": "Hired", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 80]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 80 + ] + ], "translation": "Assunto" }, "SRvxId": { "message": "HMAC secret for signature verification", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "Secret HMAC per la verifica della firma" }, "LrcnbT": { "message": "Host Kan on your own infrastructure. Ideal for organisations that need complete control over their data.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 69]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 69 + ] + ], "translation": "Ospita Kan sulla tua infrastruttura. Ideale per le organizzazioni che necessitano del controllo completo sui propri dati." }, "WI4eGo": { "message": "How do I get a custom URL?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 64]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 64 + ] + ], "translation": "Come ottengo un URL personalizzato?" }, "yV7o5I": { "message": "How do I import my Trello boards?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 46]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 46 + ] + ], "translation": "Come importo le mie bacheche Trello?" }, "nol/Fb": { "message": "How do I invite team members?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 108]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 108 + ] + ], "translation": "Come invito i membri del team?" }, "KuSt9W": { "message": "How do I self-host?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 124]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 124 + ] + ], "translation": "Come faccio il self-hosting?" }, "UeDFpo": { "message": "How is the project funded?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 38]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 38 + ] + ], "translation": "Come viene finanziato il progetto?" }, "6S8zjx": { "message": "https://www.youtube.com/watch?v=...", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 151]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 151 + ] + ], "translation": "https://www.youtube.com/watch?v=..." }, "2liqDZ": { @@ -3264,7 +5536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 82] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 82 + ] ], "translation": "Riconosco che tutti i dati del mio account verranno eliminati definitivamente e voglio procedere." }, @@ -3273,7 +5548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 92] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 92 + ] ], "translation": "Riconosco che tutti i dati del workspace verranno eliminati definitivamente e voglio procedere." }, @@ -3281,21 +5559,36 @@ "message": "Ideas", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 88]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 88 + ] + ], "translation": "Idee" }, "F/vB2g": { "message": "Ideas to improve this page...", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 75]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 75 + ] + ], "translation": "Idee per migliorare questa pagina..." }, "l3s5ri": { "message": "Import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 73]], + "origin": [ + [ + "src/views/boards/index.tsx", + 73 + ] + ], "translation": "Importa" }, "2MPcep": { @@ -3303,8 +5596,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 229], - ["src/views/boards/components/ImportBoardsForm.tsx", 381] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 229 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 381 + ] ], "translation": "Importazione completata" }, @@ -3313,8 +5612,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 242], - ["src/views/boards/components/ImportBoardsForm.tsx", 394] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 242 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 394 + ] ], "translation": "Importazione fallita" }, @@ -3322,28 +5627,48 @@ "message": "Import your Trello boards and hit the ground running.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 96]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 96 + ] + ], "translation": "Importa le tue bacheche Trello e inizia subito." }, "c/IAuR": { "message": "Important", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Importante" }, "xMn+V9": { "message": "Importing from Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 27]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 27 + ] + ], "translation": "Importazione da Trello" }, "g2xBxu": { "message": "Importing your Trello boards into Kan is easy. You can follow our step-by-step guide <0>here.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 49]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 49 + ] + ], "translation": "Importare le tue bacheche Trello in Kan è facile. Puoi seguire la nostra guida passo dopo passo <0>qui." }, "02i3WU": { @@ -3351,7 +5676,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 313] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 313 + ] ], "translation": "Importazioni" }, @@ -3359,7 +5687,12 @@ "message": "in", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 167]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 167 + ] + ], "translation": "in" }, "WbTDwg": { @@ -3367,11 +5700,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 58] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 58 + ] ], "translation": "In corso" }, @@ -3379,14 +5727,24 @@ "message": "Inactive", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 106]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] + ], "translation": "Inattivo" }, "6mbe4b": { "message": "Individuals", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 28]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 28 + ] + ], "translation": "Individuali" }, "nbfdhU": { @@ -3394,8 +5752,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 77], - ["src/views/home/components/Features.tsx", 121] + [ + "src/components/SettingsLayout.tsx", + 77 + ], + [ + "src/views/home/components/Features.tsx", + 121 + ] ], "translation": "Integrazioni" }, @@ -3404,7 +5768,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 140] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 140 + ] ], "translation": "Ricerca intelligente" }, @@ -3412,42 +5779,72 @@ "message": "Interviewing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 77]], - "translation": "Colloquio" - }, - "XILg0L": { + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 77 + ] + ], + "translation": "Colloquio" + }, + "XILg0L": { "message": "Invalid email address", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 51]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 51 + ] + ], "translation": "Indirizzo email non valido" }, "odFCYX": { "message": "Invalid invitation", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 105]], + "origin": [ + [ + "src/views/invite/index.tsx", + 105 + ] + ], "translation": "Invito non valido" }, "MFKlMB": { "message": "Invite", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 306]], + "origin": [ + [ + "src/views/members/index.tsx", + 306 + ] + ], "translation": "Invita" }, "KLJ4eD": { "message": "Invite link copied", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 209]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 209 + ] + ], "translation": "Link di invito copiato" }, "mZGPxt": { "message": "Invite link copied to clipboard", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 210]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 210 + ] + ], "translation": "Link di invito copiato negli appunti" }, "D9ROdV": { @@ -3455,8 +5852,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 207], - ["src/views/pricing/components/PricingTiers.tsx", 58] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 207 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 58 + ] ], "translation": "Link di invito" }, @@ -3464,7 +5867,12 @@ "message": "Invite links require a Team or Pro subscription. Please upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 123]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 123 + ] + ], "translation": "I link di invito richiedono un abbonamento Team o Pro. Aggiorna il tuo workspace." }, "+djOzj": { @@ -3472,8 +5880,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 115], - ["src/views/members/components/InviteMemberForm.tsx", 367] + [ + "src/views/card/components/MemberSelector.tsx", + 115 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 367 + ] ], "translation": "Invita membro" }, @@ -3481,7 +5895,12 @@ "message": "Inviting members requires a Team Plan. You'll be redirected to upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 336]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 336 + ] + ], "translation": "Invitare membri richiede un piano Team. Verrai reindirizzato per aggiornare il tuo workspace." }, "c9AJhn": { @@ -3489,8 +5908,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/invite/index.tsx", 79], - ["src/views/invite/index.tsx", 129] + [ + "src/views/invite/index.tsx", + 79 + ], + [ + "src/views/invite/index.tsx", + 129 + ] ], "translation": "Unisciti al workspace" }, @@ -3498,28 +5923,48 @@ "message": "Join workspace | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 91]], + "origin": [ + [ + "src/views/invite/index.tsx", + 91 + ] + ], "translation": "Unisciti al workspace | kan.bn" }, "wM8xd8": { "message": "Junior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Junior" }, "aWDhU5": { "message": "Kanban is better with a team. Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 51]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 51 + ] + ], "translation": "Kanban è meglio con un team. Perfetto per team piccoli e in crescita che vogliono collaborare." }, "Xjj/kS": { "message": "Kanban reimagined", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 136]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 136 + ] + ], "translation": "Kanban reinventato" }, "JbXXUW": { @@ -3527,8 +5972,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 57], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 67] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 57 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 67 + ] ], "translation": "Tieni presente che questa azione è irreversibile." }, @@ -3536,7 +5987,12 @@ "message": "Keyboard Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 321]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 321 + ] + ], "translation": "Scorciatoie da tastiera" }, "h8DugX": { @@ -3544,10 +6000,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextLabelsModal.tsx", 31], - ["src/views/board/components/Filters.tsx", 155], - ["src/views/board/components/NewCardForm.tsx", 421], - ["src/views/card/index.tsx", 133] + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 31 + ], + [ + "src/views/board/components/Filters.tsx", + 155 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 421 + ], + [ + "src/views/card/index.tsx", + 135 + ] ], "translation": "Etichette" }, @@ -3556,7 +6024,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 124] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 124 + ] ], "translation": "Etichette e filtri" }, @@ -3564,21 +6035,36 @@ "message": "Labels & Filters", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 100]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 100 + ] + ], "translation": "Etichette e filtri" }, "vXIe7J": { "message": "Language", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 50]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 50 + ] + ], "translation": "Lingua" }, "k7rCa/": { "message": "Large", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 9]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 9 + ] + ], "translation": "Grande" }, "8Is1ih": { @@ -3586,9 +6072,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 300], - ["src/views/pricing/components/PricingTiers.tsx", 159], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 71] + [ + "src/components/NewWorkspaceForm.tsx", + 300 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 159 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 71 + ] ], "translation": "Offerta di lancio" }, @@ -3596,49 +6091,84 @@ "message": "Launch offer: Get unlimited members with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 276]], + "origin": [ + [ + "src/views/members/index.tsx", + 276 + ] + ], "translation": "Offerta di lancio: membri illimitati con Pro" }, "sDuhfK": { "message": "Launch offer: unlimited seats for just $29/month with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 98 + ] + ], "translation": "Offerta di lancio: posti illimitati a soli $29/mese con Pro" }, "zwWKhA": { "message": "Learn more", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 110]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 110 + ] + ], "translation": "Scopri di più" }, "wqxglO": { "message": "Learning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Apprendimento" }, "vifyyw": { "message": "Legal", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 131]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 131 + ] + ], "translation": "Legale" }, "iQmbPb": { "message": "License", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 45]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 45 + ] + ], "translation": "Licenza" }, "1njn7W": { "message": "Light", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 172]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 172 + ] + ], "translation": "Chiaro" }, "TCt/8K": { @@ -3646,7 +6176,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 238] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 238 + ] ], "translation": "Accesso API limitato" }, @@ -3655,11 +6188,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 80], - ["src/views/board/index.tsx", 306], - ["src/views/card/components/Dropdown.tsx", 42], - ["src/views/public/board/CardModal.tsx", 36], - ["src/views/public/board/index.tsx", 77] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 80 + ], + [ + "src/views/board/index.tsx", + 310 + ], + [ + "src/views/card/components/Dropdown.tsx", + 42 + ], + [ + "src/views/public/board/CardModal.tsx", + 36 + ], + [ + "src/views/public/board/index.tsx", + 77 + ] ], "translation": "Link copiato" }, @@ -3668,8 +6216,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 117], - ["src/views/card/index.tsx", 124] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 117 + ], + [ + "src/views/card/index.tsx", + 126 + ] ], "translation": "Lista" }, @@ -3677,21 +6231,36 @@ "message": "List name", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 129]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 129 + ] + ], "translation": "Nome lista" }, "h16FyT": { "message": "Lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 163]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 163 + ] + ], "translation": "Liste" }, "1rVAfU": { "message": "Load more activities", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Carica altre attività" }, "0qyZ4b": { @@ -3699,7 +6268,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 180] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 180 + ] ], "translation": "Caricamento permessi..." }, @@ -3707,56 +6279,96 @@ "message": "Loading...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Caricamento..." }, "N/bcWA": { "message": "Login | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 33]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 33 + ] + ], "translation": "Accedi | kan.bn" }, "nOhz3x": { "message": "Logout", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 227]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 227 + ] + ], "translation": "Esci" }, "vuxdLS": { "message": "Long-term", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Lungo termine" }, "RHZu7R": { "message": "Loved by teams worldwide", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 236]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 236 + ] + ], "translation": "Amato dai team di tutto il mondo" }, "O9jVbx": { "message": "Low Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Bassa priorità" }, "JnWJXY": { "message": "magic link", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "magic link" }, "DbZgsJ": { "message": "Make template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 91]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 91 + ] + ], "translation": "Crea template" }, "hB02vO": { @@ -3764,46 +6376,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMembersModal.tsx", 51], - ["src/views/board/components/CardContextMenu.tsx", 38] + [ + "src/views/board/components/CardContextMembersModal.tsx", + 51 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 38 + ] ], "translation": "Gestisci membri" }, + "onllUU": { + "message": "Mark all as read", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 155 + ] + ], + "translation": "" + }, "IDvohQ": { "message": "marked a checklist item as incomplete", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 138]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 138 + ] + ], "translation": "ha contrassegnato un elemento della checklist come incompleto" }, "jl3aEJ": { "message": "marked checklist item <0>{0} as incomplete", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 258]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 258 + ] + ], "translation": "ha contrassegnato l'elemento della checklist <0>{0} come incompleto" }, "vo2a+a": { "message": "Marketing", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Marketing" }, "agPptk": { "message": "Medium", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 8]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 8 + ] + ], "translation": "Medio" }, "W/Elkg": { "message": "Medium Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Priorità media" }, "OvoEq7": { @@ -3811,9 +6468,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 55], - ["src/views/card/components/ActivityList.tsx", 88], - ["src/views/members/index.tsx", 202] + [ + "src/views/card/components/ActivityList.tsx", + 55 + ], + [ + "src/views/card/components/ActivityList.tsx", + 88 + ], + [ + "src/views/members/index.tsx", + 202 + ] ], "translation": "Membro" }, @@ -3822,22 +6488,47 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 123], - ["src/views/board/components/Filters.tsx", 147], - ["src/views/board/components/NewCardForm.tsx", 379], - ["src/views/card/index.tsx", 143], - ["src/views/members/index.tsx", 263], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 81] + [ + "src/components/SideNavigation.tsx", + 124 + ], + [ + "src/views/board/components/Filters.tsx", + 147 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 379 + ], + [ + "src/views/card/index.tsx", + 145 + ], + [ + "src/views/members/index.tsx", + 263 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 81 + ] ], "translation": "Membri" }, "9u5BOr": { "message": "Members | {0}", "placeholders": { - "0": ["workspace.name ?? t`Workspace`"] + "0": [ + "workspace.name ?? t`Workspace`" + ] }, "comments": [], - "origin": [["src/views/members/index.tsx", 258]], + "origin": [ + [ + "src/views/members/index.tsx", + 258 + ] + ], "translation": "Membri | {0}" }, "/bZzdR": { @@ -3845,7 +6536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 183] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 183 + ] ], "translation": "Menzioni" }, @@ -3854,7 +6548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 53 + ] ], "translation": "Lunedì" }, @@ -3863,9 +6560,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 62], - ["src/views/pricing/components/Pricing.tsx", 14], - ["src/views/pricing/index.tsx", 20] + [ + "src/views/onboarding/select-plan/index.tsx", + 62 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 14 + ], + [ + "src/views/pricing/index.tsx", + 20 + ] ], "translation": "Mensile" }, @@ -3873,45 +6579,79 @@ "message": "monthly billing", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 159]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 159 + ] + ], "translation": "fatturazione mensile" }, "51UCsN": { "message": "Move to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 44]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 44 + ] + ], "translation": "Sposta in un altro elenco" }, "J4+OTA": { "message": "Move to list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 70]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 70 + ] + ], "translation": "Sposta nell'elenco" }, "BOqTi5": { "message": "moved the card from <0>{0} to<1>{1}", "placeholders": { - "0": ["truncate(fromList)"], - "1": ["truncate(toList)"] + "0": [ + "truncate(fromList)" + ], + "1": [ + "truncate(toList)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 160]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 160 + ] + ], "translation": "ha spostato la card da <0>{0} a <1>{1}" }, "T7LJic": { "message": "moved the card to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 127]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 127 + ] + ], "translation": "ha spostato la card in un'altra lista" }, "uEGGDs": { "message": "My webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 209]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 209 + ] + ], "translation": "Il mio webhook" }, "6YtxFj": { @@ -3919,11 +6659,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 135], - ["src/views/board/components/NewTemplateForm.tsx", 118], - ["src/views/boards/components/NewBoardForm.tsx", 134], - ["src/views/settings/components/NewWebhookModal.tsx", 205], - ["src/views/settings/components/WebhookList.tsx", 212] + [ + "src/components/LabelForm.tsx", + 135 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 118 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 134 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 205 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 212 + ] ], "translation": "Nome" }, @@ -3931,14 +6686,24 @@ "message": "Navigation", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 55]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 55 + ] + ], "translation": "Navigazione" }, "HBI6nY": { "message": "Need help?", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 95]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 95 + ] + ], "translation": "Serve aiuto?" }, "isRobC": { @@ -3946,53 +6711,115 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 95], - ["src/views/home/components/Features.tsx", 73] + [ + "src/views/boards/index.tsx", + 95 + ], + [ + "src/views/home/components/Features.tsx", + 73 + ] ], "translation": "Nuovo" }, "6WSYbN": { "message": "New {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 120]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 120 + ] + ], "translation": "Nuovo {0}" }, "TjREUS": { "message": "New API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 147]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 147 + ] + ], "translation": "Nuova chiave API" }, "pnrmSP": { "message": "New card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 304]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 304 + ] + ], "translation": "Nuova card" }, "cWcxrL": { "message": "New checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 103]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 103 + ] + ], "translation": "Nuova checklist" }, + "7Qqqyu": { + "message": "New comment on", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 49 + ] + ], + "translation": "" + }, + "K4xHKu": { + "message": "New comment on a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 50 + ] + ], + "translation": "" + }, "WYwN1G": { "message": "New import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 513]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 513 + ] + ], "translation": "Nuova importazione" }, "n1GRql": { "message": "New label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Nuova etichetta" }, "Sb2gYF": { @@ -4000,17 +6827,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewListForm.tsx", 113], - ["src/views/board/index.tsx", 620] + [ + "src/views/board/components/NewListForm.tsx", + 113 + ], + [ + "src/views/board/index.tsx", + 624 + ] ], "translation": "Nuova lista" }, + "pM1sn/": { + "message": "New notification", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 56 + ] + ], + "translation": "" + }, "+MdEsf": { "message": "New password is required", "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 23] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 23 + ] ], "translation": "La nuova password è obbligatoria" }, @@ -4019,7 +6867,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 31] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 31 + ] ], "translation": "La nuova password deve essere diversa da quella attuale" }, @@ -4027,151 +6878,292 @@ "message": "New template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 104]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 104 + ] + ], "translation": "Nuovo template" }, "RJA+sg": { "message": "New Ticket", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 56]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 56 + ] + ], "translation": "Nuovo ticket" }, "sbNNyi": { "message": "New webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Nuovo webhook" }, "curoK5": { "message": "New workspace", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 208]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 208 + ] + ], "translation": "Nuovo workspace" }, "5ACX4z": { "message": "Newsletter", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Newsletter" }, "HeFWjW": { "message": "Next Steps", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 93]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 93 + ] + ], "translation": "Prossimi passi" }, "/glL9Q": { "message": "No {0}", "placeholders": { - "0": ["isTemplate ? \"templates\" : \"boards\""] + "0": [ + "isTemplate ? \"templates\" : \"boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "Nessun {0}" }, "tlhgDC": { "message": "No archived boards", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "Nessuna bacheca archiviata" }, "Eg99Sc": { "message": "No authentication methods are currently available", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 369]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 369 + ] + ], "translation": "Nessun metodo di autenticazione attualmente disponibile" }, "2Bu8xj": { "message": "No boards found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 432]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 432 + ] + ], "translation": "Nessuna board trovata" }, "OpNhRn": { "message": "No credit card required", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 85]], + "origin": [ + [ + "src/views/home/index.tsx", + 85 + ] + ], "translation": "Nessuna carta di credito richiesta" }, "MK16u2": { "message": "No dates", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 137]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 137 + ] + ], "translation": "Nessuna data" }, "sY2lzr": { "message": "No download URL available for this attachment.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 143]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 143 + ] + ], "translation": "Nessun URL di download disponibile per questo allegato." }, "TXO5TM": { "message": "No keyboard shortcuts registered.", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 334]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 334 + ] + ], "translation": "Nessuna scorciatoia da tastiera registrata." }, "hXMFoN": { "message": "No lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 652]], + "origin": [ + [ + "src/views/board/index.tsx", + 657 + ] + ], "translation": "Nessuna lista" }, "fvLNDy": { "message": "No lists have been created yet", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 657]], + "origin": [ + [ + "src/views/board/index.tsx", + 662 + ] + ], "translation": "Nessuna lista è stata ancora creata" }, + "HbXReU": { + "message": "No notifications yet", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 192 + ] + ], + "translation": "" + }, "i30J2U": { "message": "No projects found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 283]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 283 + ] + ], "translation": "Nessun progetto trovato" }, "ERpq2P": { "message": "No results found for \"{debouncedQuery}\".", "placeholders": { - "debouncedQuery": ["debouncedQuery"] + "debouncedQuery": [ + "debouncedQuery" + ] }, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 183]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 183 + ] + ], "translation": "Nessun risultato trovato per \"{debouncedQuery}\"." }, "Q9pQaX": { "message": "No roles found for this workspace yet.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 110]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 110 + ] + ], "translation": "Nessun ruolo trovato per questo workspace." }, "TX0bT7": { "message": "No webhooks configured. Add a webhook to receive notifications.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 194]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 194 + ] + ], "translation": "Nessun webhook configurato. Aggiungi un webhook per ricevere notifiche." }, + "iDNBZe": { + "message": "Notifications", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 119 + ], + [ + "src/components/NotificationBell.tsx", + 131 + ], + [ + "src/components/NotificationBell.tsx", + 147 + ] + ], + "translation": "" + }, "9h7RDh": { "message": "Offer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 78]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 78 + ] + ], "translation": "Offerta" }, "QnzD50": { @@ -4179,7 +7171,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 245] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 245 + ] ], "translation": "On-premise" }, @@ -4187,42 +7182,72 @@ "message": "On-premise deployment option", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 106]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 106 + ] + ], "translation": "Opzione di deployment on-premise" }, "gukxZ5": { "message": "Onboarding", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 79]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 79 + ] + ], "translation": "Onboarding" }, "usVytm": { "message": "Once you delete your account, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 73]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 73 + ] + ], "translation": "Una volta eliminato il tuo account, non si può tornare indietro. Questa azione non può essere annullata." }, "dmKdk0": { "message": "Once you delete your workspace, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 128]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 128 + ] + ], "translation": "Una volta eliminato il tuo workspace, non si può tornare indietro. Questa azione non può essere annullata." }, "69b7aE": { "message": "Open command menu", "placeholders": {}, "comments": [], - "origin": [["src/components/WorkspaceMenu.tsx", 34]], + "origin": [ + [ + "src/components/WorkspaceMenu.tsx", + 34 + ] + ], "translation": "Apri menu comandi" }, "cFQEU/": { "message": "Open keyboard shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 172]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 172 + ] + ], "translation": "Apri scorciatoie da tastiera" }, "v+Wp++": { @@ -4230,7 +7255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 229] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 229 + ] ], "translation": "Open source" }, @@ -4238,21 +7266,36 @@ "message": "Open Source Friends", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 58]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 58 + ] + ], "translation": "Open source friends" }, "BzEFor": { "message": "or", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 380]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 380 + ] + ], "translation": "o" }, "ZqDqbi": { "message": "Organize and find cards quickly with powerful filtering tools.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 101]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 101 + ] + ], "translation": "Organizza e trova le card rapidamente con potenti strumenti di filtraggio." }, "Un80BR": { @@ -4260,8 +7303,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 39], - ["src/views/oss-friends/index.tsx", 52] + [ + "src/views/home/components/Footer.tsx", + 39 + ], + [ + "src/views/oss-friends/index.tsx", + 52 + ] ], "translation": "Amici OSS" }, @@ -4269,35 +7318,60 @@ "message": "Overdue", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 112]], - "translation": "In ritardo" - }, - "P6dJdq": { + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 112 + ] + ], + "translation": "In ritardo" + }, + "P6dJdq": { "message": "Overrides cleared", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 25 + ] + ], "translation": "Override cancellati" }, "SPLN9O": { "message": "Own your data", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 73]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 73 + ] + ], "translation": "Possiedi i tuoi dati" }, "8F1i42": { "message": "Page not found", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 24]], + "origin": [ + [ + "src/pages/404.tsx", + 24 + ] + ], "translation": "Pagina non trovata" }, "Uworke": { "message": "Part-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Part-time" }, "IrZaAn": { @@ -4305,7 +7379,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 69] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 69 + ] ], "translation": "Password modificata" }, @@ -4313,14 +7390,24 @@ "message": "Password is required to login.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 258]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 258 + ] + ], "translation": "La password è richiesta per accedere." }, "tTbref": { "message": "Password is required to sign up.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 257]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 257 + ] + ], "translation": "La password è richiesta per registrarsi." }, "vwGkYB": { @@ -4328,7 +7415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 22] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 22 + ] ], "translation": "La password deve contenere almeno 8 caratteri" }, @@ -4337,7 +7427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 27] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 27 + ] ], "translation": "Le password non corrispondono" }, @@ -4345,7 +7438,12 @@ "message": "Paused", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "In pausa" }, "UbYdrA": { @@ -4353,8 +7451,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 120] + [ + "src/views/pricing/components/Pricing.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 120 + ] ], "translation": "Frequenza di pagamento" }, @@ -4362,7 +7466,12 @@ "message": "Pending", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "In attesa" }, "oVBq1w": { @@ -4370,10 +7479,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 15], - ["src/views/pricing/components/Pricing.tsx", 20], - ["src/views/pricing/index.tsx", 21], - ["src/views/pricing/index.tsx", 26] + [ + "src/views/pricing/components/Pricing.tsx", + 15 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 20 + ], + [ + "src/views/pricing/index.tsx", + 21 + ], + [ + "src/views/pricing/index.tsx", + 26 + ] ], "translation": "per utente/mese" }, @@ -4381,28 +7502,48 @@ "message": "Per-seat pricing", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 83]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 83 + ] + ], "translation": "Prezzo per postazione" }, "mrhyIB": { "message": "Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 52 + ] + ], "translation": "Perfetto per team piccoli e in crescita che cercano collaborazione." }, "TH3Irz": { "message": "Permission", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 119]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 119 + ] + ], "translation": "Permesso" }, "9cDpsw": { "message": "Permissions", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 53]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 53 + ] + ], "translation": "Permessi" }, "Jgaz7E": { @@ -4410,7 +7551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 80] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 80 + ] ], "translation": "Permessi ripristinati" }, @@ -4419,8 +7563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 34], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 57] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 34 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 57 + ] ], "translation": "Permessi aggiornati" }, @@ -4428,14 +7578,24 @@ "message": "Personal Project", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 86]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 86 + ] + ], "translation": "Progetto personale" }, "Oi+J+N": { "message": "Pick a plan to get started. All paid plans include a 14-day free trial.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 125]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 125 + ] + ], "translation": "Scegli un piano per iniziare. Tutti i piani a pagamento includono una prova gratuita di 14 giorni." }, "Iqh0Uv": { @@ -4443,8 +7603,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Pianificato" }, @@ -4452,7 +7618,12 @@ "message": "Planning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 90]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 90 + ] + ], "translation": "Pianificazione" }, "F3bW6y": { @@ -4460,7 +7631,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 317] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 317 + ] ], "translation": "Piattaforma" }, @@ -4469,7 +7643,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 24] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 24 + ] ], "translation": "Conferma la tua nuova password" }, @@ -4477,28 +7654,48 @@ "message": "Please enter a valid email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 406]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 406 + ] + ], "translation": "Inserisci un indirizzo email valido" }, "CJ3zUq": { "message": "Please enter a valid name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 394]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 394 + ] + ], "translation": "Inserisci un nome valido" }, "7b2yuC": { "message": "Please enter a valid password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 421]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 421 + ] + ], "translation": "Inserisci una password valida" }, "jEw0Mr": { "message": "Please enter a valid URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 24 + ] + ], "translation": "Inserisci un URL valido" }, "tmlJN1": { @@ -4506,8 +7703,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 58], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 98] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 58 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 98 + ] ], "translation": "Inserisci un URL YouTube valido" }, @@ -4515,7 +7718,12 @@ "message": "Please select a file to upload.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 70]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 70 + ] + ], "translation": "Seleziona un file da caricare." }, "tyHiOa": { @@ -4523,56 +7731,206 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 26], - ["src/components/FeedbackModal.tsx", 41], - ["src/components/NewWorkspaceForm.tsx", 123], - ["src/views/board/components/BoardDropdown.tsx", 65], - ["src/views/board/components/NewCardForm.tsx", 186], - ["src/views/board/components/NewListForm.tsx", 79], - ["src/views/board/components/NewTemplateForm.tsx", 61], - ["src/views/board/components/NewTemplateForm.tsx", 77], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 73], - ["src/views/board/components/VisibilityButton.tsx", 57], - ["src/views/board/index.tsx", 218], - ["src/views/board/index.tsx", 274], - ["src/views/boards/components/ImportBoardsForm.tsx", 243], - ["src/views/boards/components/ImportBoardsForm.tsx", 395], - ["src/views/card/components/AttachmentThumbnails.tsx", 74], - ["src/views/card/components/ChecklistItemRow.tsx", 67], - ["src/views/card/components/ChecklistItemRow.tsx", 95], - ["src/views/card/components/ChecklistNameInput.tsx", 47], - ["src/views/card/components/Checklists.tsx", 81], - ["src/views/card/components/Comment.tsx", 93], - ["src/views/card/components/DeleteCardConfirmation.tsx", 52], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 38], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 46], - ["src/views/card/components/DueDateSelector.tsx", 64], - ["src/views/card/components/LabelSelector.tsx", 75], - ["src/views/card/components/ListSelector.tsx", 55], - ["src/views/card/components/MemberSelector.tsx", 82], - ["src/views/card/components/NewChecklistForm.tsx", 71], - ["src/views/card/components/NewChecklistItemForm.tsx", 90], - ["src/views/card/components/NewCommentForm.tsx", 37], - ["src/views/card/index.tsx", 232], - ["src/views/card/index.tsx", 245], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 28], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 42], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 65], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 93], - ["src/views/members/components/InviteMemberForm.tsx", 104], - ["src/views/members/components/InviteMemberForm.tsx", 241], - ["src/views/members/index.tsx", 66], - ["src/views/onboarding/workspace-details/index.tsx", 101], - ["src/views/onboarding/workspace-details/index.tsx", 150], - ["src/views/settings/components/Avatar.tsx", 200], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 40], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 46], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 55], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 44], - ["src/views/settings/PermissionsSettings.tsx", 40] + [ + "src/components/DeleteLabelConfirmation.tsx", + 26 + ], + [ + "src/components/FeedbackModal.tsx", + 41 + ], + [ + "src/components/NewWorkspaceForm.tsx", + 123 + ], + [ + "src/views/board/components/BoardDropdown.tsx", + 65 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 186 + ], + [ + "src/views/board/components/NewListForm.tsx", + 79 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 61 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 77 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 73 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 57 + ], + [ + "src/views/board/index.tsx", + 222 + ], + [ + "src/views/board/index.tsx", + 278 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 243 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 395 + ], + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 74 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 68 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 96 + ], + [ + "src/views/card/components/ChecklistNameInput.tsx", + 47 + ], + [ + "src/views/card/components/Checklists.tsx", + 81 + ], + [ + "src/views/card/components/Comment.tsx", + 93 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 52 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 38 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 46 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 64 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 75 + ], + [ + "src/views/card/components/ListSelector.tsx", + 55 + ], + [ + "src/views/card/components/MemberSelector.tsx", + 82 + ], + [ + "src/views/card/components/NewChecklistForm.tsx", + 71 + ], + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 90 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 37 + ], + [ + "src/views/card/index.tsx", + 274 + ], + [ + "src/views/card/index.tsx", + 287 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 28 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 42 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 65 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 93 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 104 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 241 + ], + [ + "src/views/members/index.tsx", + 66 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 101 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 150 + ], + [ + "src/views/settings/components/Avatar.tsx", + 200 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 40 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 46 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 55 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 64 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 59 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 76 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 44 + ], + [ + "src/views/settings/PermissionsSettings.tsx", + 40 + ] ], "translation": "Riprova più tardi o contatta l'assistenza clienti." }, @@ -4581,8 +7939,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 129], - ["src/views/members/components/InviteMemberForm.tsx", 145] + [ + "src/views/members/components/InviteMemberForm.tsx", + 129 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 145 + ] ], "translation": "Riprova più tardi." }, @@ -4591,12 +7955,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 76], - ["src/views/board/components/CardContextMoveListModal.tsx", 42], - ["src/views/board/index.tsx", 315], - ["src/views/card/components/Dropdown.tsx", 51], - ["src/views/public/board/CardModal.tsx", 45], - ["src/views/public/board/index.tsx", 86] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 76 + ], + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 42 + ], + [ + "src/views/board/index.tsx", + 319 + ], + [ + "src/views/card/components/Dropdown.tsx", + 51 + ], + [ + "src/views/public/board/CardModal.tsx", + 45 + ], + [ + "src/views/public/board/index.tsx", + 86 + ] ], "translation": "Riprova." }, @@ -4605,7 +7987,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 193] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 193 + ] ], "translation": "Posizione nell'elenco (0 = primo, lascia vuoto per la fine)" }, @@ -4614,12 +7999,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 51], - ["src/views/home/components/Header.tsx", 18], - ["src/views/home/components/Header.tsx", 34], - ["src/views/pricing/components/Pricing.tsx", 85], - ["src/views/pricing/index.tsx", 34], - ["src/views/pricing/index.tsx", 40] + [ + "src/views/home/components/Footer.tsx", + 51 + ], + [ + "src/views/home/components/Header.tsx", + 18 + ], + [ + "src/views/home/components/Header.tsx", + 34 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 85 + ], + [ + "src/views/pricing/index.tsx", + 34 + ], + [ + "src/views/pricing/index.tsx", + 40 + ] ], "translation": "Prezzi" }, @@ -4628,10 +8031,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 275], - ["src/views/pricing/components/Pricing.tsx", 56], - ["src/views/pricing/components/PricingTiers.tsx", 61], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 95] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 275 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 56 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 61 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 95 + ] ], "translation": "Supporto email prioritario" }, @@ -4639,14 +8054,24 @@ "message": "Privacy policy", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 43]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 43 + ] + ], "translation": "Informativa sulla privacy" }, "zwBp5t": { "message": "Private", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 84]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 84 + ] + ], "translation": "Privato" }, "3fPjUY": { @@ -4654,9 +8079,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 333], - ["src/views/pricing/components/PricingTiers.tsx", 70] + [ + "src/views/onboarding/select-plan/index.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 333 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 70 + ] ], "translation": "Pro" }, @@ -4664,84 +8098,156 @@ "message": "Pro Plan", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 290]], + "origin": [ + [ + "src/views/members/index.tsx", + 290 + ] + ], "translation": "Piano Pro" }, "Qtzfdk": { "message": "Pro Plan ∞", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 322]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ] + ], "translation": "Piano Pro ∞" }, "0rPv1T": { "message": "Profile image updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 189]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 189 + ] + ], "translation": "Immagine del profilo aggiornata" }, "4XF0BB": { "message": "Profile picture", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 30 + ] + ], "translation": "Immagine del profilo" }, "7d1a0d": { "message": "Public", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 79]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 79 + ] + ], "translation": "Pubblico" }, "ABCjd9": { "message": "Publishing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 47]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 47 + ] + ], "translation": "Pubblicazione" }, "bfgr/e": { "message": "Question", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 66 + ] + ], "translation": "Domanda" }, "1H5u1m": { "message": "Questions?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 147]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 147 + ] + ], "translation": "Domande?" }, "kfOGMr": { "message": "Quick Win", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Quick win" }, + "09Tv5j": { + "message": "Reconnecting…", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/ConnectionStatus.tsx", + 30 + ] + ], + "translation": "" + }, "6EWT6T": { "message": "Recruitment", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 73]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 73 + ] + ], "translation": "Recruiting" }, "ekCRTP": { "message": "Rejected", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "Rifiutato" }, "qlAIQ1": { "message": "Remote", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Remoto" }, "t/YqKh": { @@ -4749,7 +8255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 58] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 58 + ] ], "translation": "Rimuovi" }, @@ -4757,70 +8266,123 @@ "message": "Remove from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 121]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 121 + ] + ], "translation": "Rimuovi dai preferiti" }, "99VIgC": { "message": "Remove member", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 233]], + "origin": [ + [ + "src/views/members/index.tsx", + 233 + ] + ], "translation": "Rimuovi membro" }, "BZkYSt": { "message": "removed {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 116]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 116 + ] + ], "translation": "ha rimosso {0} etichette: <0>{labelList}" }, "kQwvU8": { "message": "removed a label from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 129]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 129 + ] + ], "translation": "ha rimosso un'etichetta dalla card" }, "uck1tz": { "message": "removed a member from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 131]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 131 + ] + ], "translation": "ha rimosso un membro dalla card" }, "KEim/+": { "message": "removed an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 141]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 141 + ] + ], "translation": "ha rimosso un allegato" }, "zwTiVn": { "message": "removed an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 288]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 288 + ] + ], "translation": "ha rimosso un allegato <0>{0}" }, "Qh7QmR": { "message": "Removed from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 54]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 54 + ] + ], "translation": "Rimosso dai preferiti" }, "YVT40D": { "message": "removed label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 200]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 200 + ] + ], "translation": "ha rimosso l'etichetta <0>{0}" }, "aHRWVI": { @@ -4828,8 +8390,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 144], - ["src/views/card/components/ActivityList.tsx", 324] + [ + "src/views/card/components/ActivityList.tsx", + 144 + ], + [ + "src/views/card/components/ActivityList.tsx", + 324 + ] ], "translation": "ha rimosso la data di scadenza" }, @@ -4837,25 +8405,44 @@ "message": "renamed a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 133]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 133 + ] + ], "translation": "ha rinominato una checklist" }, "3ZjRJY": { "message": "renamed checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 216]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 216 + ] + ], "translation": "ha rinominato la checklist <0>{0}" }, "NH54UR": { "message": "renamed checklist item to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 240]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 240 + ] + ], "translation": "ha rinominato l'elemento della checklist in <0>{0}" }, "Yx0Ud8": { @@ -4863,8 +8450,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Richiesto" }, @@ -4872,7 +8465,12 @@ "message": "Research", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 89]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 89 + ] + ], "translation": "Ricerca" }, "e4hPSt": { @@ -4880,7 +8478,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 245] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 245 + ] ], "translation": "Ripristina impostazioni predefinite del ruolo" }, @@ -4888,21 +8489,36 @@ "message": "Resolution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 60]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 60 + ] + ], "translation": "Risoluzione" }, "s+MGs7": { "message": "Resources", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 114 + ] + ], "translation": "Risorse" }, "5k0NLb": { "message": "Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 92]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 92 + ] + ], "translation": "Revisione" }, "/gaSVU": { @@ -4910,10 +8526,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 36], - ["src/views/home/components/Header.tsx", 13], - ["src/views/home/components/Header.tsx", 28], - ["src/views/onboarding/workspace-details/index.tsx", 161] + [ + "src/views/home/components/Footer.tsx", + 36 + ], + [ + "src/views/home/components/Header.tsx", + 13 + ], + [ + "src/views/home/components/Header.tsx", + 28 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] ], "translation": "Roadmap" }, @@ -4921,14 +8549,24 @@ "message": "Role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 328]], + "origin": [ + [ + "src/views/members/index.tsx", + 328 + ] + ], "translation": "Ruolo" }, "jQ6I8X": { "message": "Role updated", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 58]], + "origin": [ + [ + "src/views/members/index.tsx", + 58 + ] + ], "translation": "Ruolo aggiornato" }, "RzxgOE": { @@ -4936,7 +8574,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 164] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 164 + ] ], "translation": "Ruoli e permessi" }, @@ -4944,14 +8585,24 @@ "message": "Run on your own infrastructure", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 72]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 72 + ] + ], "translation": "Esegui sulla tua infrastruttura" }, "YEOVrT": { "message": "SAML SSO", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 102]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 102 + ] + ], "translation": "SAML SSO" }, "+5kO8P": { @@ -4959,7 +8610,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 54 + ] ], "translation": "Sabato" }, @@ -4968,9 +8622,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 183], - ["src/views/card/components/Comment.tsx", 202], - ["src/views/settings/components/Avatar.tsx", 290] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 183 + ], + [ + "src/views/card/components/Comment.tsx", + 202 + ], + [ + "src/views/settings/components/Avatar.tsx", + 290 + ] ], "translation": "Salva" }, @@ -4978,42 +8641,72 @@ "message": "Save changes", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Salva modifiche" }, "MdwUGG": { "message": "Save time with reusable board templates.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 116]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 116 + ] + ], "translation": "Risparmia tempo con i modelli di board riutilizzabili." }, "cOh+MI": { "message": "Screening", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 76]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 76 + ] + ], "translation": "Screening" }, "SkCNhl": { "message": "Search boards and cards...", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 104]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 104 + ] + ], "translation": "Cerca board e card..." }, "e1v+J3": { "message": "Secret (optional)", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 229]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 229 + ] + ], "translation": "Secret (facoltativo)" }, "OkTY4+": { "message": "Secret cannot exceed 512 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 28]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 28 + ] + ], "translation": "Il secret non può superare i 512 caratteri" }, "a3LDKx": { @@ -5021,7 +8714,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 321] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 321 + ] ], "translation": "Sicurezza" }, @@ -5029,7 +8725,12 @@ "message": "See what our users are saying about Kan", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 239]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 239 + ] + ], "translation": "Scopri cosa dicono i nostri utenti su Kan" }, "zYRVNp": { @@ -5037,7 +8738,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 131] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 131 + ] ], "translation": "Seleziona un elenco" }, @@ -5046,8 +8750,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 315], - ["src/views/boards/components/ImportBoardsForm.tsx", 464] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 315 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 464 + ] ], "translation": "Seleziona tutto" }, @@ -5055,56 +8765,96 @@ "message": "Select at least one event", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 32]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 32 + ] + ], "translation": "Seleziona almeno un evento" }, "rYUZIe": { "message": "Select source", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Seleziona origine" }, "ppaRWv": { "message": "Self Host", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 64]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 64 + ] + ], "translation": "Self host" }, "l2PIAy": { "message": "Self host with Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 81]], + "origin": [ + [ + "src/views/home/index.tsx", + 81 + ] + ], "translation": "Self host con Github" }, "VXk54Y": { "message": "self-assigned the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 169 + ] + ], "translation": "ha auto-assegnato la card" }, "RoafuO": { "message": "Send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 116]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 116 + ] + ], "translation": "Invia feedback" }, "eus61c": { "message": "Send test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 310]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 310 + ] + ], "translation": "Invia test" }, "v3YoMA": { "message": "Senior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Senior" }, "8AbRER": { @@ -5112,9 +8862,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 20], - ["src/views/board/components/CardContextMenu.tsx", 56], - ["src/views/card/components/DueDateSelector.tsx", 121] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 20 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 56 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 121 + ] ], "translation": "Imposta scadenza" }, @@ -5122,14 +8881,24 @@ "message": "set the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 142]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 142 + ] + ], "translation": "ha impostato la scadenza" }, "JjEJSy": { "message": "Set up your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 179]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 179 + ] + ], "translation": "Configura il tuo workspace" }, "Tz0i8g": { @@ -5137,8 +8906,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 102], - ["src/components/SideNavigation.tsx", 135] + [ + "src/components/SettingsLayout.tsx", + 102 + ], + [ + "src/components/SideNavigation.tsx", + 136 + ] ], "translation": "Impostazioni" }, @@ -5146,70 +8921,120 @@ "message": "Settings | Account", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 26 + ] + ], "translation": "Impostazioni | Account" }, "iy1wb+": { "message": "Settings | API", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 18]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 18 + ] + ], "translation": "Impostazioni | API" }, "ADEin1": { "message": "Settings | Billing", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 35]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 35 + ] + ], "translation": "Impostazioni | Fatturazione" }, "hYzsXr": { "message": "Settings | Integrations", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 138]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 138 + ] + ], "translation": "Impostazioni | Integrazioni" }, "F/FPk/": { "message": "Settings | Permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 49 + ] + ], "translation": "Impostazioni | Permessi" }, "+h2faV": { "message": "Settings | Webhooks", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 24]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 24 + ] + ], "translation": "Impostazioni | Webhook" }, "Ci/KUX": { "message": "Settings | Workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 59]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 59 + ] + ], "translation": "Impostazioni | Workspace" }, "CTqTgr": { "message": "Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 187]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 187 + ] + ], "translation": "Scorciatoie" }, "5lWFkC": { "message": "Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 104]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 104 + ] + ], "translation": "Accedi" }, "n1ekoW": { "message": "Sign In", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 154]], + "origin": [ + [ + "src/views/invite/index.tsx", + 154 + ] + ], "translation": "Accedi" }, "fcWrnU": { @@ -5217,8 +9042,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 284], - ["src/views/onboarding/workspace-details/index.tsx", 362] + [ + "src/views/onboarding/select-plan/index.tsx", + 284 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 362 + ] ], "translation": "Esci" }, @@ -5226,7 +9057,12 @@ "message": "Sign Up", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 162]], + "origin": [ + [ + "src/views/invite/index.tsx", + 162 + ] + ], "translation": "Registrati" }, "sUZo7y": { @@ -5234,8 +9070,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 36], - ["src/views/auth/signup/index.tsx", 61] + [ + "src/views/auth/signup/index.tsx", + 36 + ], + [ + "src/views/auth/signup/index.tsx", + 61 + ] ], "translation": "Registrati | kan.bn" }, @@ -5243,21 +9085,36 @@ "message": "Sign up disabled", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 46]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 46 + ] + ], "translation": "Registrazione disabilitata" }, "s6iE/c": { "message": "Sign up is currently disabled. Please try again later.", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 49]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 49 + ] + ], "translation": "La registrazione è attualmente disabilitata. Riprova più tardi." }, "6FDocz": { "message": "Sign up with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "Registrati con " }, "m2nk0i": { @@ -5265,8 +9122,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 89], - ["src/views/pricing/index.tsx", 44] + [ + "src/views/pricing/components/Pricing.tsx", + 89 + ], + [ + "src/views/pricing/index.tsx", + 44 + ] ], "translation": "Prezzi semplici" }, @@ -5274,7 +9137,12 @@ "message": "Simple, visual task management that just works. Drag and drop cards, collaborate with your team, and get more done.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 139]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 139 + ] + ], "translation": "Gestione delle attività semplice e visiva che funziona davvero. Trascina e rilascia le schede, collabora con il tuo team e porta a termine più cose." }, "zEcnBA": { @@ -5282,7 +9150,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 291] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 291 + ] ], "translation": "SLA" }, @@ -5290,28 +9161,48 @@ "message": "Small", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 7]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 7 + ] + ], "translation": "Piccolo" }, "++rVAm": { "message": "Social Media", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Social media" }, "wIb7Ng": { "message": "Software Development", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 22 + ] + ], "translation": "Sviluppo software" }, "6sKjjx": { "message": "Solo", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 76]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 76 + ] + ], "translation": "Solo" }, "vnS6Rf": { @@ -5319,7 +9210,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 256] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 256 + ] ], "translation": "SSO" }, @@ -5327,7 +9221,12 @@ "message": "Star on Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 37]], + "origin": [ + [ + "src/views/home/index.tsx", + 37 + ] + ], "translation": "Metti una stella su Github" }, "veIDCY": { @@ -5335,8 +9234,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 359], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 113] + [ + "src/views/members/components/InviteMemberForm.tsx", + 359 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 113 + ] ], "translation": "Inizia la prova gratuita di 14 giorni" }, @@ -5344,21 +9249,36 @@ "message": "Start free. Upgrade as your team grows. No hidden fees, no contracts.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/index.tsx", 47]], + "origin": [ + [ + "src/views/pricing/index.tsx", + 47 + ] + ], "translation": "Inizia gratis. Aggiorna man mano che il tuo team cresce. Nessun costo nascosto, nessun contratto." }, "uAQUqI": { "message": "Status", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 230]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 230 + ] + ], "translation": "Stato" }, "WYDptz": { "message": "Subscription Required", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 122]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 122 + ] + ], "translation": "Abbonamento richiesto" }, "zzDlyQ": { @@ -5366,8 +9286,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/AuthForm.tsx", 215], - ["src/components/AuthForm.tsx", 232] + [ + "src/components/AuthForm.tsx", + 215 + ], + [ + "src/components/AuthForm.tsx", + 232 + ] ], "translation": "Successo" }, @@ -5376,7 +9302,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 52 + ] ], "translation": "Domenica" }, @@ -5385,7 +9314,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 59] + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 59 + ] ], "translation": "Potenzia il tuo workspace per soli $29 al mese. Ecco cosa otterrai:" }, @@ -5394,8 +9326,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 198], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 325] + [ + "src/components/UserMenu.tsx", + 198 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 325 + ] ], "translation": "Supporto" }, @@ -5403,21 +9341,36 @@ "message": "Support the development of the project", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 57]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 57 + ] + ], "translation": "Sostieni lo sviluppo del progetto" }, "D+NlUC": { "message": "System", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 144]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 144 + ] + ], "translation": "Sistema" }, "KM6m8p": { "message": "Team", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 83]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 83 + ] + ], "translation": "Team" }, "bff61F": { @@ -5425,8 +9378,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 322], - ["src/views/members/index.tsx", 292] + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ], + [ + "src/views/members/index.tsx", + 292 + ] ], "translation": "Piano team" }, @@ -5435,9 +9394,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 332], - ["src/views/pricing/components/Pricing.tsx", 46], - ["src/views/pricing/components/PricingTiers.tsx", 47] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 332 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 46 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 47 + ] ], "translation": "Team" }, @@ -5446,8 +9414,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/board/index.tsx", 566] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/board/index.tsx", + 570 + ] ], "translation": "Template" }, @@ -5455,28 +9429,48 @@ "message": "Template created", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 67]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 67 + ] + ], "translation": "Template creato" }, "QHhZeE": { "message": "Template created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 68]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 68 + ] + ], "translation": "Template creato con successo" }, "notwF1": { "message": "Template name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 19]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 19 + ] + ], "translation": "Il nome del template non può superare i 100 caratteri" }, "6OTo9n": { "message": "Template name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 18]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 18 + ] + ], "translation": "Il nome del template è obbligatorio" }, "iTylMl": { @@ -5484,8 +9478,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 111], - ["src/views/home/components/Features.tsx", 115] + [ + "src/components/SideNavigation.tsx", + 112 + ], + [ + "src/views/home/components/Features.tsx", + 115 + ] ], "translation": "Template" }, @@ -5493,14 +9493,24 @@ "message": "Terms of service", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 42]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 42 + ] + ], "translation": "Termini di servizio" }, "NnH3pK": { "message": "Test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 136]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 136 + ] + ], "translation": "Test" }, "itgYbC": { @@ -5508,8 +9518,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 132], - ["src/views/settings/components/WebhookList.tsx", 174] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 132 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 174 + ] ], "translation": "Webhook di test inviato con successo!" }, @@ -5517,28 +9533,48 @@ "message": "Testimonials", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 232]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 232 + ] + ], "translation": "Testimonianze" }, "nhMhRr": { "message": "Thank you for your feedback!", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 34]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 34 + ] + ], "translation": "Grazie per il tuo feedback!" }, "NcFrgC": { "message": "The board has been archived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 46]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 46 + ] + ], "translation": "La bacheca è stata archiviata." }, "C6gv54": { "message": "The board has been unarchived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 47]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 47 + ] + ], "translation": "La bacheca è stata ripristinata." }, "nKBUeF": { @@ -5546,7 +9582,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 69] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 69 + ] ], "translation": "La scheda è stata duplicata." }, @@ -5555,7 +9594,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 84] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 84 + ] ], "translation": "La password attuale inserita non è corretta." }, @@ -5563,7 +9605,12 @@ "message": "The main difference between Kan and Trello is that Kan is open source, allowing anyone to view, modify, and contribute to our code. Our cloud offering also offers no restrictions on features for individual use, whereas Trello locks basic features such as the number of boards you can create behind a paywall.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 33]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 33 + ] + ], "translation": "La principale differenza tra Kan e Trello è che Kan è open source, permettendo a chiunque di visualizzare, modificare e contribuire al nostro codice. La nostra offerta cloud non prevede inoltre alcuna restrizione sulle funzionalità per l'uso individuale, mentre Trello blocca funzionalità di base come il numero di bacheche che puoi creare dietro un paywall." }, "6tDFBe": { @@ -5571,8 +9618,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 35], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 58] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 35 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 58 + ] ], "translation": "I permessi del membro sono stati aggiornati." }, @@ -5580,37 +9633,64 @@ "message": "The member's role has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 59]], + "origin": [ + [ + "src/views/members/index.tsx", + 59 + ] + ], "translation": "Il ruolo del membro è stato aggiornato." }, "gUX7b+": { "message": "The open source <0/> alternative to Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 65]], + "origin": [ + [ + "src/views/home/index.tsx", + 65 + ] + ], "translation": "L'alternativa open source <0/> a Trello" }, "0xD8Of": { "message": "The page you're looking for doesn't exist or has been moved.", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 29]], + "origin": [ + [ + "src/pages/404.tsx", + 29 + ] + ], "translation": "La pagina che stai cercando non esiste o è stata spostata." }, "fQCrjt": { "message": "The visibility of your board has been set to {0}.", "placeholders": { - "0": ["isPublic ? \"public\" : \"private\""] + "0": [ + "isPublic ? \"public\" : \"private\"" + ] }, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 50]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 50 + ] + ], "translation": "La visibilità della tua bacheca è stata impostata su {0}." }, "FEr96N": { "message": "Theme", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 131]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 131 + ] + ], "translation": "Tema" }, "Yf9FAx": { @@ -5618,7 +9698,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 50] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 50 + ] ], "translation": "Non potranno accedere a questo workspace." }, @@ -5627,11 +9710,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 44], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 39], - ["src/views/card/components/DeleteCardConfirmation.tsx", 78], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 59], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 69] + [ + "src/components/DeleteLabelConfirmation.tsx", + 44 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 39 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 78 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 59 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 69 + ] ], "translation": "Questa azione non può essere annullata." }, @@ -5639,28 +9737,48 @@ "message": "This API key will only be shown once. Please save it in a secure location.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 129]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 129 + ] + ], "translation": "Questa chiave API verrà mostrata solo una volta. Salvala in un luogo sicuro." }, "l4asa1": { "message": "This board is private or does not exist", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 184]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 184 + ] + ], "translation": "Questa bacheca è privata o non esiste" }, "wY+6Ye": { "message": "This board URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 136]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 136 + ] + ], "translation": "Questo URL della bacheca è già stato utilizzato" }, "mTwGOf": { "message": "This invitation link is invalid or has expired.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 108]], + "origin": [ + [ + "src/views/invite/index.tsx", + 108 + ] + ], "translation": "Questo link di invito non è valido o è scaduto." }, "vlxQFL": { @@ -5668,7 +9786,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 81] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 81 + ] ], "translation": "I permessi di questo membro sono stati ripristinati ai valori predefiniti del suo ruolo." }, @@ -5676,14 +9797,24 @@ "message": "This URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 73]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 73 + ] + ], "translation": "Questo URL è già in uso" }, "gKmoow": { "message": "This URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 75]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 75 + ] + ], "translation": "Questo URL è riservato" }, "OAYToL": { @@ -5703,7 +9834,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 70] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 70 + ] ], "translation": "Questo comporterà l'eliminazione permanente di tutti i dati associati a questo workspace." }, @@ -5712,7 +9846,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 60 + ] ], "translation": "Questo comporterà l'eliminazione permanente di tutti i dati associati al tuo account." }, @@ -5720,14 +9857,24 @@ "message": "This workspace URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 252]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 252 + ] + ], "translation": "Questo URL del workspace è già stato utilizzato" }, "bJtM0P": { "message": "This workspace URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 254]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 254 + ] + ], "translation": "Questo URL dello workspace è riservato" }, "kp6L3T": { @@ -5735,7 +9882,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 125] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 125 + ] ], "translation": "Questo nome utente dello workspace è già stato utilizzato" }, @@ -5743,7 +9893,12 @@ "message": "Title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 127]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 127 + ] + ], "translation": "Titolo" }, "wK4OTM": { @@ -5751,7 +9906,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 180] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 180 + ] ], "translation": "Titolo (facoltativo)" }, @@ -5760,8 +9918,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] ], "translation": "Da fare" }, @@ -5769,21 +9933,36 @@ "message": "Toggle menu", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 114 + ] + ], "translation": "Attiva/disattiva menu" }, "L5WQLg": { "message": "Token is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 19]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 19 + ] + ], "translation": "Il token è obbligatorio" }, "eEQyz+": { "message": "Track all card changes with detailed activity history.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 111 + ] + ], "translation": "Tieni traccia di tutte le modifiche alle card con una cronologia dettagliata delle attività." }, "dtbpdR": { @@ -5791,8 +9970,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 218], - ["src/views/settings/IntegrationsSettings.tsx", 142] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 218 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 142 + ] ], "translation": "Trello" }, @@ -5800,56 +9985,96 @@ "message": "Trello disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 79]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 79 + ] + ], "translation": "Trello disconnesso" }, "kxEs5t": { "message": "Trello imports", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 95 + ] + ], "translation": "Importazioni Trello" }, "HO+uOC": { "message": "Triaging", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 57]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 57 + ] + ], "translation": "Smistamento" }, "o+JCfN": { "message": "Trusted by fast-moving teams<0/>around the world", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Logos.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Logos.tsx", + 67 + ] + ], "translation": "Scelto da team dinamici<0/>in tutto il mondo" }, "bZSICm": { "message": "Unable to add checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 89]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 89 + ] + ], "translation": "Impossibile aggiungere l'elemento della checklist" }, "T7DJ2k": { "message": "Unable to add comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewCommentForm.tsx", 36]], + "origin": [ + [ + "src/views/card/components/NewCommentForm.tsx", + 36 + ] + ], "translation": "Impossibile aggiungere il commento" }, "2Q871c": { "message": "Unable to add label", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 244]], + "origin": [ + [ + "src/views/card/index.tsx", + 286 + ] + ], "translation": "Impossibile aggiungere l'etichetta" }, "LeM5RY": { "message": "Unable to clear overrides", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 39]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 39 + ] + ], "translation": "Impossibile cancellare le sostituzioni" }, "W1ewR0": { @@ -5857,10 +10082,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 313], - ["src/views/card/components/Dropdown.tsx", 49], - ["src/views/public/board/CardModal.tsx", 43], - ["src/views/public/board/index.tsx", 84] + [ + "src/views/board/index.tsx", + 317 + ], + [ + "src/views/card/components/Dropdown.tsx", + 49 + ], + [ + "src/views/public/board/CardModal.tsx", + 43 + ], + [ + "src/views/public/board/index.tsx", + 84 + ] ], "translation": "Impossibile copiare il link" }, @@ -5868,21 +10105,36 @@ "message": "Unable to create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 183]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 183 + ] + ], "translation": "Impossibile creare la card" }, "mHhffx": { "message": "Unable to create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 70]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 70 + ] + ], "translation": "Impossibile creare la checklist" }, "TztLaN": { "message": "Unable to create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 78]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 78 + ] + ], "translation": "Impossibile creare la lista" }, "YcyP2z": { @@ -5890,8 +10142,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewTemplateForm.tsx", 60], - ["src/views/board/components/NewTemplateForm.tsx", 76] + [ + "src/views/board/components/NewTemplateForm.tsx", + 60 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 76 + ] ], "translation": "Impossibile creare il template" }, @@ -5900,8 +10158,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 122], - ["src/views/onboarding/workspace-details/index.tsx", 100] + [ + "src/components/NewWorkspaceForm.tsx", + 122 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 100 + ] ], "translation": "Impossibile creare lo workspace" }, @@ -5909,14 +10173,24 @@ "message": "Unable to delete attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 73]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 73 + ] + ], "translation": "Impossibile eliminare l'allegato" }, "Z6r9z1": { "message": "Unable to delete card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 51]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 51 + ] + ], "translation": "Impossibile eliminare la card" }, "DahTzR": { @@ -5924,7 +10198,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 37] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 37 + ] ], "translation": "Impossibile eliminare la checklist" }, @@ -5932,14 +10209,24 @@ "message": "Unable to delete checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 95 + ] + ], "translation": "Impossibile eliminare l'elemento della checklist" }, "2QGEbi": { "message": "Unable to delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 45]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 45 + ] + ], "translation": "Impossibile eliminare il commento" }, "Oo4E6p": { @@ -5947,7 +10234,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 75] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 75 + ] ], "translation": "Impossibile duplicare la scheda" }, @@ -5955,7 +10245,12 @@ "message": "Unable to move card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 41]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 41 + ] + ], "translation": "Impossibile spostare la scheda" }, "8yFGGF": { @@ -5963,7 +10258,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 27] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 27 + ] ], "translation": "Impossibile rimuovere il membro" }, @@ -5971,7 +10269,12 @@ "message": "Unable to reorder checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Checklists.tsx", 80]], + "origin": [ + [ + "src/views/card/components/Checklists.tsx", + 80 + ] + ], "translation": "Impossibile riordinare l'elemento della checklist" }, "vfRdCZ": { @@ -5979,7 +10282,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 92] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 92 + ] ], "translation": "Impossibile ripristinare i permessi" }, @@ -5987,35 +10293,60 @@ "message": "Unable to send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 40]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 40 + ] + ], "translation": "Impossibile inviare il feedback" }, "Q60WUZ": { "message": "Unable to start checkout", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 149]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 149 + ] + ], "translation": "Impossibile avviare il checkout" }, "T7Mywq": { "message": "Unable to update board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 64]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 64 + ] + ], "translation": "Impossibile aggiornare la board" }, "XpcjLO": { "message": "Unable to update board URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 72]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 72 + ] + ], "translation": "Impossibile aggiornare l'URL della board" }, "Wy6pcF": { "message": "Unable to update board visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 56]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 56 + ] + ], "translation": "Impossibile aggiornare la visibilità della board" }, "o9WLwO": { @@ -6023,8 +10354,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 273], - ["src/views/card/index.tsx", 231] + [ + "src/views/board/index.tsx", + 277 + ], + [ + "src/views/card/index.tsx", + 273 + ] ], "translation": "Impossibile aggiornare la card" }, @@ -6032,35 +10369,60 @@ "message": "Unable to update checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistNameInput.tsx", 46]], + "origin": [ + [ + "src/views/card/components/ChecklistNameInput.tsx", + 46 + ] + ], "translation": "Impossibile aggiornare la checklist" }, "WQPDcG": { "message": "Unable to update checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 67 + ] + ], "translation": "Impossibile aggiornare l'elemento della checklist" }, "fYVH36": { "message": "Unable to update comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 92]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 92 + ] + ], "translation": "Impossibile aggiornare il commento" }, "C56tim": { "message": "Unable to update due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DueDateSelector.tsx", 63]], + "origin": [ + [ + "src/views/card/components/DueDateSelector.tsx", + 63 + ] + ], "translation": "Impossibile aggiornare la data di scadenza" }, "delOXn": { "message": "Unable to update labels", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/LabelSelector.tsx", 74]], + "origin": [ + [ + "src/views/card/components/LabelSelector.tsx", + 74 + ] + ], "translation": "Impossibile aggiornare le etichette" }, "I0gAKM": { @@ -6068,8 +10430,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 217], - ["src/views/card/components/ListSelector.tsx", 54] + [ + "src/views/board/index.tsx", + 221 + ], + [ + "src/views/card/components/ListSelector.tsx", + 54 + ] ], "translation": "Impossibile aggiornare la lista" }, @@ -6077,7 +10445,12 @@ "message": "Unable to update members", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/MemberSelector.tsx", 81]], + "origin": [ + [ + "src/views/card/components/MemberSelector.tsx", + 81 + ] + ], "translation": "Impossibile aggiornare i membri" }, "GYv20o": { @@ -6085,8 +10458,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 41], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 64] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 41 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 64 + ] ], "translation": "Impossibile aggiornare i permessi" }, @@ -6094,44 +10473,76 @@ "message": "Unable to update role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 65]], + "origin": [ + [ + "src/views/members/index.tsx", + 65 + ] + ], "translation": "Impossibile aggiornare il ruolo" }, "It4/FS": { "message": "Unarchive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Ripristina bacheca" }, "E8zYtd": { "message": "unassigned <0>{0} from the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 183]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 183 + ] + ], "translation": "ha rimosso l'assegnazione di <0>{0} dalla card" }, "hAMddS": { "message": "unassigned themselves from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 180]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 180 + ] + ], "translation": "ha rimosso la propria assegnazione dalla card" }, "9Xigls": { "message": "Under Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "In revisione" }, "M9p3Vw": { "message": "Unlimited activity log", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 41]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 41 + ] + ], "translation": "Log attività illimitato" }, "1wCGT0": { @@ -6139,12 +10550,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 74], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 75], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 76], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 77], - ["src/views/pricing/components/Pricing.tsx", 37], - ["src/views/pricing/components/PricingTiers.tsx", 36] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 74 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 75 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 76 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 77 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 37 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 36 + ] ], "translation": "Board illimitate" }, @@ -6152,7 +10581,12 @@ "message": "Unlimited boards, unlimited lists, unlimited cards. No credit card required.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 57]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 57 + ] + ], "translation": "Board illimitate, liste illimitate, card illimitate. Nessuna carta di credito richiesta." }, "Zz1qkk": { @@ -6160,8 +10594,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 39], - ["src/views/pricing/components/PricingTiers.tsx", 37] + [ + "src/views/pricing/components/Pricing.tsx", + 39 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 37 + ] ], "translation": "Card illimitate" }, @@ -6169,7 +10609,12 @@ "message": "Unlimited comments", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 40]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 40 + ] + ], "translation": "Commenti illimitati" }, "86FLn5": { @@ -6177,10 +10622,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 92], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 93], - ["src/views/pricing/components/PricingTiers.tsx", 59] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 92 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 93 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 59 + ] ], "translation": "Caricamenti di file illimitati" }, @@ -6188,7 +10645,12 @@ "message": "Unlimited lists", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 38 + ] + ], "translation": "Liste illimitate" }, "mx8+1u": { @@ -6196,11 +10658,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 297], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 84], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 85], - ["src/views/pricing/components/PricingTiers.tsx", 80], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 68] + [ + "src/components/NewWorkspaceForm.tsx", + 297 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 84 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 85 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 80 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 68 + ] ], "translation": "Membri illimitati" }, @@ -6208,14 +10685,24 @@ "message": "Unlimited members and a custom workspace username for teams ready to scale.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 94]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 94 + ] + ], "translation": "Membri illimitati e un nome utente workspace personalizzato per i team pronti a crescere." }, "Ws+3X+": { "message": "Unlimited seats and advanced features for growing teams.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 75]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 75 + ] + ], "translation": "Posti illimitati e funzionalità avanzate per team in crescita." }, "SMaFdc": { @@ -6223,8 +10710,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/pages/unsubscribe/index.tsx", 68], - ["src/pages/unsubscribe/index.tsx", 93] + [ + "src/pages/unsubscribe/index.tsx", + 68 + ], + [ + "src/pages/unsubscribe/index.tsx", + 93 + ] ], "translation": "Annulla iscrizione" }, @@ -6233,11 +10726,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugForm.tsx", 175], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 80], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 94], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 89], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 157] + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 175 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 80 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 94 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 89 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 157 + ] ], "translation": "Aggiorna" }, @@ -6245,44 +10753,76 @@ "message": "Update label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Aggiorna etichetta" }, "L5ZPjz": { "message": "updated a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 136]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 136 + ] + ], "translation": "ha aggiornato un elemento della checklist" }, "tGwwnq": { "message": "updated the description", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 126]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 126 + ] + ], "translation": "ha aggiornato la descrizione" }, "RfgJqw": { "message": "updated the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 143]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 143 + ] + ], "translation": "ha aggiornato la data di scadenza" }, "V3MPSQ": { "message": "updated the title", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 125]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 125 + ] + ], "translation": "ha aggiornato il titolo" }, "zERArS": { "message": "updated the title to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 152]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 152 + ] + ], "translation": "ha aggiornato il titolo in <0>{0}" }, "IelE1h": { @@ -6290,9 +10830,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 55], - ["src/views/settings/WorkspaceSettings.tsx", 118] + [ + "src/components/SideNavigation.tsx", + 242 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 55 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 118 + ] ], "translation": "Passa a Pro" }, @@ -6301,8 +10850,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 337], - ["src/views/onboarding/workspace-details/index.tsx", 243] + [ + "src/components/NewWorkspaceForm.tsx", + 337 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 243 + ] ], "translation": "Passa a Pro ($29/mese)" }, @@ -6310,7 +10865,12 @@ "message": "Upload failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 51]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 51 + ] + ], "translation": "Caricamento non riuscito" }, "BBUDfW": { @@ -6318,8 +10878,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 50], - ["src/views/boards/components/TemplateBoards.tsx", 67] + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 67 + ] ], "translation": "Urgente" }, @@ -6328,8 +10894,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 217], - ["src/views/settings/components/WebhookList.tsx", 218] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 217 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 218 + ] ], "translation": "URL" }, @@ -6338,8 +10910,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 38], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 38] + [ + "src/components/NewWorkspaceForm.tsx", + 38 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 38 + ] ], "translation": "L'URL può contenere solo lettere, numeri e trattini" }, @@ -6347,7 +10925,12 @@ "message": "URL cannot exceed 2048 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 25 + ] + ], "translation": "L'URL non può superare i 2048 caratteri" }, "i5rE2/": { @@ -6355,8 +10938,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 36], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 36] + [ + "src/components/NewWorkspaceForm.tsx", + 36 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 36 + ] ], "translation": "L'URL non può superare i 64 caratteri" }, @@ -6365,8 +10954,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 34], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 34] + [ + "src/components/NewWorkspaceForm.tsx", + 34 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 34 + ] ], "translation": "L'URL deve contenere almeno 3 caratteri" }, @@ -6374,112 +10969,208 @@ "message": "Use template", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 154]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 154 + ] + ], "translation": "Usa template" }, "n6EWYz": { "message": "Used to sign webhook payloads for verification. Leave blank to keep existing secret.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 239]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 239 + ] + ], "translation": "Utilizzato per firmare i payload dei webhook per la verifica. Lasciare vuoto per mantenere il segreto esistente." }, "7PzzBU": { "message": "User", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 322]], + "origin": [ + [ + "src/views/members/index.tsx", + 322 + ] + ], "translation": "Utente" }, "tYN21H": { "message": "User is already a member of this workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 98]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 98 + ] + ], "translation": "L'utente è già membro di questo workspace" }, "vSJd18": { "message": "Video", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Video" }, "FmfJjN": { "message": "View and manage your API keys.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 25 + ] + ], "translation": "Visualizza e gestisci le tue chiavi API." }, "t2nDzl": { "message": "View and manage your billing and subscription.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 42]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 42 + ] + ], "translation": "Visualizza e gestisci la fatturazione e l'abbonamento." }, "aiHZVP": { "message": "View docs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 67]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 67 + ] + ], "translation": "Visualizza documentazione" }, "F8DaWi": { "message": "View only", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 153]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 153 + ] + ], "translation": "Sola visualizzazione" }, "fSf2ee": { "message": "View our roadmap.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 154]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 154 + ] + ], "translation": "Visualizza la nostra roadmap." }, "U5dMR6": { "message": "View workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 187]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 187 + ] + ], "translation": "Visualizza workspace" }, + "V8YRD4": { + "message": "Viewing now: {0}", + "placeholders": { + "0": [ + "viewers.map((v) => v.userName).join(\", \")" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 61 + ] + ], + "translation": "" + }, "2q/Q7x": { "message": "Visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 103]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 103 + ] + ], "translation": "Visibilità" }, "BJbLe4": { "message": "We are using the <0>AGPL-3.0 license.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 94]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 94 + ] + ], "translation": "Utilizziamo la <0>licenza AGPL-3.0." }, "+EkBs0": { "message": "We couldn't update your preferences. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 63]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 63 + ] + ], "translation": "Non è stato possibile aggiornare le tue preferenze. Riprova." }, "9y1RcT": { "message": "We're just getting started. ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 152]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 152 + ] + ], "translation": "Siamo solo all'inizio." }, "GdWB+V": { "message": "Webhook created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 104]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 104 + ] + ], "translation": "Webhook creato con successo" }, "2X4ecw": { @@ -6487,7 +11178,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 23] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 23 + ] ], "translation": "Webhook eliminato con successo" }, @@ -6495,14 +11189,24 @@ "message": "Webhook name cannot exceed 255 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 20]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 20 + ] + ], "translation": "Il nome del webhook non può superare i 255 caratteri" }, "U2+rn0": { "message": "Webhook name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 19 + ] + ], "translation": "Il nome del webhook è obbligatorio" }, "8iP9oQ": { @@ -6510,8 +11214,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 135], - ["src/views/settings/components/WebhookList.tsx", 177] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 135 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 177 + ] ], "translation": "Test del webhook non riuscito" }, @@ -6519,14 +11229,24 @@ "message": "Webhook updated successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 118]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 118 + ] + ], "translation": "Webhook aggiornato con successo" }, "Hf1cEZ": { "message": "Webhook URL is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 23]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 23 + ] + ], "translation": "L'URL del webhook è obbligatorio" }, "v1kQyJ": { @@ -6534,8 +11254,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 71], - ["src/views/settings/WebhookSettings.tsx", 28] + [ + "src/components/SettingsLayout.tsx", + 71 + ], + [ + "src/views/settings/WebhookSettings.tsx", + 28 + ] ], "translation": "Webhook" }, @@ -6543,42 +11269,72 @@ "message": "Week start day", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 91 + ] + ], "translation": "Giorno di inizio settimana" }, "9eF5oV": { "message": "Welcome back", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 43]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 43 + ] + ], "translation": "Bentornato" }, "xEbBrW": { "message": "What license are you using?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 91 + ] + ], "translation": "Quale licenza stai utilizzando?" }, "H5G+qG": { "message": "What's the difference between Kan and Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 30]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 30 + ] + ], "translation": "Qual è la differenza tra Kan e Trello?" }, "mVZH9V": { "message": "When Trello launched in 2011, it blew everyone away with its carefully designed simplicity, but over the years it lost its magic and grew into something closer to \"Jira Lite\". This project is our attempt to recapture the original magic of Trello's simplicity, in open source.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 25 + ] + ], "translation": "Quando Trello è stato lanciato nel 2011, ha stupito tutti con la sua semplicità accuratamente progettata, ma nel corso degli anni ha perso la sua magia e si è trasformato in qualcosa di più simile a \"Jira Lite\". Questo progetto è il nostro tentativo di recuperare la magia originale della semplicità di Trello, in open source." }, "SFnH1j": { "message": "Why make an open source Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 22]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 22 + ] + ], "translation": "Perché creare un Trello open source?" }, "pmUArF": { @@ -6586,12 +11342,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 47], - ["src/views/board/index.tsx", 530], - ["src/views/boards/index.tsx", 48], - ["src/views/members/index.tsx", 258], - ["src/views/public/board/index.tsx", 125], - ["src/views/public/boards/index.tsx", 75] + [ + "src/components/SettingsLayout.tsx", + 47 + ], + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/members/index.tsx", + 258 + ], + [ + "src/views/public/board/index.tsx", + 125 + ], + [ + "src/views/public/boards/index.tsx", + 75 + ] ], "translation": "Workspace" }, @@ -6599,7 +11373,12 @@ "message": "Workspace created successfully. You can upgrade later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 147]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 147 + ] + ], "translation": "Workspace creato con successo. Potrai effettuare l'upgrade più tardi nelle impostazioni.", "obsolete": true }, @@ -6608,7 +11387,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 26] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 26 + ] ], "translation": "Workspace eliminato" }, @@ -6617,8 +11399,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 253], - ["src/views/settings/WorkspaceSettings.tsx", 82] + [ + "src/views/onboarding/workspace-details/index.tsx", + 253 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 82 + ] ], "translation": "Descrizione workspace" }, @@ -6627,7 +11415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 30] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 30 + ] ], "translation": "La descrizione del workspace non può superare i 280 caratteri" }, @@ -6636,7 +11427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 27] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 27 + ] ], "translation": "La descrizione del workspace deve contenere almeno 3 caratteri" }, @@ -6645,7 +11439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 50] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 50 + ] ], "translation": "Descrizione workspace aggiornata" }, @@ -6654,9 +11451,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 90], - ["src/views/pricing/components/Pricing.tsx", 54], - ["src/views/pricing/components/PricingTiers.tsx", 57] + [ + "src/views/home/components/Features.tsx", + 90 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 54 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 57 + ] ], "translation": "Membri del workspace" }, @@ -6665,9 +11471,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 227], - ["src/views/onboarding/workspace-details/index.tsx", 188], - ["src/views/settings/WorkspaceSettings.tsx", 63] + [ + "src/components/NewWorkspaceForm.tsx", + 227 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 188 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 63 + ] ], "translation": "Nome workspace" }, @@ -6676,8 +11491,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 30], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 15] + [ + "src/components/NewWorkspaceForm.tsx", + 30 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 15 + ] ], "translation": "Il nome del workspace non può superare i 64 caratteri" }, @@ -6685,7 +11506,12 @@ "message": "Workspace name is required", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 29]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 29 + ] + ], "translation": "Il nome del workspace è obbligatorio" }, "jZBHkN": { @@ -6693,7 +11519,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 14] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 14 + ] ], "translation": "Il nome del workspace deve contenere almeno 3 caratteri" }, @@ -6702,7 +11531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 45] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 45 + ] ], "translation": "Nome del workspace aggiornato" }, @@ -6710,7 +11542,12 @@ "message": "Workspace permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 53 + ] + ], "translation": "Permessi del workspace" }, "MN6YzG": { @@ -6718,7 +11555,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 62] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 62 + ] ], "translation": "Slug del workspace aggiornato" }, @@ -6726,28 +11566,48 @@ "message": "Workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 72]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 72 + ] + ], "translation": "URL del workspace" }, "DSGzV+": { "message": "Workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 97 + ] + ], "translation": "Nome utente del workspace" }, "/8pTF/": { "message": "workspace-url", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 241]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 241 + ] + ], "translation": "workspace-url" }, "4kJRen": { "message": "Writing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 43]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 43 + ] + ], "translation": "Scrittura" }, "zkWmBh": { @@ -6755,8 +11615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 19], - ["src/views/pricing/index.tsx", 25] + [ + "src/views/pricing/components/Pricing.tsx", + 19 + ], + [ + "src/views/pricing/index.tsx", + 25 + ] ], "translation": "Annuale" }, @@ -6764,42 +11630,72 @@ "message": "Yes, we offer an forever free plan for individual use. No restrictions, no paywalls, no limits.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 86 + ] + ], "translation": "Sì, offriamo un piano gratuito per sempre per uso individuale. Nessuna restrizione, nessun paywall, nessun limite." }, "RtlIYB": { "message": "You are about to change your password.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 91 + ] + ], "translation": "Stai per modificare la tua password." }, "3WXdoZ": { "message": "You can always change these later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 182]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 182 + ] + ], "translation": "Potrai sempre modificarli in seguito nelle impostazioni." }, "aelko+": { "message": "You can get a custom workspace URL, like <0>kan.bn/kan, by going into your <1>workspace settings and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 67 + ] + ], "translation": "Puoi ottenere un URL personalizzato per il workspace, come <0>kan.bn/kan, andando nelle <1>impostazioni del workspace e acquistando un abbonamento pro. Tutti gli abbonamenti aiutano a finanziare lo sviluppo del progetto!" }, "kSxwQL": { "message": "You can invite team members by clicking the \"Invite\" button in the top right corner of the <0>members page and entering their email address. They will receive an email with a link to join the workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 111 + ] + ], "translation": "Puoi invitare membri del team cliccando il pulsante \"Invita\" nell'angolo in alto a destra della <0>pagina membri e inserendo il loro indirizzo email. Riceveranno un'email con un link per unirsi al workspace." }, "vAj6xG": { "message": "You can self-host by following the instructions in our <0>repo.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 127]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 127 + ] + ], "translation": "Puoi effettuare il self-hosting seguendo le istruzioni nel nostro <0>repo." }, "h2FKMV": { @@ -6807,14 +11703,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/List.tsx", 117], - ["src/views/board/components/UpdateBoardSlugButton.tsx", 58], - ["src/views/board/components/VisibilityButton.tsx", 72], - ["src/views/board/index.tsx", 604], - ["src/views/board/index.tsx", 662], - ["src/views/boards/components/BoardsList.tsx", 71], - ["src/views/boards/index.tsx", 59], - ["src/views/boards/index.tsx", 80] + [ + "src/views/board/components/List.tsx", + 117 + ], + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 58 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 72 + ], + [ + "src/views/board/index.tsx", + 608 + ], + [ + "src/views/board/index.tsx", + 667 + ], + [ + "src/views/boards/components/BoardsList.tsx", + 71 + ], + [ + "src/views/boards/index.tsx", + 59 + ], + [ + "src/views/boards/index.tsx", + 80 + ] ], "translation": "Non hai i permessi necessari" }, @@ -6822,49 +11742,180 @@ "message": "You have been logged in successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 233]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 233 + ] + ], "translation": "Hai effettuato l'accesso con successo." }, "mchgzf": { "message": "You have been signed up successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 216]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 216 + ] + ], "translation": "Ti sei registrato con successo." }, "raHesj": { "message": "You have been unsubscribed!", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 98]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 98 + ] + ], "translation": "Hai annullato l'iscrizione!" }, "R275Pz": { "message": "You have unlimited seats with your Pro Plan. There is no additional charge for new members!", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 326]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 326 + ] + ], "translation": "Hai posti illimitati con il tuo piano pro. Non ci sono costi aggiuntivi per i nuovi membri!" }, "MdN5zD": { "message": "You need to be an admin to manage workspace permissions.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 86 + ] + ], "translation": "Devi essere un amministratore per gestire i permessi del workspace." }, + "Cb5YSG": { + "message": "You were added to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 33 + ] + ], + "translation": "" + }, + "EYpSRU": { + "message": "You were added to a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 34 + ] + ], + "translation": "" + }, + "j77sVH": { + "message": "You were assigned to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 45 + ] + ], + "translation": "" + }, + "4sxGcV": { + "message": "You were assigned to a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 46 + ] + ], + "translation": "" + }, + "9HDx2Z": { + "message": "You were mentioned in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 29 + ] + ], + "translation": "" + }, + "e6wIqm": { + "message": "You were mentioned in a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 30 + ] + ], + "translation": "" + }, + "11dHnN": { + "message": "You were removed from", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 37 + ] + ], + "translation": "" + }, + "YdIn4I": { + "message": "You were removed from a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 38 + ] + ], + "translation": "" + }, "2SePRT": { "message": "You've been invited to join a workspace on kan.bn.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 134]], + "origin": [ + [ + "src/views/invite/index.tsx", + 134 + ] + ], "translation": "Sei stato invitato a unirti a un workspace su kan.bn." }, "uOqaMC": { "message": "You've been invited to join a workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 135]], + "origin": [ + [ + "src/views/invite/index.tsx", + 135 + ] + ], "translation": "Sei stato invitato a unirti a un workspace." }, "GoDLB9": { @@ -6872,7 +11923,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 28 + ] ], "translation": "Il tuo account è stato eliminato." }, @@ -6880,49 +11934,84 @@ "message": "Your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 229]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 229 + ] + ], "translation": "Il tuo avatar" }, "evg7+A": { "message": "Your boards have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 382]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 382 + ] + ], "translation": "Le tue board sono state importate." }, "LqWW5F": { "message": "Your display name has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 42]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 42 + ] + ], "translation": "Il tuo nome visualizzato è stato aggiornato." }, "tca56/": { "message": "Your file has been uploaded successfully.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 46]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 46 + ] + ], "translation": "Il tuo file è stato caricato con successo." }, "HcT8J4": { "message": "Your GitHub account has been connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 100 + ] + ], "translation": "Il tuo account GitHub è stato connesso." }, "AdxYds": { "message": "Your GitHub account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 123]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 123 + ] + ], "translation": "Il tuo account GitHub è stato disconnesso." }, "PELbXB": { "message": "Your GitHub account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 220]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 220 + ] + ], "translation": "Il tuo account GitHub è connesso." }, "Ozt2vv": { @@ -6930,7 +12019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 70] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 70 + ] ], "translation": "La tua password è stata modificata." }, @@ -6938,49 +12030,108 @@ "message": "Your profile image has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 190]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 190 + ] + ], "translation": "La tua immagine del profilo è stata aggiornata." }, "+jbXzb": { "message": "Your projects have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 230]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 230 + ] + ], "translation": "I tuoi progetti sono stati importati." }, + "0AfkMq": { + "message": "Your role changed in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 41 + ] + ], + "translation": "" + }, + "GKeVeM": { + "message": "Your role was changed", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 42 + ] + ], + "translation": "" + }, "CJWDTP": { "message": "Your Trello account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 80]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 80 + ] + ], "translation": "Il tuo account Trello è stato disconnesso." }, "WRsbHO": { "message": "Your Trello account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 171]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 171 + ] + ], "translation": "Il tuo account Trello è connesso." }, "25fAUC": { "message": "Your unsubscribe link is missing a token. Please open the latest email and try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 33]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 33 + ] + ], "translation": "Il tuo link di disiscrizione non contiene un token. Apri l'ultima email e riprova." }, "GRAGsB": { "message": "Your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 322]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 322 + ] + ], "translation": "Il tuo workspace" }, "j0o6ml": { "message": "Your workspace description", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 325]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 325 + ] + ], "translation": "La descrizione del tuo workspace" }, "GnSSGm": { @@ -6988,7 +12139,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 51] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 51 + ] ], "translation": "La descrizione del tuo workspace è stata aggiornata." }, @@ -6997,7 +12151,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 27 + ] ], "translation": "Il tuo workspace è stato eliminato." }, @@ -7006,7 +12163,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 46] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 46 + ] ], "translation": "Il nome del tuo workspace è stato aggiornato." }, @@ -7015,7 +12175,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 63 + ] ], "translation": "Lo slug del tuo workspace è stato aggiornato." }, @@ -7024,8 +12187,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 197], - ["src/views/onboarding/workspace-details/index.tsx", 198] + [ + "src/views/onboarding/workspace-details/index.tsx", + 197 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 198 + ] ], "translation": "il-tuo-workspace" }, @@ -7033,7 +12202,12 @@ "message": "YouTube URL", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 147]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 147 + ] + ], "translation": "URL YouTube" } } \ No newline at end of file diff --git a/apps/web/src/locales/it/messages.ts b/apps/web/src/locales/it/messages.ts index 0e346d078..bac580cc6 100644 --- a/apps/web/src/locales/it/messages.ts +++ b/apps/web/src/locales/it/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Social media\"],\"+3TYXa\":[\"Per una sostenibilità a lungo termine, riconosciamo che tutti i buoni progetti open source necessitano di una fonte di entrate. La nostra proviene dall'offerta cloud a pagamento per workspace con più utenti e per slug workspace personalizzati. Non c'è alcun obbligo di utilizzarla e puoi ospitare il software sulla tua infrastruttura gratuitamente.\"],\"+5kO8P\":[\"Sabato\"],\"+8Nek/\":[\"Mensile\"],\"+EkBs0\":[\"Non è stato possibile aggiornare le tue preferenze. Riprova.\"],\"+MdEsf\":[\"La nuova password è obbligatoria\"],\"+OhFss\":[\"Inizia gratuitamente, senza limiti di utilizzo. Per la collaborazione, passa a un piano adatto alle dimensioni del tuo team.\"],\"+VoTOr\":[\"fatturato mensilmente\"],\"+djOzj\":[\"Invita membro\"],\"+h2faV\":[\"Impostazioni | Webhook\"],\"+jbXzb\":[\"I tuoi progetti sono stati importati.\"],\"+nvZ6j\":[\"Etichette e filtri\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Template\"],\"/asTmx\":[\"Segnalazione bug\"],\"/bBVaD\":[\"GitHub disconnesso\"],\"/bZzdR\":[\"Menzioni\"],\"/f3t6v\":[\"Configura quali azioni sono consentite per ogni ruolo del workspace. Questi permessi si applicano a tutti i membri con quel ruolo.\"],\"/gaSVU\":[\"Roadmap\"],\"/glL9Q\":[\"Nessun \",[\"0\"]],\"/jd3aj\":[\"Ruoli admin avanzati\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"Un'app kanban potente e flessibile che ti aiuta a organizzare il lavoro, monitorare i progressi e ottenere risultati, tutto in un unico posto.\"],\"/tOdd2\":[\"La tua immagine del profilo è stata aggiornata.\"],\"0+0/3e\":[\"Crea nuova etichetta\"],\"0+ewPp\":[\"Miglioramento\"],\"02i3WU\":[\"Importazioni\"],\"06EQqT\":[\"Duplicazione in corso…\"],\"0KjpAr\":[\"Può visualizzare i membri\"],\"0RE1AJ\":[\"Le bacheche che archivi appariranno qui.\"],\"0StR7t\":[\"Inserisci la tua nuova password\"],\"0jV46i\":[\"Impossibile eliminare l'elemento della checklist\"],\"0qyZ4b\":[\"Caricamento permessi...\"],\"0rPv1T\":[\"Immagine del profilo aggiornata\"],\"0utuU6\":[\"Copia checklist\"],\"0xD8Of\":[\"La pagina che stai cercando non esiste o è stata spostata.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Importa bacheca (1)\"],\"other\":[\"Importa bacheche (\",[\"boardCount\"],\")\"]}]],\"14Xi3Z\":[\"L'aggiunta di un nuovo membro costerà \",[\"price\"],\" aggiuntivi (\",[\"billingType\"],\") per postazione.\"],\"1H5u1m\":[\"Domande?\"],\"1WuwiM\":[\"Vai alle impostazioni\"],\"1bJKhj\":[\"Copia link alla scheda\"],\"1hzdxO\":[\"Permessi del workspace\"],\"1iShX0\":[\"Scadenza oggi\"],\"1njn7W\":[\"Chiaro\"],\"1rVAfU\":[\"Carica altre attività\"],\"1rWxEw\":[\"In attesa del cliente\"],\"1sRmLC\":[\"Discuti e collabora sulle card.\"],\"1wCGT0\":[\"Board illimitate\"],\"25fAUC\":[\"Il tuo link di disiscrizione non contiene un token. Apri l'ultima email e riprova.\"],\"25mvI+\":[\"I link di invito richiedono un abbonamento Team o Pro. Aggiorna il tuo workspace.\"],\"29sSki\":[\"ha completato l'elemento della checklist <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"Lista\"],\"2Bu8xj\":[\"Nessuna board trovata\"],\"2M84k3\":[\"Permessi personalizzati\"],\"2MPcep\":[\"Importazione completata\"],\"2POOFK\":[\"Gratuito\"],\"2Py5S/\":[\"Riconosco che tutti i dati del workspace verranno eliminati definitivamente e voglio procedere.\"],\"2Q871c\":[\"Impossibile aggiungere l'etichetta\"],\"2QGEbi\":[\"Impossibile eliminare il commento\"],\"2SePRT\":[\"Sei stato invitato a unirti a un workspace su kan.bn.\"],\"2X4ecw\":[\"Webhook eliminato con successo\"],\"2h4PVB\":[\"Il nome del tuo workspace è stato aggiornato.\"],\"2liqDZ\":[\"Riconosco che tutti i dati del mio account verranno eliminati definitivamente e voglio procedere.\"],\"2q/Q7x\":[\"Visibilità\"],\"2roTVj\":[\"Feedback inviato\"],\"3LDCpD\":[\"Questa azione non può essere annullata.\"],\"3WXdoZ\":[\"Potrai sempre modificarli in seguito nelle impostazioni.\"],\"3ZjRJY\":[\"ha rinominato la checklist <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Chiunque abbia questo link può unirsi al tuo workspace\"],\"3d54Wj\":[\"Webhook aggiornato con successo\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Connetti GitHub\"],\"3pIq39\":[\"Ruoli admin\"],\"479pdJ\":[\"Conferma la tua nuova password\"],\"4DOCMI\":[\"URL YouTube\"],\"4Revpc\":[\"Piccolo\"],\"4RoY9J\":[\"Post del blog\"],\"4XF0BB\":[\"Immagine del profilo\"],\"4gAX8s\":[\"Attiva/disattiva menu\"],\"4kJRen\":[\"Scrittura\"],\"4obmDr\":[\"404 - Pagina non trovata | kan.bn\"],\"51UCsN\":[\"Sposta in un altro elenco\"],\"53QYh8\":[\"Impossibile creare la board\"],\"55xJ/O\":[\"Errore durante la modifica della password\"],\"58AiWX\":[\"Conferma la tua nuova password\"],\"5ACX4z\":[\"Newsletter\"],\"5IXWmO\":[\"Controlla la tua casella di posta\"],\"5P4rhH\":[\"Impossibile aggiornare i membri\"],\"5RkSzq\":[\"Copia link board\"],\"5eZwRW\":[\"Connetti il tuo account Trello per importare le bacheche.\"],\"5h8ooz\":[\"Chiavi API\"],\"5iplxh\":[\"La nuova password deve essere diversa da quella attuale\"],\"5k0NLb\":[\"Revisione\"],\"5lWFkC\":[\"Accedi\"],\"5ntVtp\":[\"Impossibile testare il webhook\"],\"5y6qY8\":[\"ha aggiunto un allegato\"],\"69b7aE\":[\"Apri menu comandi\"],\"6EWT6T\":[\"Recruiting\"],\"6FDocz\":[\"Registrati con \"],\"6FsGbN\":[\"Inizia creando un nuovo \",[\"0\"]],\"6OTo9n\":[\"Il nome del template è obbligatorio\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Nuovo \",[\"0\"]],\"6YtxFj\":[\"Nome\"],\"6mbe4b\":[\"Individuali\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"I permessi del membro sono stati aggiornati.\"],\"6uBU1F\":[\"Accesso API completo\"],\"6zeSBB\":[\"Può creare card\"],\"74F7N/\":[\"Sei sicuro di voler eliminare il tuo account?\"],\"7EhE4k\":[\"Aggiorna etichetta\"],\"7L01XJ\":[\"Azioni\"],\"7PzzBU\":[\"Utente\"],\"7RpHg/\":[\"Username personalizzato\"],\"7Ufoyg\":[\"Liste illimitate\"],\"7aONWr\":[\"L'URL non può superare i 2048 caratteri\"],\"7b2yuC\":[\"Inserisci una password valida\"],\"7d1a0d\":[\"Pubblico\"],\"7eMo+U\":[\"Vai alla home\"],\"7hktsm\":[\"Per iniziare\"],\"7i8j3G\":[\"Azienda\"],\"8+BY11\":[\"URL della board copiato negli appunti\"],\"86FLn5\":[\"Caricamenti di file illimitati\"],\"86XI28\":[\"Conferma le tue preferenze email:\"],\"8AbRER\":[\"Imposta scadenza\"],\"8AwlaR\":[\"Membri illimitati e un nome utente workspace personalizzato per i team pronti a crescere.\"],\"8F1i42\":[\"Pagina non trovata\"],\"8Is1ih\":[\"Offerta di lancio\"],\"8RdLDU\":[\"Progetto personale\"],\"8TveY+\":[\"Board\"],\"8Z4pNX\":[\"Può creare liste\"],\"8iP0S8\":[\"Tutto ciò che è incluso nel piano gratuito, più:\"],\"8iP9oQ\":[\"Test del webhook non riuscito\"],\"8yFGGF\":[\"Impossibile rimuovere il membro\"],\"99VIgC\":[\"Rimuovi membro\"],\"9PaIxv\":[\"Funzionalità principali\"],\"9Xigls\":[\"In revisione\"],\"9YPBHv\":[\"Impossibile eliminare il webhook\"],\"9cDpsw\":[\"Permessi\"],\"9eF5oV\":[\"Bentornato\"],\"9h7RDh\":[\"Offerta\"],\"9lFfqv\":[\"/mese\"],\"9s9O5h\":[\"Errore durante l'eliminazione dello spazio di lavoro\"],\"9u5BOr\":[\"Membri | \",[\"0\"]],\"9wdpwp\":[\"Portale di fatturazione\"],\"9x4DAL\":[[\"0\"],\" non trovato\"],\"9y1RcT\":[\"Siamo solo all'inizio.\"],\"A23Y7X\":[\"Unisciti al workspace | kan.bn\"],\"A42Dqn\":[\"Branding personalizzato\"],\"A5hiCy\":[\"Crea template\"],\"A8jqN7\":[\"Impossibile inviare il feedback\"],\"ABCjd9\":[\"Pubblicazione\"],\"ADEin1\":[\"Impostazioni | Fatturazione\"],\"ALhEZV\":[\"Può invitare membri\"],\"ANyn0x\":[\"Tutto ciò di cui hai bisogno, gratis per sempre. Board illimitate, liste illimitate, card illimitate. Fai l'upgrade quando vuoi.\"],\"ARvBT/\":[\"fatturato annualmente\"],\"ASjvm9\":[\"URL del workspace\"],\"AUYALh\":[\"Prossimamente\"],\"AX4ktp\":[\"Creazione di contenuti\"],\"AZI/wb\":[\"Etichette e filtri\"],\"AdxYds\":[\"Il tuo account GitHub è stato disconnesso.\"],\"AeXO77\":[\"Account\"],\"Alp2ti\":[\"Contatta il reparto vendite\"],\"Ax/hYa\":[\"La descrizione del workspace non può superare i 280 caratteri\"],\"B3xxao\":[\"Aggiungi una card\"],\"BBUDfW\":[\"Urgente\"],\"BEVzjL\":[\"Importazione fallita\"],\"BJbLe4\":[\"Utilizziamo la <0>licenza AGPL-3.0.\"],\"BMkVQ3\":[\"ha eliminato la checklist <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"ha spostato la card da <0>\",[\"0\"],\" a <1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Duplica scheda\"],\"BZkYSt\":[\"ha rimosso \",[\"0\"],\" etichette: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Sei sicuro di voler eliminare il workspace \",[\"0\"],\"?\"],\"Bhgd0l\":[\"Contattaci\"],\"BzEFor\":[\"o\"],\"C56tim\":[\"Impossibile aggiornare la data di scadenza\"],\"C6gv54\":[\"La bacheca è stata ripristinata.\"],\"CAL6E9\":[\"Team\"],\"CB/NpV\":[\"Priorità alta\"],\"CHZ1jC\":[\"ha eliminato l'elemento della checklist <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Inserisci un nome valido\"],\"CJWDTP\":[\"Il tuo account Trello è stato disconnesso.\"],\"CJukzS\":[[\"0\"],\" etichette\"],\"CTqTgr\":[\"Scorciatoie\"],\"CYWHT+\":[\"Errore durante il caricamento dell'immagine del profilo\"],\"Cd4sTD\":[\"Ideale per singoli utenti e creator che iniziano\"],\"Ci/KUX\":[\"Impostazioni | Workspace\"],\"CkVV1t\":[\"Errore durante l'aggiornamento della descrizione dello workspace\"],\"Cmudpi\":[\"Può eliminare workspace\"],\"CozWO1\":[\"Nome workspace\"],\"CujNX4\":[\"ha aggiunto un allegato <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"Sistema\"],\"D0esZz\":[\"Registro attività\"],\"D3C4Yx\":[\"La password attuale è obbligatoria\"],\"D7/JvJ\":[\"Regola il ritaglio quadrato per adattarlo al tuo avatar.\"],\"D9ROdV\":[\"Link di invito\"],\"DAV3uK\":[\"Permessi aggiornati\"],\"DBC3t5\":[\"Domenica\"],\"DFjdv0\":[\"Elimina template\"],\"DMeWZD\":[\"Sei sicuro di voler eliminare questo \",[\"0\"],\"?\"],\"DPfwMq\":[\"Fatto\"],\"DSGzV+\":[\"Nome utente del workspace\"],\"DahTzR\":[\"Impossibile eliminare la checklist\"],\"DbZgsJ\":[\"Crea template\"],\"DtXlZq\":[\"Impossibile aggiornare la checklist\"],\"Dz63YI\":[\"Si è verificato un errore durante la disconnessione del tuo account GitHub.\"],\"E0t3jO\":[\"ha aggiunto l'elemento della checklist <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Prezzo per postazione\"],\"E8zYtd\":[\"ha rimosso l'assegnazione di <0>\",[\"0\"],\" dalla card\"],\"ECJKc4\":[\"Chiave API creata\"],\"EEHmPC\":[\"Offerta di lancio: membri illimitati con Pro\"],\"EH8IL3\":[\"Checklist\"],\"EII/X8\":[\"Tutte le funzionalità Teams +\"],\"ERpq2P\":[\"Nessun risultato trovato per \\\"\",[\"debouncedQuery\"],\"\\\".\"],\"ESClHO\":[\"Supporto email prioritario\"],\"Eg99Sc\":[\"Nessun metodo di autenticazione attualmente disponibile\"],\"Eit43O\":[\"ha impostato la scadenza\"],\"EkH9pt\":[\"Aggiorna\"],\"EvArWh\":[\"Collabora senza problemi con il tuo team.\"],\"F/FPk/\":[\"Impostazioni | Permessi\"],\"F/vB2g\":[\"Idee per migliorare questa pagina...\"],\"F0YmUY\":[\"Copia link card\"],\"F3bW6y\":[\"Piattaforma\"],\"F4KRmY\":[\"$8/mese\"],\"F4PLG4\":[\"Descrizione workspace aggiornata\"],\"F6m23G\":[\"Caricamento file\"],\"F6pfE9\":[\"Attivo\"],\"F8DaWi\":[\"Sola visualizzazione\"],\"FEr96N\":[\"Tema\"],\"FdtSNC\":[\"Crea workspace\"],\"FmN5me\":[\"Risoluzione\"],\"FmfJjN\":[\"Visualizza e gestisci le tue chiavi API.\"],\"Fpci8b\":[\"Sei sicuro di voler eliminare questa checklist?\"],\"G1Gw0v\":[\"Nuovo template\"],\"GAD3Dx\":[\"Dominio personalizzato\"],\"GDvlUT\":[\"Ruolo\"],\"GRAGsB\":[\"Il tuo workspace\"],\"GYv20o\":[\"Impossibile aggiornare i permessi\"],\"GdWB+V\":[\"Webhook creato con successo\"],\"GnRmu4\":[\"Nome della checklist\"],\"GnSSGm\":[\"La descrizione del tuo workspace è stata aggiornata.\"],\"GoDLB9\":[\"Il tuo account è stato eliminato.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Roadmap estesa\"],\"Gxxi5J\":[\"Aggiungi checklist\"],\"H5G+qG\":[\"Qual è la differenza tra Kan e Trello?\"],\"HBI6nY\":[\"Serve aiuto?\"],\"HO+uOC\":[\"Smistamento\"],\"HQVm6e\":[\"Questo URL è già in uso\"],\"HVIzNO\":[\"Può visualizzare le liste\"],\"HYV6Lq\":[\"Impossibile accettare l'invito. Riprova più tardi o contatta l'assistenza clienti.\"],\"HcT8J4\":[\"Il tuo account GitHub è stato connesso.\"],\"HeFWjW\":[\"Prossimi passi\"],\"Hf1cEZ\":[\"L'URL del webhook è obbligatorio\"],\"Hg1qE9\":[\"Lo slug del tuo workspace è stato aggiornato.\"],\"I+AROe\":[\"Può modificare card\"],\"I0gAKM\":[\"Impossibile aggiornare la lista\"],\"IDvohQ\":[\"ha contrassegnato un elemento della checklist come incompleto\"],\"IFgUX6\":[\"Può rimuovere membri\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Passa a Pro\"],\"Iqh0Uv\":[\"Pianificato\"],\"IqjpYe\":[\"Visibilità email\"],\"IrZaAn\":[\"Password modificata\"],\"It4/FS\":[\"Ripristina bacheca\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Continua con \"],\"J4+OTA\":[\"Sposta nell'elenco\"],\"J5nbej\":[\"Critico\"],\"J5pbP6\":[\"Può modificare ruoli e permessi dei membri\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JCdzgZ\":[\"Richiesta di funzionalità\"],\"JUce1S\":[\"Assegnatari\"],\"JbXXUW\":[\"Tieni presente che questa azione è irreversibile.\"],\"JcCDm9\":[\"Template creato\"],\"Jgaz7E\":[\"Permessi ripristinati\"],\"JjEJSy\":[\"Configura il tuo workspace\"],\"JnWJXY\":[\"magic link\"],\"JxhWxU\":[\"in\"],\"JyXBgS\":[\"docs\"],\"K3iLeO\":[\"Scopri cosa dicono i nostri utenti su Kan\"],\"K7k9u3\":[\"Impossibile spostare la scheda\"],\"KAsRdK\":[\"Vai ai membri\"],\"KEim/+\":[\"ha rimosso un allegato\"],\"KFJgmZ\":[\"Il nome visualizzato deve contenere almeno 3 caratteri\"],\"KLJ4eD\":[\"Link di invito copiato\"],\"KM6m8p\":[\"Team\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Controlli admin avanzati\"],\"KiVc+q\":[\"Tempo pieno\"],\"KuSt9W\":[\"Come faccio il self-hosting?\"],\"L5WQLg\":[\"Il token è obbligatorio\"],\"L5ZPjz\":[\"ha aggiornato un elemento della checklist\"],\"LTGE7Y\":[\"Workspace creato con successo. Potrai effettuare l'upgrade più tardi nelle impostazioni.\"],\"LeM5RY\":[\"Impossibile cancellare le sostituzioni\"],\"LoUCpj\":[\"Errore durante l'aggiornamento del nome dello workspace\"],\"LqWW5F\":[\"Il tuo nome visualizzato è stato aggiornato.\"],\"LrcnbT\":[\"Ospita Kan sulla tua infrastruttura. Ideale per le organizzazioni che necessitano del controllo completo sui propri dati.\"],\"Lt+ZP3\":[\"ha completato un elemento della checklist\"],\"M9p3Vw\":[\"Log attività illimitato\"],\"MCIXdZ\":[\"Connetti il tuo account GitHub per importare progetti.\"],\"MFKlMB\":[\"Invita\"],\"MHrjPM\":[\"Titolo\"],\"MI5OBT\":[\"L'URL può contenere solo lettere, numeri e trattini\"],\"MK16u2\":[\"Nessuna data\"],\"MKAScN\":[\"Può visualizzare le bacheche\"],\"MN6YzG\":[\"Slug del workspace aggiornato\"],\"MWrbWq\":[\"Impostazioni | Account\"],\"MdN5zD\":[\"Devi essere un amministratore per gestire i permessi del workspace.\"],\"MdwUGG\":[\"Risparmia tempo con i modelli di board riutilizzabili.\"],\"MeO/vH\":[\"Questo comporterà l'eliminazione permanente di tutti i dati associati a questo workspace.\"],\"MlyjJu\":[\"Il nome visualizzato non può superare i 280 caratteri\"],\"MxQXhL\":[\"Impossibile creare lo workspace\"],\"N/bcWA\":[\"Accedi | kan.bn\"],\"N3380t\":[\"Può creare board\"],\"N7aud6\":[\"Ricerca intelligente\"],\"NH54UR\":[\"ha rinominato l'elemento della checklist in <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"La bacheca è stata archiviata.\"],\"NgaR6B\":[\"Inserisci la tua password\"],\"NnH3pK\":[\"Test\"],\"NoNwIX\":[\"Inattivo\"],\"NypLoL\":[\"ha rinominato una checklist\"],\"O0li0W\":[\"Inserisci la tua password attuale e scegli una nuova password sicura.\"],\"O1wAlQ\":[\"Ospite\"],\"O3oNi5\":[\"Email\"],\"O83K21\":[\"ha aggiunto un elemento della checklist\"],\"O9jVbx\":[\"Bassa priorità\"],\"OAYToL\":[\"Questo rimuoverà tutti i permessi personalizzati dei membri in questo workspace. I membri erediteranno i permessi solo dai loro ruoli.\"],\"OIA0ad\":[\"Nome del workspace aggiornato\"],\"OTxjpR\":[\"il-tuo-workspace\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Disconnetti GitHub\"],\"Oi+J+N\":[\"Scegli un piano per iniziare. Tutti i piani a pagamento includono una prova gratuita di 14 giorni.\"],\"OkTY4+\":[\"Il secret non può superare i 512 caratteri\"],\"Oo4E6p\":[\"Impossibile duplicare la scheda\"],\"OpNhRn\":[\"Nessuna carta di credito richiesta\"],\"OtjenF\":[\"Inserisci un indirizzo email valido\"],\"OvoEq7\":[\"Membro\"],\"OwneeH\":[\"Username workspace personalizzato\"],\"Ozt2vv\":[\"La tua password è stata modificata.\"],\"P6dJdq\":[\"Override cancellati\"],\"P8Cunr\":[\"Username predefinito\"],\"PCIlOO\":[\"Aggiungi membro\"],\"PELbXB\":[\"Il tuo account GitHub è connesso.\"],\"PRjvDT\":[\"Sei sicuro di voler eliminare questo commento?\"],\"PRofO0\":[\"Modifica video YouTube\"],\"PTzsxH\":[\"Visibilità della board aggiornata\"],\"PVT7q7\":[\"GitHub connesso\"],\"PZCqeW\":[\"Riprova più tardi.\"],\"Pat4r8\":[\"Roadmap base\"],\"PpZkda\":[\"Funzionalità\"],\"PyYD/v\":[\"ha assegnato <0>\",[\"0\"],\" alla card\"],\"Q60WUZ\":[\"Impossibile avviare il checkout\"],\"Q9pQaX\":[\"Nessun ruolo trovato per questo workspace.\"],\"QD8opX\":[\"Board\"],\"QHhZeE\":[\"Template creato con successo\"],\"QNtP5M\":[\"Usa template\"],\"Qh7QmR\":[\"Rimosso dai preferiti\"],\"QnzD50\":[\"On-premise\"],\"QtACvI\":[\"Crea etichetta\"],\"Qtzfdk\":[\"Piano Pro ∞\"],\"R+w/Va\":[\"Fatturazione\"],\"R1c3Mq\":[\"Il nome della board è obbligatorio\"],\"R275Pz\":[\"Hai posti illimitati con il tuo piano pro. Non ci sono costi aggiuntivi per i nuovi membri!\"],\"R3FsF4\":[\"Download non riuscito\"],\"R41XLH\":[\"Impossibile aggiornare il webhook\"],\"R6pB8R\":[\"Metti una stella su Github\"],\"RHZu7R\":[\"Amato dai team di tutto il mondo\"],\"RJA+sg\":[\"Nuovo ticket\"],\"RRn9jf\":[\"Clicca sul link che abbiamo inviato a \",[\"magicLinkRecipient\"],\" per accedere.\"],\"RSGOS1\":[\"Può eliminare liste\"],\"RfgJqw\":[\"ha aggiornato la data di scadenza\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Invia feedback\"],\"RtlIYB\":[\"Stai per modificare la tua password.\"],\"RzxgOE\":[\"Ruoli e permessi\"],\"SFnH1j\":[\"Perché creare un Trello open source?\"],\"SMaFdc\":[\"Annulla iscrizione\"],\"SNfg0e\":[\"Può visualizzare lo workspace\"],\"SPLN9O\":[\"Possiedi i tuoi dati\"],\"SRvxId\":[\"Secret HMAC per la verifica della firma\"],\"STSYcd\":[\"Può eliminare commenti\"],\"SUXBxp\":[\"Ingegneria\"],\"SUvm1Y\":[\"Perfetto per chi inizia e ha bisogno solo delle funzionalità essenziali.\"],\"SWEskc\":[\"L'URL deve contenere almeno 3 caratteri\"],\"Sb2gYF\":[\"Nuova lista\"],\"ScJ9fj\":[\"Informativa sulla privacy\"],\"Se/UIp\":[\"Da fare\"],\"SiPp29\":[\"Crea webhook\"],\"SkCNhl\":[\"Cerca board e card...\"],\"SlfejT\":[\"Errore\"],\"T/pF0Z\":[\"Rimuovi dai preferiti\"],\"T21jY/\":[\"ha aggiunto un'etichetta alla card\"],\"T7DJ2k\":[\"Impossibile aggiungere il commento\"],\"T7LJic\":[\"ha spostato la card in un'altra lista\"],\"T7Mywq\":[\"Impossibile aggiornare la board\"],\"TCOMOO\":[\"Modifica permessi\"],\"TCt/8K\":[\"Accesso API limitato\"],\"TFv5tM\":[\"Impossibile aggiornare il ruolo\"],\"TH3Irz\":[\"Permesso\"],\"TKFUnX\":[\"Account eliminato\"],\"TX0bT7\":[\"Nessun webhook configurato. Aggiungi un webhook per ricevere notifiche.\"],\"TXO5TM\":[\"Nessuna scorciatoia da tastiera registrata.\"],\"TYli1B\":[\"Può modificare commenti\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Revisione del codice\"],\"TdfEV7\":[\"Archiviato\"],\"TjREUS\":[\"Nuova chiave API\"],\"TmvrjU\":[\"L'URL della board deve contenere almeno 3 caratteri\"],\"TvY/XA\":[\"Documentazione\"],\"Tz0i8g\":[\"Impostazioni\"],\"TztLaN\":[\"Impossibile creare la lista\"],\"U2+rn0\":[\"Il nome del webhook è obbligatorio\"],\"U3pytU\":[\"Admin\"],\"U5dMR6\":[\"Visualizza workspace\"],\"UCLeG0\":[\"Termini di servizio\"],\"UGCIzB\":[\"Aggiungi / modifica etichetta\"],\"UQbwrz\":[\"Tutti i sistemi operativi\"],\"URAE3q\":[\"In pausa\"],\"USVCGU\":[\"Errore durante la disattivazione del link di invito\"],\"UbRKMZ\":[\"In attesa\"],\"UbYdrA\":[\"Frequenza di pagamento\"],\"UeDFpo\":[\"Come viene finanziato il progetto?\"],\"UirJfL\":[\"SLA personalizzato\"],\"UlhdTP\":[\"Workspace eliminato\"],\"Un80BR\":[\"Amici OSS\"],\"UoSI+i\":[\"Ideale per piccoli team in crescita che necessitano di collaborazione\"],\"UveK6V\":[\"Vai all'app\"],\"Uworke\":[\"Part-time\"],\"UxKoFf\":[\"Navigazione\"],\"V1KOLq\":[\"Notifiche email per le menzioni\"],\"V3MPSQ\":[\"ha aggiornato il titolo\"],\"V8YWP3\":[\"Inserisci un titolo personalizzato\"],\"VHS0aJ\":[\"Cancellare tutti i permessi personalizzati?\"],\"VKoDQD\":[\"Crea nuovo \",[\"0\"]],\"VUZDlr\":[\"Testimonianze\"],\"VXk54Y\":[\"ha auto-assegnato la card\"],\"VbyRUy\":[\"Commenti\"],\"VhMDMg\":[\"Cambia password\"],\"Vt50G1\":[\"Kanban base\"],\"W/Elkg\":[\"Priorità media\"],\"W/nQk1\":[\"Piano gratuito\"],\"W1ewR0\":[\"Impossibile copiare il link\"],\"W5r8Qh\":[\"ha eliminato un elemento della checklist\"],\"W8oT+L\":[\"Impossibile recuperare le informazioni del video\"],\"WHHLh9\":[\"Impossibile eliminare l'allegato\"],\"WI4eGo\":[\"Come ottengo un URL personalizzato?\"],\"WQPDcG\":[\"Impossibile aggiornare l'elemento della checklist\"],\"WRkpB1\":[\"Registrazione disabilitata\"],\"WRsbHO\":[\"Il tuo account Trello è connesso.\"],\"WYDptz\":[\"Abbonamento richiesto\"],\"WYwN1G\":[\"Nuova importazione\"],\"WbTDwg\":[\"In corso\"],\"Weq9zb\":[\"Generale\"],\"WmPhYW\":[\"Si è verificato un errore durante la disconnessione del tuo account Trello.\"],\"WnEwDO\":[\"Hai già un account? <0><1>Accedi\"],\"Ws+3X+\":[\"Posti illimitati e funzionalità avanzate per team in crescita.\"],\"Wy6pcF\":[\"Impossibile aggiornare la visibilità della board\"],\"X0N0PA\":[\" (modificato)\"],\"XDRXbZ\":[\"La descrizione del workspace deve contenere almeno 3 caratteri\"],\"XEoGkQ\":[\"Vai alla homepage\"],\"XILg0L\":[\"Indirizzo email non valido\"],\"XJOV1Y\":[\"Attività\"],\"XNxYxq\":[\"Template di board\"],\"XTKtey\":[\"Crea lista\"],\"XXbgHS\":[\"Assunto\"],\"XYLcNv\":[\"Supporto\"],\"XicmhT\":[\"Data di scadenza\"],\"Xid3K6\":[\"L'URL della board può contenere solo lettere, numeri e trattini\"],\"Xjj/kS\":[\"Kanban reinventato\"],\"XpcjLO\":[\"Impossibile aggiornare l'URL della board\"],\"Y8yzGg\":[\"Inizia gratis. Aggiorna man mano che il tuo team cresce. Nessun costo nascosto, nessun contratto.\"],\"YBBifR\":[\"Disconnetti Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Impossibile riordinare l'elemento della checklist\"],\"YRk79X\":[\"Sicurezza avanzata, conformità e supporto dedicato per grandi organizzazioni.\"],\"YVT40D\":[\"ha rimosso l'etichetta <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Errore durante l'upgrade dell'abbonamento\"],\"YcyP2z\":[\"Impossibile creare il template\"],\"Yf9FAx\":[\"Non potranno accedere a questo workspace.\"],\"YhvWXb\":[\"Analisi della board\"],\"YirHq7\":[\"Feedback\"],\"YkfDoz\":[\"Annuale\"],\"YoyKbT\":[\"Questa chiave API verrà mostrata solo una volta. Salvala in un luogo sicuro.\"],\"Ypy5pZ\":[\"Sei sicuro di voler eliminare il webhook \\\"\",[\"webhookName\"],\"\\\"? Questa azione non può essere annullata.\"],\"YtUfwW\":[\"Impossibile effettuare il login con \",[\"0\"],\". Riprova.\"],\"Yx0Ud8\":[\"Richiesto\"],\"Z3FXyt\":[\"Caricamento...\"],\"Z3krJD\":[\"Consenti ai membri del workspace di vedere gli indirizzi email degli altri\"],\"Z6r9z1\":[\"Impossibile eliminare la card\"],\"ZAs2NN\":[\"Tutte le funzionalità Pro +\"],\"ZDGm40\":[\"Elimina account\"],\"ZDIydz\":[\"Inizia\"],\"ZDPJBc\":[\"I nomi utente personalizzati richiedono l'aggiornamento a un piano Pro\"],\"ZDo4HN\":[\"Brainstorming\"],\"ZH7TVS\":[\"Titolo della card\"],\"ZL1A+p\":[\"Impossibile caricare l'allegato. Riprova.\"],\"ZT4Khw\":[\"Sei sicuro di voler eliminare questa card?\"],\"ZU5IYI\":[\"Board illimitate, liste illimitate, card illimitate. Nessuna carta di credito richiesta.\"],\"ZXSPJt\":[\"Si è verificato un errore imprevisto. Riprova più tardi.\"],\"ZqDqbi\":[\"Organizza e trova le card rapidamente con potenti strumenti di filtraggio.\"],\"Zz1qkk\":[\"Card illimitate\"],\"a3LDKx\":[\"Sicurezza\"],\"aHCEmh\":[\"Prezzi\"],\"aHRWVI\":[\"ha rimosso la data di scadenza\"],\"aJ4pMe\":[\"FAQ\"],\"aKJHG+\":[\"Archivia bacheca\"],\"aW3TOw\":[\"Notifiche email\"],\"aWDhU5\":[\"Kanban è meglio con un team. Perfetto per team piccoli e in crescita che vogliono collaborare.\"],\"aWlSc/\":[\"Crea nuova lista\"],\"abUZlY\":[\"Aggiungi dettagli...\"],\"aelko+\":[\"Puoi ottenere un URL personalizzato per il workspace, come <0>kan.bn/kan, andando nelle <1>impostazioni del workspace e acquistando un abbonamento pro. Tutti gli abbonamenti aiutano a finanziare lo sviluppo del progetto!\"],\"agPptk\":[\"Medio\"],\"aiHZVP\":[\"Visualizza documentazione\"],\"b/LfJo\":[\"email\"],\"b3Thhd\":[\"Caricamento non riuscito\"],\"b5FKyH\":[\"ha aggiunto l'etichetta <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Crea \",[\"0\"]],\"bD8I7O\":[\"Completa\"],\"bDI6VI\":[[\"0\"],\" è stato rimosso dai tuoi preferiti.\"],\"bFREhu\":[\"Fine dell'elenco\"],\"bJZm1W\":[\"Candidati\"],\"bJtM0P\":[\"Questo URL dello workspace è riservato\"],\"bKzM8L\":[\"Account manager dedicato\"],\"bZSICm\":[\"Impossibile aggiungere l'elemento della checklist\"],\"bcIybO\":[\"Il nome del workspace è obbligatorio\"],\"bdztP2\":[\"Ricerca\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"Il ruolo del membro è stato aggiornato.\"],\"bff61F\":[\"Piano team\"],\"bfgr/e\":[\"Domanda\"],\"bmXKoX\":[\"ha aggiunto \",[\"0\"],\" etichette: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Errore durante l'eliminazione dell'account\"],\"c/IAuR\":[\"Importante\"],\"c3b0B0\":[\"Inizia\"],\"c4nMcR\":[\"Il tuo avatar\"],\"c9AJhn\":[\"Unisciti al workspace\"],\"cAgBMh\":[\"Controllo e proprietà completi:\"],\"cFQEU/\":[\"Apri scorciatoie da tastiera\"],\"cOh+MI\":[\"Screening\"],\"cWXW+7\":[\"Aggiungi webhook\"],\"cWcxrL\":[\"Nuova checklist\"],\"cWtfn1\":[\"Passa a Pro ($29/mese)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Descrizione workspace\"],\"cji2nM\":[\"Errore durante la creazione del link di invito\"],\"cnGeoo\":[\"Elimina\"],\"cp1rsD\":[\"Disattiva link di invito\"],\"csFbe+\":[\"Vai ai modelli\"],\"curoK5\":[\"Nuovo workspace\"],\"d+F6q9\":[\"Creato\"],\"d33Usy\":[\"Crea checklist\"],\"dEgA5A\":[\"Annulla\"],\"dUh9QW\":[\"Pianificazione\"],\"ddrz1m\":[\"In ritardo\"],\"delOXn\":[\"Impossibile aggiornare le etichette\"],\"dgr4Kq\":[\"Modifica etichetta\"],\"dmKdk0\":[\"Una volta eliminato il tuo workspace, non si può tornare indietro. Questa azione non può essere annullata.\"],\"dsLT3m\":[\"Crea card\"],\"dtQIWT\":[\"Collaborazione\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Questo URL del workspace è già stato utilizzato\"],\"e1v+J3\":[\"Secret (facoltativo)\"],\"e4hPSt\":[\"Ripristina impostazioni predefinite del ruolo\"],\"eEQyz+\":[\"Tieni traccia di tutte le modifiche alle card con una cronologia dettagliata delle attività.\"],\"ePK91l\":[\"Modifica\"],\"eZCGbT\":[\"Sì, offriamo un piano gratuito per sempre per uso individuale. Nessuna restrizione, nessun paywall, nessun limite.\"],\"edWbV6\":[\"Link copiato\"],\"ekCRTP\":[\"Rifiutato\"],\"en3oy5\":[\"Funzionalità\"],\"euc6Ns\":[\"Duplica\"],\"eus61c\":[\"Invia test\"],\"evg7+A\":[\"Le tue board sono state importate.\"],\"evj0lK\":[\"Offrite un piano gratuito?\"],\"f8fH8W\":[\"Design\"],\"f8lDFq\":[\"ha creato la card\"],\"fDQ7hA\":[\"Copia etichette\"],\"fEY2vP\":[\"Card non trovata\"],\"fQCrjt\":[\"La visibilità della tua bacheca è stata impostata su \",[\"0\"],\".\"],\"fR9laE\":[\"Inserisci la tua password attuale\"],\"fSf2ee\":[\"Visualizza la nostra roadmap.\"],\"fW5sSv\":[\"Modifica webhook\"],\"fYVH36\":[\"Impossibile aggiornare il commento\"],\"fcWrnU\":[\"Esci\"],\"fuwKpE\":[\"Riprova.\"],\"fvLNDy\":[\"Nessuna lista è stata ancora creata\"],\"fzGyWs\":[\"Modifica la dimensione del carattere dell'applicazione.\"],\"fziA2d\":[\"Commenti illimitati\"],\"g2xBxu\":[\"Importare le tue bacheche Trello in Kan è facile. Puoi seguire la nostra guida passo dopo passo <0>qui.\"],\"g9NChz\":[\"Account manager\"],\"gGx5tM\":[\"Modifica\"],\"gKmoow\":[\"Questo URL è riservato\"],\"gL/7jw\":[\"Aggiungi descrizione... (digita '/' per aprire i comandi o '@' per menzionare)\"],\"gQ/02p\":[\"Errore nella disconnessione da GitHub\"],\"gUX7b+\":[\"L'alternativa open source <0/> a Trello\"],\"gZxH/p\":[\"ha modificato la data di scadenza in <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"Il nome del workspace non può superare i 64 caratteri\"],\"gkxGkF\":[\"Prova gratuita di 14 giorni · Cambia piano o annulla in qualsiasi momento\"],\"gkzAEM\":[\"Continua con \",[\"0\"]],\"goklcJ\":[\"Colloquio\"],\"gpfJ3v\":[\"Gratuito, per sempre\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"L'URL della board non può superare i 60 caratteri\"],\"h16FyT\":[\"Liste\"],\"h2FKMV\":[\"Non hai i permessi necessari\"],\"h2ztFt\":[\"Tutte le funzionalità Free +\"],\"h4VV67\":[\"ha aggiunto una checklist\"],\"h7MgpO\":[\"Scorciatoie da tastiera\"],\"h8DugX\":[\"Etichette\"],\"hAMddS\":[\"ha rimosso la propria assegnazione dalla card\"],\"hB02vO\":[\"Gestisci membri\"],\"hXMFoN\":[\"Nessuna lista\"],\"hYzsXr\":[\"Impostazioni | Integrazioni\"],\"hty0d5\":[\"Lunedì\"],\"i0ZMQl\":[\"Bacheca archiviata\"],\"i30J2U\":[\"Nessun progetto trovato\"],\"i5rE2/\":[\"L'URL non può superare i 64 caratteri\"],\"iH8pgl\":[\"Indietro\"],\"iHcdea\":[\"Scadenza la prossima settimana\"],\"iLbjv+\":[\"Può modificare workspace\"],\"iQmbPb\":[\"Licenza\"],\"iSLIjg\":[\"Connetti\"],\"iTylMl\":[\"Template\"],\"iVIGZb\":[\"Allegato caricato\"],\"isRobC\":[\"Nuovo\"],\"itgYbC\":[\"Webhook di test inviato con successo!\"],\"iwr7AP\":[\"Idee\"],\"iy1wb+\":[\"Impostazioni | API\"],\"j0o6ml\":[\"La descrizione del tuo workspace\"],\"j1+HPc\":[\"Si è verificato un errore durante la connessione del tuo account GitHub.\"],\"j2+d/o\":[\"Riferimento API\"],\"j9IZZ0\":[\"URL workspace personalizzato\"],\"jDRt4n\":[\"Vuoi annullare l'iscrizione?\"],\"jEw0Mr\":[\"Inserisci un URL valido\"],\"jIuWsV\":[\"Il nome del webhook non può superare i 255 caratteri\"],\"jL82rC\":[\"Cancella permessi personalizzati\"],\"jNuzV/\":[\"Può eliminare card\"],\"jQ6I8X\":[\"Ruolo aggiornato\"],\"jZBHkN\":[\"Il nome del workspace deve contenere almeno 3 caratteri\"],\"jfC/xh\":[\"Contatti\"],\"jl3aEJ\":[\"ha contrassegnato l'elemento della checklist <0>\",[\"0\"],\" come incompleto\"],\"jlB2RY\":[\"La password attuale inserita non è corretta.\"],\"jwI32v\":[\"Board non trovata\"],\"k7rCa/\":[\"Grande\"],\"kECVpo\":[\"Sei sicuro di voler eliminare questa etichetta?\"],\"kQwvU8\":[\"ha rimosso un'etichetta dalla card\"],\"kSxwQL\":[\"Puoi invitare membri del team cliccando il pulsante \\\"Invita\\\" nell'angolo in alto a destra della <0>pagina membri e inserendo il loro indirizzo email. Riceveranno un'email con un link per unirsi al workspace.\"],\"kYu0eF\":[\"Elimina workspace\"],\"kfOGMr\":[\"Quick win\"],\"klpSmb\":[\"Modifica URL workspace\"],\"kp6L3T\":[\"Questo nome utente dello workspace è già stato utilizzato\"],\"kryGs+\":[\"Card\"],\"kuoc68\":[\"$10/mese\"],\"kxEs5t\":[\"Importazioni Trello\"],\"l2PIAy\":[\"Self host con Github\"],\"l31EoQ\":[\"Trova risposte alle domande più comuni su Kan. Non trovi quello che cerchi? Sentiti libero di <0>contattarci.\"],\"l3s5ri\":[\"Importa\"],\"l4asa1\":[\"Questa bacheca è privata o non esiste\"],\"lGjicL\":[\", oppure consulta il nostro\"],\"lKAvEd\":[\"Errore durante la disconnessione da Trello\"],\"lXvXNI\":[\"Impossibile copiare il link di invito\"],\"lYT7pQ\":[\"Elimina lista\"],\"lkz85l\":[\"La principale differenza tra Kan e Trello è che Kan è open source, permettendo a chiunque di visualizzare, modificare e contribuire al nostro codice. La nostra offerta cloud non prevede inoltre alcuna restrizione sulle funzionalità per l'uso individuale, mentre Trello blocca funzionalità di base come il numero di bacheche che puoi creare dietro un paywall.\"],\"lo8xBK\":[\"Sei sicuro di voler rimuovere \",[\"entityLabel\"],\"?\"],\"lpIMne\":[\"Le password non corrispondono\"],\"lsgnzd\":[\"Errore durante l'upgrade a Pro\"],\"lyqwgn\":[\"Aggiungi etichetta\"],\"m2nk0i\":[\"Prezzi semplici\"],\"mErq7F\":[\"Registrati\"],\"mHhffx\":[\"Impossibile creare la checklist\"],\"mTGd3+\":[\"ha eliminato una checklist\"],\"mTwGOf\":[\"Questo link di invito non è valido o è scaduto.\"],\"mU+M00\":[[\"0\"],\" è stato aggiunto ai tuoi preferiti.\"],\"mVZH9V\":[\"Quando Trello è stato lanciato nel 2011, ha stupito tutti con la sua semplicità accuratamente progettata, ma nel corso degli anni ha perso la sua magia e si è trasformato in qualcosa di più simile a \\\"Jira Lite\\\". Questo progetto è il nostro tentativo di recuperare la magia originale della semplicità di Trello, in open source.\"],\"mZGPxt\":[\"Link di invito copiato negli appunti\"],\"mchgzf\":[\"Ti sei registrato con successo.\"],\"mgXgHu\":[\"Vai alle bacheche\"],\"mrhyIB\":[\"Perfetto per team piccoli e in crescita che cercano collaborazione.\"],\"mwBdZ2\":[\"Questo comporterà l'eliminazione permanente di tutti i dati associati al tuo account.\"],\"mx8+1u\":[\"Membri illimitati\"],\"n+xLOH\":[\"Assistenza clienti\"],\"n1GRql\":[\"Nuova etichetta\"],\"n1ekoW\":[\"Accedi\"],\"n6EWYz\":[\"Utilizzato per firmare i payload dei webhook per la verifica. Lasciare vuoto per mantenere il segreto esistente.\"],\"n9V+ps\":[\"Inserisci il tuo nome\"],\"nKBUeF\":[\"La scheda è stata duplicata.\"],\"nOhz3x\":[\"Esci\"],\"nYNMZZ\":[\"Posizione nell'elenco (0 = primo, lascia vuoto per la fine)\"],\"nabda1\":[\"Elimina card\"],\"nbfdhU\":[\"Integrazioni\"],\"ngBZOd\":[\"Aggiungi commento... (digita '/' per aprire i comandi o '@' per menzionare)\"],\"nhMhRr\":[\"Grazie per il tuo feedback!\"],\"njJFtc\":[\"Elimina commento\"],\"nk7caK\":[\"Connetti Trello\"],\"nol/Fb\":[\"Come invito i membri del team?\"],\"notwF1\":[\"Il nome del template non può superare i 100 caratteri\"],\"nq7q3Z\":[\"Il nome della chiave API non può superare i 30 caratteri\"],\"nqdIhs\":[\"Template board personalizzati\"],\"nryrgW\":[\"Tutte le sostituzioni dei permessi dei membri sono state ripristinate ai valori predefiniti del loro ruolo.\"],\"o+JCfN\":[\"Scelto da team dinamici<0/>in tutto il mondo\"],\"o4e/70\":[\"Seleziona almeno un evento\"],\"o4sQAg\":[\"Impossibile creare il webhook\"],\"o7J4JM\":[\"Filtra\"],\"o8adVG\":[\"Caricamento file da 10 MB\"],\"o9WLwO\":[\"Impossibile aggiornare la card\"],\"oVBq1w\":[\"per utente/mese\"],\"oW13KZ\":[\"Inizia gratuitamente oggi\"],\"odFCYX\":[\"Invito non valido\"],\"okpxfB\":[\"Crea nuova chiave\"],\"oyRjD/\":[\"Piano Pro\"],\"p/hk9N\":[\"Hai effettuato l'accesso con successo.\"],\"pBsoKL\":[\"Aggiungi ai preferiti\"],\"pFGfsR\":[\"Dai un'occhiata ad alcuni dei nostri progetti open source preferiti.\"],\"pFKC6A\":[\"Nome chiave API\"],\"pL78ec\":[\"Aggiunto ai preferiti\"],\"pVctI7\":[\"Opzione di deployment on-premise\"],\"pXVFJy\":[\"Può eliminare board\"],\"pa9o5D\":[\"Ritaglia il tuo avatar\"],\"pfa8F0\":[\"Nome visualizzato\"],\"pmUArF\":[\"Workspace\"],\"pnrmSP\":[\"Nuova card\"],\"ppaRWv\":[\"Self host\"],\"pvnfJD\":[\"Scuro\"],\"q+lt9D\":[\"Errore durante l'eliminazione dell'etichetta\"],\"q3il6U\":[\"Dimensione del carattere\"],\"qPP4lD\":[\"Invitare membri richiede un piano Team. Verrai reindirizzato per aggiornare il tuo workspace.\"],\"qQXocp\":[\"Può gestire le impostazioni dello workspace\"],\"qaS+1/\":[\"Ideale per team che vogliono scalare senza limiti\"],\"qfUS/w\":[\"Open source friends\"],\"qkjvgj\":[\"Il tuo workspace è stato eliminato.\"],\"qlAIQ1\":[\"Remoto\"],\"qtE5nt\":[\"Aggiungi un elemento...\"],\"qzdST2\":[\"Visibilità della board\"],\"r6BgwX\":[\"La password è richiesta per accedere.\"],\"rD6UIt\":[\"Inizia su Cloud\"],\"rF8SEQ\":[\"Modifica commento\"],\"rQRXo8\":[\"Inserisci un nuovo secret per aggiornare\"],\"rQXTmd\":[\"URL della card copiato negli appunti\"],\"rRM7r0\":[\"Importa le tue bacheche Trello e inizia subito.\"],\"rYUZIe\":[\"Seleziona origine\"],\"raHesj\":[\"Hai annullato l'iscrizione!\"],\"rarRW/\":[\"Errore durante l'invito del membro\"],\"ri1hHe\":[\"Scadenza il mese prossimo\"],\"rmN315\":[\"Divertimento\"],\"rs7L54\":[\"ha aggiunto un membro alla card\"],\"rtbVvN\":[\"Può modificare liste\"],\"s+MGs7\":[\"Risorse\"],\"s6iE/c\":[\"La registrazione è attualmente disabilitata. Riprova più tardi.\"],\"sBhOFG\":[\"Gestione delle attività semplice e visiva che funziona davvero. Trascina e rilascia le schede, collabora con il tuo team e porta a termine più cose.\"],\"sDLCvT\":[\"Connetti i tuoi strumenti preferiti per semplificare il tuo flusso di lavoro.\"],\"sDuhfK\":[\"Offerta di lancio: posti illimitati a soli $29/mese con Pro\"],\"sU2uWc\":[\"Scheda duplicata\"],\"sUZo7y\":[\"Registrati | kan.bn\"],\"sVBn4K\":[\"Errore durante l'aggiornamento del nome visualizzato\"],\"sY2lzr\":[\"Nessun URL di download disponibile per questo allegato.\"],\"sbNNyi\":[\"Nuovo webhook\"],\"snMaH4\":[\"Elimina webhook\"],\"t+R8+P\":[\"Esecuzione\"],\"t/YqKh\":[\"Rimuovi\"],\"t0dTPm\":[\"Configura i webhook per ricevere notifiche quando le schede vengono create, aggiornate, spostate o eliminate.\"],\"t2nDzl\":[\"Visualizza e gestisci la fatturazione e l'abbonamento.\"],\"t6FvJH\":[\"Può aggiungere commenti\"],\"tGwwnq\":[\"ha aggiornato la descrizione\"],\"tHcbLF\":[\"Può modificare board\"],\"tIdipJ\":[\"Modifica URL bacheca\"],\"tMYIu7\":[\"Registri attività\"],\"tOZp9v\":[\"Ruoli utente e permessi configurabili\"],\"tTbref\":[\"La password è richiesta per registrarsi.\"],\"tYN21H\":[\"L'utente è già membro di questo workspace\"],\"tbNcu4\":[\"Bacheca ripristinata\"],\"tca56/\":[\"Il tuo file è stato caricato con successo.\"],\"tfDRzk\":[\"Salva\"],\"tlhgDC\":[\"Nessuna bacheca archiviata\"],\"tmlJN1\":[\"Inserisci un URL YouTube valido\"],\"tmpW+w\":[\"Elimina board\"],\"tst44n\":[\"Eventi\"],\"tyHiOa\":[\"Riprova più tardi o contatta l'assistenza clienti.\"],\"u2+JIh\":[\"Gli URL personalizzati richiedono l'upgrade a un piano Pro\"],\"u8JHrO\":[\"Cancella filtri\"],\"uAQUqI\":[\"Stato\"],\"uEGGDs\":[\"Il mio webhook\"],\"uOqaMC\":[\"Sei stato invitato a unirti a un workspace.\"],\"uP4V6I\":[\"Gratuito per tutti\"],\"uXGLuq\":[\"Crea chiave API\"],\"uZg2+w\":[\"Potenzia il tuo workspace per soli $29 al mese. Ecco cosa otterrai:\"],\"uck1tz\":[\"ha rimosso un membro dalla card\"],\"usVytm\":[\"Una volta eliminato il tuo account, non si può tornare indietro. Questa azione non può essere annullata.\"],\"uvH2xS\":[\"Copia membri\"],\"v+Wp++\":[\"Open source\"],\"v1kQyJ\":[\"Webhook\"],\"v3YoMA\":[\"Senior\"],\"vAR/I8\":[\"Esegui sulla tua infrastruttura\"],\"vAj6xG\":[\"Puoi effettuare il self-hosting seguendo le istruzioni nel nostro <0>repo.\"],\"vSJd18\":[\"Video\"],\"vUr5JT\":[\"Non hai un account? <0><1>Registrati\"],\"vXIe7J\":[\"Lingua\"],\"vXemf6\":[\"Bug\"],\"va/3u1\":[\"Controlla chi può visualizzare e modificare le tue board.\"],\"vbskQn\":[\"Il nome della chiave API è obbligatorio\"],\"veIDCY\":[\"Inizia la prova gratuita di 14 giorni\"],\"vfRdCZ\":[\"Impossibile ripristinare i permessi\"],\"vgdzLf\":[\"Crea un altro\"],\"vifyyw\":[\"Legale\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"I permessi di questo membro sono stati ripristinati ai valori predefiniti del suo ruolo.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"fatturazione mensile\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Lungo termine\"],\"vwGkYB\":[\"La password deve contenere almeno 8 caratteri\"],\"wIb7Ng\":[\"Sviluppo software\"],\"wK4OTM\":[\"Titolo (facoltativo)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Seleziona un file da caricare.\"],\"wY+6Ye\":[\"Questo URL della bacheca è già stato utilizzato\"],\"wakO3W\":[\"ha aggiunto la checklist <0>\",[\"0\"],\"\"],\"wewm3j\":[\"Il nome della board non può superare i 100 caratteri\"],\"wgNoIs\":[\"Seleziona tutto\"],\"wlQNTg\":[\"Membri\"],\"wqkcin\":[\"Può visualizzare i commenti\"],\"wqxglO\":[\"Apprendimento\"],\"wruKPE\":[\"Sostieni lo sviluppo del progetto\"],\"wsy94z\":[\"Ideale per grandi organizzazioni con esigenze avanzate\"],\"wtxjAY\":[\"Membri del workspace\"],\"x0kMO/\":[\"Errore durante l'aggiornamento dell'URL dello workspace\"],\"x8GeCD\":[\"Nome visualizzato aggiornato\"],\"xEbBrW\":[\"Quale licenza stai utilizzando?\"],\"xGVfLh\":[\"Continua\"],\"xLTZVf\":[\"Giorno di inizio settimana\"],\"xMn+V9\":[\"Importazione da Trello\"],\"xRPn3U\":[\"Inserisci il tuo indirizzo email\"],\"xvcYhz\":[\"Cancella tutti i permessi personalizzati dei membri in modo che tutti i membri ereditino solo i permessi predefiniti dal loro ruolo.\"],\"y3aU20\":[\"Salva modifiche\"],\"yD3ZSw\":[\"Modifica le tue preferenze di lingua.\"],\"yV7o5I\":[\"Come importo le mie bacheche Trello?\"],\"yb/fjw\":[\"Approvazione\"],\"yhLUU8\":[\"Errore nella connessione a GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Importa progetto (1)\"],\"other\":[\"Importa progetti (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Chiudi\"],\"zC8Whw\":[\"Inizia creando una nuova lista\"],\"zERArS\":[\"ha aggiornato il titolo in <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Crea link di invito\"],\"zMlxCA\":[\"1 utente\"],\"zMquA7\":[\"Scegli un piano\"],\"zQPhSa\":[\"Converti in link\"],\"zQX5Dj\":[\"Nome lista\"],\"zYRVNp\":[\"Seleziona un elenco\"],\"zkWmBh\":[\"Annuale\"],\"zl1b97\":[\"Impossibile creare la card\"],\"zoEbXq\":[\"Può visualizzare le card\"],\"zt/6cS\":[\"Ideale per piccoli team che vogliono collaborare e muoversi più velocemente insieme.\"],\"zto8aj\":[\"Trello disconnesso\"],\"zwBp5t\":[\"Privato\"],\"zwTiVn\":[\"ha rimosso un allegato <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Scopri di più\"],\"zxKs+y\":[\"Scadenza domani\"],\"zzDlyQ\":[\"Successo\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Social media\"],\"+3TYXa\":[\"Per una sostenibilità a lungo termine, riconosciamo che tutti i buoni progetti open source necessitano di una fonte di entrate. La nostra proviene dall'offerta cloud a pagamento per workspace con più utenti e per slug workspace personalizzati. Non c'è alcun obbligo di utilizzarla e puoi ospitare il software sulla tua infrastruttura gratuitamente.\"],\"+5kO8P\":[\"Sabato\"],\"+8Nek/\":[\"Mensile\"],\"+EkBs0\":[\"Non è stato possibile aggiornare le tue preferenze. Riprova.\"],\"+MdEsf\":[\"La nuova password è obbligatoria\"],\"+OhFss\":[\"Inizia gratuitamente, senza limiti di utilizzo. Per la collaborazione, passa a un piano adatto alle dimensioni del tuo team.\"],\"+VoTOr\":[\"fatturato mensilmente\"],\"+djOzj\":[\"Invita membro\"],\"+h2faV\":[\"Impostazioni | Webhook\"],\"+jbXzb\":[\"I tuoi progetti sono stati importati.\"],\"+nvZ6j\":[\"Etichette e filtri\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Template\"],\"/asTmx\":[\"Segnalazione bug\"],\"/bBVaD\":[\"GitHub disconnesso\"],\"/bZzdR\":[\"Menzioni\"],\"/f3t6v\":[\"Configura quali azioni sono consentite per ogni ruolo del workspace. Questi permessi si applicano a tutti i membri con quel ruolo.\"],\"/gaSVU\":[\"Roadmap\"],\"/glL9Q\":[\"Nessun \",[\"0\"]],\"/jd3aj\":[\"Ruoli admin avanzati\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"Un'app kanban potente e flessibile che ti aiuta a organizzare il lavoro, monitorare i progressi e ottenere risultati, tutto in un unico posto.\"],\"/tOdd2\":[\"La tua immagine del profilo è stata aggiornata.\"],\"0+0/3e\":[\"Crea nuova etichetta\"],\"0+ewPp\":[\"Miglioramento\"],\"02i3WU\":[\"Importazioni\"],\"06EQqT\":[\"Duplicazione in corso…\"],\"09Tv5j\":[\"Reconnecting…\"],\"0AfkMq\":[\"Your role changed in\"],\"0KjpAr\":[\"Può visualizzare i membri\"],\"0RE1AJ\":[\"Le bacheche che archivi appariranno qui.\"],\"0StR7t\":[\"Inserisci la tua nuova password\"],\"0jV46i\":[\"Impossibile eliminare l'elemento della checklist\"],\"0qyZ4b\":[\"Caricamento permessi...\"],\"0rPv1T\":[\"Immagine del profilo aggiornata\"],\"0utuU6\":[\"Copia checklist\"],\"0xD8Of\":[\"La pagina che stai cercando non esiste o è stata spostata.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Importa bacheca (1)\"],\"other\":[\"Importa bacheche (\",[\"boardCount\"],\")\"]}]],\"11dHnN\":[\"You were removed from\"],\"14Xi3Z\":[\"L'aggiunta di un nuovo membro costerà \",[\"price\"],\" aggiuntivi (\",[\"billingType\"],\") per postazione.\"],\"1H5u1m\":[\"Domande?\"],\"1WuwiM\":[\"Vai alle impostazioni\"],\"1bJKhj\":[\"Copia link alla scheda\"],\"1hzdxO\":[\"Permessi del workspace\"],\"1iShX0\":[\"Scadenza oggi\"],\"1njn7W\":[\"Chiaro\"],\"1rVAfU\":[\"Carica altre attività\"],\"1rWxEw\":[\"In attesa del cliente\"],\"1sRmLC\":[\"Discuti e collabora sulle card.\"],\"1wCGT0\":[\"Board illimitate\"],\"25fAUC\":[\"Il tuo link di disiscrizione non contiene un token. Apri l'ultima email e riprova.\"],\"25mvI+\":[\"I link di invito richiedono un abbonamento Team o Pro. Aggiorna il tuo workspace.\"],\"29sSki\":[\"ha completato l'elemento della checklist <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"Lista\"],\"2Bu8xj\":[\"Nessuna board trovata\"],\"2M84k3\":[\"Permessi personalizzati\"],\"2MPcep\":[\"Importazione completata\"],\"2POOFK\":[\"Gratuito\"],\"2Py5S/\":[\"Riconosco che tutti i dati del workspace verranno eliminati definitivamente e voglio procedere.\"],\"2Q871c\":[\"Impossibile aggiungere l'etichetta\"],\"2QGEbi\":[\"Impossibile eliminare il commento\"],\"2SePRT\":[\"Sei stato invitato a unirti a un workspace su kan.bn.\"],\"2X4ecw\":[\"Webhook eliminato con successo\"],\"2h4PVB\":[\"Il nome del tuo workspace è stato aggiornato.\"],\"2liqDZ\":[\"Riconosco che tutti i dati del mio account verranno eliminati definitivamente e voglio procedere.\"],\"2q/Q7x\":[\"Visibilità\"],\"2roTVj\":[\"Feedback inviato\"],\"3LDCpD\":[\"Questa azione non può essere annullata.\"],\"3WXdoZ\":[\"Potrai sempre modificarli in seguito nelle impostazioni.\"],\"3ZjRJY\":[\"ha rinominato la checklist <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Chiunque abbia questo link può unirsi al tuo workspace\"],\"3d54Wj\":[\"Webhook aggiornato con successo\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Connetti GitHub\"],\"3pIq39\":[\"Ruoli admin\"],\"4630Pc\":[\"Card updated\"],\"479pdJ\":[\"Conferma la tua nuova password\"],\"4DOCMI\":[\"URL YouTube\"],\"4Revpc\":[\"Piccolo\"],\"4RoY9J\":[\"Post del blog\"],\"4XF0BB\":[\"Immagine del profilo\"],\"4gAX8s\":[\"Attiva/disattiva menu\"],\"4kJRen\":[\"Scrittura\"],\"4obmDr\":[\"404 - Pagina non trovata | kan.bn\"],\"4sxGcV\":[\"You were assigned to a card\"],\"51UCsN\":[\"Sposta in un altro elenco\"],\"53QYh8\":[\"Impossibile creare la board\"],\"55xJ/O\":[\"Errore durante la modifica della password\"],\"58AiWX\":[\"Conferma la tua nuova password\"],\"5ACX4z\":[\"Newsletter\"],\"5IXWmO\":[\"Controlla la tua casella di posta\"],\"5P4rhH\":[\"Impossibile aggiornare i membri\"],\"5RkSzq\":[\"Copia link board\"],\"5eZwRW\":[\"Connetti il tuo account Trello per importare le bacheche.\"],\"5h8ooz\":[\"Chiavi API\"],\"5iplxh\":[\"La nuova password deve essere diversa da quella attuale\"],\"5k0NLb\":[\"Revisione\"],\"5lWFkC\":[\"Accedi\"],\"5ntVtp\":[\"Impossibile testare il webhook\"],\"5y6qY8\":[\"ha aggiunto un allegato\"],\"69b7aE\":[\"Apri menu comandi\"],\"6EWT6T\":[\"Recruiting\"],\"6FDocz\":[\"Registrati con \"],\"6FsGbN\":[\"Inizia creando un nuovo \",[\"0\"]],\"6OTo9n\":[\"Il nome del template è obbligatorio\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Nuovo \",[\"0\"]],\"6YtxFj\":[\"Nome\"],\"6mbe4b\":[\"Individuali\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"I permessi del membro sono stati aggiornati.\"],\"6uBU1F\":[\"Accesso API completo\"],\"6zeSBB\":[\"Può creare card\"],\"74F7N/\":[\"Sei sicuro di voler eliminare il tuo account?\"],\"7EhE4k\":[\"Aggiorna etichetta\"],\"7L01XJ\":[\"Azioni\"],\"7PzzBU\":[\"Utente\"],\"7Qqqyu\":[\"New comment on\"],\"7RpHg/\":[\"Username personalizzato\"],\"7Ufoyg\":[\"Liste illimitate\"],\"7aONWr\":[\"L'URL non può superare i 2048 caratteri\"],\"7b2yuC\":[\"Inserisci una password valida\"],\"7d1a0d\":[\"Pubblico\"],\"7eMo+U\":[\"Vai alla home\"],\"7hktsm\":[\"Per iniziare\"],\"7i8j3G\":[\"Azienda\"],\"8+BY11\":[\"URL della board copiato negli appunti\"],\"86FLn5\":[\"Caricamenti di file illimitati\"],\"86XI28\":[\"Conferma le tue preferenze email:\"],\"8AbRER\":[\"Imposta scadenza\"],\"8AwlaR\":[\"Membri illimitati e un nome utente workspace personalizzato per i team pronti a crescere.\"],\"8F1i42\":[\"Pagina non trovata\"],\"8Is1ih\":[\"Offerta di lancio\"],\"8RdLDU\":[\"Progetto personale\"],\"8TveY+\":[\"Board\"],\"8Z4pNX\":[\"Può creare liste\"],\"8iP0S8\":[\"Tutto ciò che è incluso nel piano gratuito, più:\"],\"8iP9oQ\":[\"Test del webhook non riuscito\"],\"8yFGGF\":[\"Impossibile rimuovere il membro\"],\"99VIgC\":[\"Rimuovi membro\"],\"9HDx2Z\":[\"You were mentioned in\"],\"9PaIxv\":[\"Funzionalità principali\"],\"9Xigls\":[\"In revisione\"],\"9YPBHv\":[\"Impossibile eliminare il webhook\"],\"9cDpsw\":[\"Permessi\"],\"9eF5oV\":[\"Bentornato\"],\"9h7RDh\":[\"Offerta\"],\"9lFfqv\":[\"/mese\"],\"9s9O5h\":[\"Errore durante l'eliminazione dello spazio di lavoro\"],\"9u5BOr\":[\"Membri | \",[\"0\"]],\"9wdpwp\":[\"Portale di fatturazione\"],\"9x4DAL\":[[\"0\"],\" non trovato\"],\"9y1RcT\":[\"Siamo solo all'inizio.\"],\"A23Y7X\":[\"Unisciti al workspace | kan.bn\"],\"A42Dqn\":[\"Branding personalizzato\"],\"A5hiCy\":[\"Crea template\"],\"A8jqN7\":[\"Impossibile inviare il feedback\"],\"ABCjd9\":[\"Pubblicazione\"],\"ADEin1\":[\"Impostazioni | Fatturazione\"],\"ALhEZV\":[\"Può invitare membri\"],\"ANyn0x\":[\"Tutto ciò di cui hai bisogno, gratis per sempre. Board illimitate, liste illimitate, card illimitate. Fai l'upgrade quando vuoi.\"],\"ARvBT/\":[\"fatturato annualmente\"],\"ASjvm9\":[\"URL del workspace\"],\"AUYALh\":[\"Prossimamente\"],\"AX4ktp\":[\"Creazione di contenuti\"],\"AZI/wb\":[\"Etichette e filtri\"],\"AdxYds\":[\"Il tuo account GitHub è stato disconnesso.\"],\"AeXO77\":[\"Account\"],\"Alp2ti\":[\"Contatta il reparto vendite\"],\"Ax/hYa\":[\"La descrizione del workspace non può superare i 280 caratteri\"],\"B3xxao\":[\"Aggiungi una card\"],\"BBUDfW\":[\"Urgente\"],\"BEVzjL\":[\"Importazione fallita\"],\"BJbLe4\":[\"Utilizziamo la <0>licenza AGPL-3.0.\"],\"BMkVQ3\":[\"ha eliminato la checklist <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"ha spostato la card da <0>\",[\"0\"],\" a <1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Duplica scheda\"],\"BZkYSt\":[\"ha rimosso \",[\"0\"],\" etichette: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Sei sicuro di voler eliminare il workspace \",[\"0\"],\"?\"],\"Bhgd0l\":[\"Contattaci\"],\"BzEFor\":[\"o\"],\"C56tim\":[\"Impossibile aggiornare la data di scadenza\"],\"C6gv54\":[\"La bacheca è stata ripristinata.\"],\"CAL6E9\":[\"Team\"],\"CB/NpV\":[\"Priorità alta\"],\"CHZ1jC\":[\"ha eliminato l'elemento della checklist <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Inserisci un nome valido\"],\"CJWDTP\":[\"Il tuo account Trello è stato disconnesso.\"],\"CJukzS\":[[\"0\"],\" etichette\"],\"CTqTgr\":[\"Scorciatoie\"],\"CYWHT+\":[\"Errore durante il caricamento dell'immagine del profilo\"],\"Cb5YSG\":[\"You were added to\"],\"Cd4sTD\":[\"Ideale per singoli utenti e creator che iniziano\"],\"Ci/KUX\":[\"Impostazioni | Workspace\"],\"CkVV1t\":[\"Errore durante l'aggiornamento della descrizione dello workspace\"],\"Cmudpi\":[\"Può eliminare workspace\"],\"CozWO1\":[\"Nome workspace\"],\"CujNX4\":[\"ha aggiunto un allegato <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"Sistema\"],\"D0esZz\":[\"Registro attività\"],\"D3C4Yx\":[\"La password attuale è obbligatoria\"],\"D7/JvJ\":[\"Regola il ritaglio quadrato per adattarlo al tuo avatar.\"],\"D9ROdV\":[\"Link di invito\"],\"DAV3uK\":[\"Permessi aggiornati\"],\"DBC3t5\":[\"Domenica\"],\"DFjdv0\":[\"Elimina template\"],\"DMeWZD\":[\"Sei sicuro di voler eliminare questo \",[\"0\"],\"?\"],\"DPfwMq\":[\"Fatto\"],\"DSGzV+\":[\"Nome utente del workspace\"],\"DahTzR\":[\"Impossibile eliminare la checklist\"],\"DbZgsJ\":[\"Crea template\"],\"DtXlZq\":[\"Impossibile aggiornare la checklist\"],\"Dz63YI\":[\"Si è verificato un errore durante la disconnessione del tuo account GitHub.\"],\"E0t3jO\":[\"ha aggiunto l'elemento della checklist <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Prezzo per postazione\"],\"E8zYtd\":[\"ha rimosso l'assegnazione di <0>\",[\"0\"],\" dalla card\"],\"ECJKc4\":[\"Chiave API creata\"],\"EEHmPC\":[\"Offerta di lancio: membri illimitati con Pro\"],\"EH8IL3\":[\"Checklist\"],\"EII/X8\":[\"Tutte le funzionalità Teams +\"],\"ERpq2P\":[\"Nessun risultato trovato per \\\"\",[\"debouncedQuery\"],\"\\\".\"],\"ESClHO\":[\"Supporto email prioritario\"],\"EYpSRU\":[\"You were added to a workspace\"],\"Eg99Sc\":[\"Nessun metodo di autenticazione attualmente disponibile\"],\"Eit43O\":[\"ha impostato la scadenza\"],\"EkH9pt\":[\"Aggiorna\"],\"EvArWh\":[\"Collabora senza problemi con il tuo team.\"],\"F/FPk/\":[\"Impostazioni | Permessi\"],\"F/vB2g\":[\"Idee per migliorare questa pagina...\"],\"F0YmUY\":[\"Copia link card\"],\"F3bW6y\":[\"Piattaforma\"],\"F4KRmY\":[\"$8/mese\"],\"F4PLG4\":[\"Descrizione workspace aggiornata\"],\"F6m23G\":[\"Caricamento file\"],\"F6pfE9\":[\"Attivo\"],\"F8DaWi\":[\"Sola visualizzazione\"],\"FEr96N\":[\"Tema\"],\"FdtSNC\":[\"Crea workspace\"],\"FmN5me\":[\"Risoluzione\"],\"FmfJjN\":[\"Visualizza e gestisci le tue chiavi API.\"],\"Fpci8b\":[\"Sei sicuro di voler eliminare questa checklist?\"],\"G1Gw0v\":[\"Nuovo template\"],\"GAD3Dx\":[\"Dominio personalizzato\"],\"GDvlUT\":[\"Ruolo\"],\"GKeVeM\":[\"Your role was changed\"],\"GRAGsB\":[\"Il tuo workspace\"],\"GYv20o\":[\"Impossibile aggiornare i permessi\"],\"GdWB+V\":[\"Webhook creato con successo\"],\"GnRmu4\":[\"Nome della checklist\"],\"GnSSGm\":[\"La descrizione del tuo workspace è stata aggiornata.\"],\"GoDLB9\":[\"Il tuo account è stato eliminato.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Roadmap estesa\"],\"Gxxi5J\":[\"Aggiungi checklist\"],\"H5G+qG\":[\"Qual è la differenza tra Kan e Trello?\"],\"HBI6nY\":[\"Serve aiuto?\"],\"HO+uOC\":[\"Smistamento\"],\"HQVm6e\":[\"Questo URL è già in uso\"],\"HVIzNO\":[\"Può visualizzare le liste\"],\"HYV6Lq\":[\"Impossibile accettare l'invito. Riprova più tardi o contatta l'assistenza clienti.\"],\"HbXReU\":[\"No notifications yet\"],\"HcT8J4\":[\"Il tuo account GitHub è stato connesso.\"],\"HeFWjW\":[\"Prossimi passi\"],\"Hf1cEZ\":[\"L'URL del webhook è obbligatorio\"],\"Hg1qE9\":[\"Lo slug del tuo workspace è stato aggiornato.\"],\"I+AROe\":[\"Può modificare card\"],\"I0gAKM\":[\"Impossibile aggiornare la lista\"],\"IDvohQ\":[\"ha contrassegnato un elemento della checklist come incompleto\"],\"IFgUX6\":[\"Può rimuovere membri\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Passa a Pro\"],\"Iqh0Uv\":[\"Pianificato\"],\"IqjpYe\":[\"Visibilità email\"],\"IrZaAn\":[\"Password modificata\"],\"It4/FS\":[\"Ripristina bacheca\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Continua con \"],\"J4+OTA\":[\"Sposta nell'elenco\"],\"J5nbej\":[\"Critico\"],\"J5pbP6\":[\"Può modificare ruoli e permessi dei membri\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JBaoDB\":[[\"overflow\"],\" more viewers\"],\"JCdzgZ\":[\"Richiesta di funzionalità\"],\"JUce1S\":[\"Assegnatari\"],\"JbXXUW\":[\"Tieni presente che questa azione è irreversibile.\"],\"JcCDm9\":[\"Template creato\"],\"Jgaz7E\":[\"Permessi ripristinati\"],\"JjEJSy\":[\"Configura il tuo workspace\"],\"JnWJXY\":[\"magic link\"],\"JxhWxU\":[\"in\"],\"JyXBgS\":[\"docs\"],\"K3iLeO\":[\"Scopri cosa dicono i nostri utenti su Kan\"],\"K4xHKu\":[\"New comment on a card\"],\"K7k9u3\":[\"Impossibile spostare la scheda\"],\"KAsRdK\":[\"Vai ai membri\"],\"KEim/+\":[\"ha rimosso un allegato\"],\"KFJgmZ\":[\"Il nome visualizzato deve contenere almeno 3 caratteri\"],\"KLJ4eD\":[\"Link di invito copiato\"],\"KM6m8p\":[\"Team\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Controlli admin avanzati\"],\"KiVc+q\":[\"Tempo pieno\"],\"KuSt9W\":[\"Come faccio il self-hosting?\"],\"L5WQLg\":[\"Il token è obbligatorio\"],\"L5ZPjz\":[\"ha aggiornato un elemento della checklist\"],\"LTGE7Y\":[\"Workspace creato con successo. Potrai effettuare l'upgrade più tardi nelle impostazioni.\"],\"LeM5RY\":[\"Impossibile cancellare le sostituzioni\"],\"LoUCpj\":[\"Errore durante l'aggiornamento del nome dello workspace\"],\"LqWW5F\":[\"Il tuo nome visualizzato è stato aggiornato.\"],\"LrcnbT\":[\"Ospita Kan sulla tua infrastruttura. Ideale per le organizzazioni che necessitano del controllo completo sui propri dati.\"],\"Lt+ZP3\":[\"ha completato un elemento della checklist\"],\"M9p3Vw\":[\"Log attività illimitato\"],\"MCIXdZ\":[\"Connetti il tuo account GitHub per importare progetti.\"],\"MFKlMB\":[\"Invita\"],\"MHrjPM\":[\"Titolo\"],\"MI5OBT\":[\"L'URL può contenere solo lettere, numeri e trattini\"],\"MK16u2\":[\"Nessuna data\"],\"MKAScN\":[\"Può visualizzare le bacheche\"],\"MN6YzG\":[\"Slug del workspace aggiornato\"],\"MWrbWq\":[\"Impostazioni | Account\"],\"MdN5zD\":[\"Devi essere un amministratore per gestire i permessi del workspace.\"],\"MdwUGG\":[\"Risparmia tempo con i modelli di board riutilizzabili.\"],\"MeO/vH\":[\"Questo comporterà l'eliminazione permanente di tutti i dati associati a questo workspace.\"],\"MlyjJu\":[\"Il nome visualizzato non può superare i 280 caratteri\"],\"MxQXhL\":[\"Impossibile creare lo workspace\"],\"N/bcWA\":[\"Accedi | kan.bn\"],\"N3380t\":[\"Può creare board\"],\"N7aud6\":[\"Ricerca intelligente\"],\"NH54UR\":[\"ha rinominato l'elemento della checklist in <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"La bacheca è stata archiviata.\"],\"NgaR6B\":[\"Inserisci la tua password\"],\"NnH3pK\":[\"Test\"],\"NoNwIX\":[\"Inattivo\"],\"NypLoL\":[\"ha rinominato una checklist\"],\"O0li0W\":[\"Inserisci la tua password attuale e scegli una nuova password sicura.\"],\"O1wAlQ\":[\"Ospite\"],\"O3oNi5\":[\"Email\"],\"O83K21\":[\"ha aggiunto un elemento della checklist\"],\"O9jVbx\":[\"Bassa priorità\"],\"OAYToL\":[\"Questo rimuoverà tutti i permessi personalizzati dei membri in questo workspace. I membri erediteranno i permessi solo dai loro ruoli.\"],\"OIA0ad\":[\"Nome del workspace aggiornato\"],\"OTxjpR\":[\"il-tuo-workspace\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Disconnetti GitHub\"],\"Oi+J+N\":[\"Scegli un piano per iniziare. Tutti i piani a pagamento includono una prova gratuita di 14 giorni.\"],\"OkTY4+\":[\"Il secret non può superare i 512 caratteri\"],\"Oo4E6p\":[\"Impossibile duplicare la scheda\"],\"OpNhRn\":[\"Nessuna carta di credito richiesta\"],\"OtjenF\":[\"Inserisci un indirizzo email valido\"],\"OvoEq7\":[\"Membro\"],\"OwneeH\":[\"Username workspace personalizzato\"],\"Ozt2vv\":[\"La tua password è stata modificata.\"],\"P6dJdq\":[\"Override cancellati\"],\"P8Cunr\":[\"Username predefinito\"],\"PCIlOO\":[\"Aggiungi membro\"],\"PELbXB\":[\"Il tuo account GitHub è connesso.\"],\"PRjvDT\":[\"Sei sicuro di voler eliminare questo commento?\"],\"PRofO0\":[\"Modifica video YouTube\"],\"PTzsxH\":[\"Visibilità della board aggiornata\"],\"PVT7q7\":[\"GitHub connesso\"],\"PZCqeW\":[\"Riprova più tardi.\"],\"Pat4r8\":[\"Roadmap base\"],\"PpZkda\":[\"Funzionalità\"],\"PyYD/v\":[\"ha assegnato <0>\",[\"0\"],\" alla card\"],\"Q60WUZ\":[\"Impossibile avviare il checkout\"],\"Q9pQaX\":[\"Nessun ruolo trovato per questo workspace.\"],\"QD8opX\":[\"Board\"],\"QHhZeE\":[\"Template creato con successo\"],\"QNtP5M\":[\"Usa template\"],\"Qh7QmR\":[\"Rimosso dai preferiti\"],\"QnzD50\":[\"On-premise\"],\"QtACvI\":[\"Crea etichetta\"],\"Qtzfdk\":[\"Piano Pro ∞\"],\"R+w/Va\":[\"Fatturazione\"],\"R1c3Mq\":[\"Il nome della board è obbligatorio\"],\"R275Pz\":[\"Hai posti illimitati con il tuo piano pro. Non ci sono costi aggiuntivi per i nuovi membri!\"],\"R3FsF4\":[\"Download non riuscito\"],\"R41XLH\":[\"Impossibile aggiornare il webhook\"],\"R6pB8R\":[\"Metti una stella su Github\"],\"RHZu7R\":[\"Amato dai team di tutto il mondo\"],\"RJA+sg\":[\"Nuovo ticket\"],\"RRn9jf\":[\"Clicca sul link che abbiamo inviato a \",[\"magicLinkRecipient\"],\" per accedere.\"],\"RSGOS1\":[\"Può eliminare liste\"],\"RfgJqw\":[\"ha aggiornato la data di scadenza\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Invia feedback\"],\"RtlIYB\":[\"Stai per modificare la tua password.\"],\"RzxgOE\":[\"Ruoli e permessi\"],\"SFnH1j\":[\"Perché creare un Trello open source?\"],\"SMaFdc\":[\"Annulla iscrizione\"],\"SNfg0e\":[\"Può visualizzare lo workspace\"],\"SPLN9O\":[\"Possiedi i tuoi dati\"],\"SRvxId\":[\"Secret HMAC per la verifica della firma\"],\"STSYcd\":[\"Può eliminare commenti\"],\"SUXBxp\":[\"Ingegneria\"],\"SUvm1Y\":[\"Perfetto per chi inizia e ha bisogno solo delle funzionalità essenziali.\"],\"SWEskc\":[\"L'URL deve contenere almeno 3 caratteri\"],\"Sb2gYF\":[\"Nuova lista\"],\"ScJ9fj\":[\"Informativa sulla privacy\"],\"Se/UIp\":[\"Da fare\"],\"SiPp29\":[\"Crea webhook\"],\"SkCNhl\":[\"Cerca board e card...\"],\"SlfejT\":[\"Errore\"],\"T/pF0Z\":[\"Rimuovi dai preferiti\"],\"T21jY/\":[\"ha aggiunto un'etichetta alla card\"],\"T7DJ2k\":[\"Impossibile aggiungere il commento\"],\"T7LJic\":[\"ha spostato la card in un'altra lista\"],\"T7Mywq\":[\"Impossibile aggiornare la board\"],\"TCOMOO\":[\"Modifica permessi\"],\"TCt/8K\":[\"Accesso API limitato\"],\"TFv5tM\":[\"Impossibile aggiornare il ruolo\"],\"TH3Irz\":[\"Permesso\"],\"TKFUnX\":[\"Account eliminato\"],\"TX0bT7\":[\"Nessun webhook configurato. Aggiungi un webhook per ricevere notifiche.\"],\"TXO5TM\":[\"Nessuna scorciatoia da tastiera registrata.\"],\"TYli1B\":[\"Può modificare commenti\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Revisione del codice\"],\"TdfEV7\":[\"Archiviato\"],\"TjREUS\":[\"Nuova chiave API\"],\"TmvrjU\":[\"L'URL della board deve contenere almeno 3 caratteri\"],\"TvY/XA\":[\"Documentazione\"],\"Tz0i8g\":[\"Impostazioni\"],\"TztLaN\":[\"Impossibile creare la lista\"],\"U2+rn0\":[\"Il nome del webhook è obbligatorio\"],\"U3pytU\":[\"Admin\"],\"U5dMR6\":[\"Visualizza workspace\"],\"UCLeG0\":[\"Termini di servizio\"],\"UGCIzB\":[\"Aggiungi / modifica etichetta\"],\"UQbwrz\":[\"Tutti i sistemi operativi\"],\"URAE3q\":[\"In pausa\"],\"USVCGU\":[\"Errore durante la disattivazione del link di invito\"],\"UbRKMZ\":[\"In attesa\"],\"UbYdrA\":[\"Frequenza di pagamento\"],\"UeDFpo\":[\"Come viene finanziato il progetto?\"],\"UirJfL\":[\"SLA personalizzato\"],\"UlhdTP\":[\"Workspace eliminato\"],\"Un80BR\":[\"Amici OSS\"],\"UoSI+i\":[\"Ideale per piccoli team in crescita che necessitano di collaborazione\"],\"UveK6V\":[\"Vai all'app\"],\"Uworke\":[\"Part-time\"],\"UxKoFf\":[\"Navigazione\"],\"V1KOLq\":[\"Notifiche email per le menzioni\"],\"V3MPSQ\":[\"ha aggiornato il titolo\"],\"V8YRD4\":[\"Viewing now: \",[\"0\"]],\"V8YWP3\":[\"Inserisci un titolo personalizzato\"],\"VHS0aJ\":[\"Cancellare tutti i permessi personalizzati?\"],\"VKoDQD\":[\"Crea nuovo \",[\"0\"]],\"VUZDlr\":[\"Testimonianze\"],\"VXk54Y\":[\"ha auto-assegnato la card\"],\"VbyRUy\":[\"Commenti\"],\"VhMDMg\":[\"Cambia password\"],\"Vt50G1\":[\"Kanban base\"],\"W/Elkg\":[\"Priorità media\"],\"W/nQk1\":[\"Piano gratuito\"],\"W1ewR0\":[\"Impossibile copiare il link\"],\"W5r8Qh\":[\"ha eliminato un elemento della checklist\"],\"W8oT+L\":[\"Impossibile recuperare le informazioni del video\"],\"WHHLh9\":[\"Impossibile eliminare l'allegato\"],\"WI4eGo\":[\"Come ottengo un URL personalizzato?\"],\"WQPDcG\":[\"Impossibile aggiornare l'elemento della checklist\"],\"WRkpB1\":[\"Registrazione disabilitata\"],\"WRsbHO\":[\"Il tuo account Trello è connesso.\"],\"WYDptz\":[\"Abbonamento richiesto\"],\"WYwN1G\":[\"Nuova importazione\"],\"WbTDwg\":[\"In corso\"],\"Weq9zb\":[\"Generale\"],\"WmPhYW\":[\"Si è verificato un errore durante la disconnessione del tuo account Trello.\"],\"WnEwDO\":[\"Hai già un account? <0><1>Accedi\"],\"Ws+3X+\":[\"Posti illimitati e funzionalità avanzate per team in crescita.\"],\"Ws1I0u\":[\"A card was updated\"],\"Wy6pcF\":[\"Impossibile aggiornare la visibilità della board\"],\"X0N0PA\":[\" (modificato)\"],\"XDRXbZ\":[\"La descrizione del workspace deve contenere almeno 3 caratteri\"],\"XEoGkQ\":[\"Vai alla homepage\"],\"XILg0L\":[\"Indirizzo email non valido\"],\"XJOV1Y\":[\"Attività\"],\"XNxYxq\":[\"Template di board\"],\"XTKtey\":[\"Crea lista\"],\"XXbgHS\":[\"Assunto\"],\"XYLcNv\":[\"Supporto\"],\"XicmhT\":[\"Data di scadenza\"],\"Xid3K6\":[\"L'URL della board può contenere solo lettere, numeri e trattini\"],\"Xjj/kS\":[\"Kanban reinventato\"],\"XpcjLO\":[\"Impossibile aggiornare l'URL della board\"],\"Y8yzGg\":[\"Inizia gratis. Aggiorna man mano che il tuo team cresce. Nessun costo nascosto, nessun contratto.\"],\"YBBifR\":[\"Disconnetti Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Impossibile riordinare l'elemento della checklist\"],\"YRk79X\":[\"Sicurezza avanzata, conformità e supporto dedicato per grandi organizzazioni.\"],\"YVT40D\":[\"ha rimosso l'etichetta <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Errore durante l'upgrade dell'abbonamento\"],\"YcyP2z\":[\"Impossibile creare il template\"],\"YdIn4I\":[\"You were removed from a workspace\"],\"Yf9FAx\":[\"Non potranno accedere a questo workspace.\"],\"YhvWXb\":[\"Analisi della board\"],\"YirHq7\":[\"Feedback\"],\"YkfDoz\":[\"Annuale\"],\"YoyKbT\":[\"Questa chiave API verrà mostrata solo una volta. Salvala in un luogo sicuro.\"],\"Ypy5pZ\":[\"Sei sicuro di voler eliminare il webhook \\\"\",[\"webhookName\"],\"\\\"? Questa azione non può essere annullata.\"],\"YtUfwW\":[\"Impossibile effettuare il login con \",[\"0\"],\". Riprova.\"],\"Yx0Ud8\":[\"Richiesto\"],\"Z3FXyt\":[\"Caricamento...\"],\"Z3krJD\":[\"Consenti ai membri del workspace di vedere gli indirizzi email degli altri\"],\"Z6r9z1\":[\"Impossibile eliminare la card\"],\"ZAs2NN\":[\"Tutte le funzionalità Pro +\"],\"ZDGm40\":[\"Elimina account\"],\"ZDIydz\":[\"Inizia\"],\"ZDPJBc\":[\"I nomi utente personalizzati richiedono l'aggiornamento a un piano Pro\"],\"ZDo4HN\":[\"Brainstorming\"],\"ZH7TVS\":[\"Titolo della card\"],\"ZL1A+p\":[\"Impossibile caricare l'allegato. Riprova.\"],\"ZT4Khw\":[\"Sei sicuro di voler eliminare questa card?\"],\"ZU5IYI\":[\"Board illimitate, liste illimitate, card illimitate. Nessuna carta di credito richiesta.\"],\"ZXSPJt\":[\"Si è verificato un errore imprevisto. Riprova più tardi.\"],\"ZqDqbi\":[\"Organizza e trova le card rapidamente con potenti strumenti di filtraggio.\"],\"Zz1qkk\":[\"Card illimitate\"],\"a3LDKx\":[\"Sicurezza\"],\"aHCEmh\":[\"Prezzi\"],\"aHRWVI\":[\"ha rimosso la data di scadenza\"],\"aJ4pMe\":[\"FAQ\"],\"aKJHG+\":[\"Archivia bacheca\"],\"aW3TOw\":[\"Notifiche email\"],\"aWDhU5\":[\"Kanban è meglio con un team. Perfetto per team piccoli e in crescita che vogliono collaborare.\"],\"aWlSc/\":[\"Crea nuova lista\"],\"abUZlY\":[\"Aggiungi dettagli...\"],\"aelko+\":[\"Puoi ottenere un URL personalizzato per il workspace, come <0>kan.bn/kan, andando nelle <1>impostazioni del workspace e acquistando un abbonamento pro. Tutti gli abbonamenti aiutano a finanziare lo sviluppo del progetto!\"],\"agPptk\":[\"Medio\"],\"aiHZVP\":[\"Visualizza documentazione\"],\"b/LfJo\":[\"email\"],\"b3Thhd\":[\"Caricamento non riuscito\"],\"b5FKyH\":[\"ha aggiunto l'etichetta <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Crea \",[\"0\"]],\"bD8I7O\":[\"Completa\"],\"bDI6VI\":[[\"0\"],\" è stato rimosso dai tuoi preferiti.\"],\"bFREhu\":[\"Fine dell'elenco\"],\"bJZm1W\":[\"Candidati\"],\"bJtM0P\":[\"Questo URL dello workspace è riservato\"],\"bKzM8L\":[\"Account manager dedicato\"],\"bZSICm\":[\"Impossibile aggiungere l'elemento della checklist\"],\"bcIybO\":[\"Il nome del workspace è obbligatorio\"],\"bdztP2\":[\"Ricerca\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"Il ruolo del membro è stato aggiornato.\"],\"bff61F\":[\"Piano team\"],\"bfgr/e\":[\"Domanda\"],\"bmXKoX\":[\"ha aggiunto \",[\"0\"],\" etichette: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Errore durante l'eliminazione dell'account\"],\"c/IAuR\":[\"Importante\"],\"c3b0B0\":[\"Inizia\"],\"c4nMcR\":[\"Il tuo avatar\"],\"c9AJhn\":[\"Unisciti al workspace\"],\"cAgBMh\":[\"Controllo e proprietà completi:\"],\"cFQEU/\":[\"Apri scorciatoie da tastiera\"],\"cOh+MI\":[\"Screening\"],\"cWXW+7\":[\"Aggiungi webhook\"],\"cWcxrL\":[\"Nuova checklist\"],\"cWtfn1\":[\"Passa a Pro ($29/mese)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Descrizione workspace\"],\"cji2nM\":[\"Errore durante la creazione del link di invito\"],\"cnGeoo\":[\"Elimina\"],\"cp1rsD\":[\"Disattiva link di invito\"],\"csFbe+\":[\"Vai ai modelli\"],\"curoK5\":[\"Nuovo workspace\"],\"d+F6q9\":[\"Creato\"],\"d33Usy\":[\"Crea checklist\"],\"dEgA5A\":[\"Annulla\"],\"dUh9QW\":[\"Pianificazione\"],\"ddrz1m\":[\"In ritardo\"],\"delOXn\":[\"Impossibile aggiornare le etichette\"],\"dgr4Kq\":[\"Modifica etichetta\"],\"dmKdk0\":[\"Una volta eliminato il tuo workspace, non si può tornare indietro. Questa azione non può essere annullata.\"],\"dsLT3m\":[\"Crea card\"],\"dtQIWT\":[\"Collaborazione\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Questo URL del workspace è già stato utilizzato\"],\"e1v+J3\":[\"Secret (facoltativo)\"],\"e4hPSt\":[\"Ripristina impostazioni predefinite del ruolo\"],\"e6wIqm\":[\"You were mentioned in a card\"],\"eEQyz+\":[\"Tieni traccia di tutte le modifiche alle card con una cronologia dettagliata delle attività.\"],\"ePK91l\":[\"Modifica\"],\"eZCGbT\":[\"Sì, offriamo un piano gratuito per sempre per uso individuale. Nessuna restrizione, nessun paywall, nessun limite.\"],\"edWbV6\":[\"Link copiato\"],\"ekCRTP\":[\"Rifiutato\"],\"en3oy5\":[\"Funzionalità\"],\"euc6Ns\":[\"Duplica\"],\"eus61c\":[\"Invia test\"],\"evg7+A\":[\"Le tue board sono state importate.\"],\"evj0lK\":[\"Offrite un piano gratuito?\"],\"f8fH8W\":[\"Design\"],\"f8lDFq\":[\"ha creato la card\"],\"fDQ7hA\":[\"Copia etichette\"],\"fEY2vP\":[\"Card non trovata\"],\"fQCrjt\":[\"La visibilità della tua bacheca è stata impostata su \",[\"0\"],\".\"],\"fR9laE\":[\"Inserisci la tua password attuale\"],\"fSf2ee\":[\"Visualizza la nostra roadmap.\"],\"fW5sSv\":[\"Modifica webhook\"],\"fYVH36\":[\"Impossibile aggiornare il commento\"],\"fcWrnU\":[\"Esci\"],\"fuwKpE\":[\"Riprova.\"],\"fvLNDy\":[\"Nessuna lista è stata ancora creata\"],\"fzGyWs\":[\"Modifica la dimensione del carattere dell'applicazione.\"],\"fziA2d\":[\"Commenti illimitati\"],\"g2xBxu\":[\"Importare le tue bacheche Trello in Kan è facile. Puoi seguire la nostra guida passo dopo passo <0>qui.\"],\"g9NChz\":[\"Account manager\"],\"gGx5tM\":[\"Modifica\"],\"gKmoow\":[\"Questo URL è riservato\"],\"gL/7jw\":[\"Aggiungi descrizione... (digita '/' per aprire i comandi o '@' per menzionare)\"],\"gQ/02p\":[\"Errore nella disconnessione da GitHub\"],\"gUX7b+\":[\"L'alternativa open source <0/> a Trello\"],\"gZxH/p\":[\"ha modificato la data di scadenza in <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"Il nome del workspace non può superare i 64 caratteri\"],\"gkxGkF\":[\"Prova gratuita di 14 giorni · Cambia piano o annulla in qualsiasi momento\"],\"gkzAEM\":[\"Continua con \",[\"0\"]],\"goklcJ\":[\"Colloquio\"],\"gpfJ3v\":[\"Gratuito, per sempre\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"L'URL della board non può superare i 60 caratteri\"],\"h16FyT\":[\"Liste\"],\"h2FKMV\":[\"Non hai i permessi necessari\"],\"h2ztFt\":[\"Tutte le funzionalità Free +\"],\"h4VV67\":[\"ha aggiunto una checklist\"],\"h7MgpO\":[\"Scorciatoie da tastiera\"],\"h8DugX\":[\"Etichette\"],\"hAMddS\":[\"ha rimosso la propria assegnazione dalla card\"],\"hB02vO\":[\"Gestisci membri\"],\"hXMFoN\":[\"Nessuna lista\"],\"hYzsXr\":[\"Impostazioni | Integrazioni\"],\"hty0d5\":[\"Lunedì\"],\"i0ZMQl\":[\"Bacheca archiviata\"],\"i30J2U\":[\"Nessun progetto trovato\"],\"i5rE2/\":[\"L'URL non può superare i 64 caratteri\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Indietro\"],\"iHcdea\":[\"Scadenza la prossima settimana\"],\"iLbjv+\":[\"Può modificare workspace\"],\"iQmbPb\":[\"Licenza\"],\"iSLIjg\":[\"Connetti\"],\"iTylMl\":[\"Template\"],\"iVIGZb\":[\"Allegato caricato\"],\"isRobC\":[\"Nuovo\"],\"itgYbC\":[\"Webhook di test inviato con successo!\"],\"iwr7AP\":[\"Idee\"],\"iy1wb+\":[\"Impostazioni | API\"],\"j0o6ml\":[\"La descrizione del tuo workspace\"],\"j1+HPc\":[\"Si è verificato un errore durante la connessione del tuo account GitHub.\"],\"j2+d/o\":[\"Riferimento API\"],\"j77sVH\":[\"You were assigned to\"],\"j9IZZ0\":[\"URL workspace personalizzato\"],\"jDRt4n\":[\"Vuoi annullare l'iscrizione?\"],\"jEw0Mr\":[\"Inserisci un URL valido\"],\"jIuWsV\":[\"Il nome del webhook non può superare i 255 caratteri\"],\"jL82rC\":[\"Cancella permessi personalizzati\"],\"jNuzV/\":[\"Può eliminare card\"],\"jQ6I8X\":[\"Ruolo aggiornato\"],\"jZBHkN\":[\"Il nome del workspace deve contenere almeno 3 caratteri\"],\"jfC/xh\":[\"Contatti\"],\"jl3aEJ\":[\"ha contrassegnato l'elemento della checklist <0>\",[\"0\"],\" come incompleto\"],\"jlB2RY\":[\"La password attuale inserita non è corretta.\"],\"jwI32v\":[\"Board non trovata\"],\"k7rCa/\":[\"Grande\"],\"kECVpo\":[\"Sei sicuro di voler eliminare questa etichetta?\"],\"kQwvU8\":[\"ha rimosso un'etichetta dalla card\"],\"kSxwQL\":[\"Puoi invitare membri del team cliccando il pulsante \\\"Invita\\\" nell'angolo in alto a destra della <0>pagina membri e inserendo il loro indirizzo email. Riceveranno un'email con un link per unirsi al workspace.\"],\"kYu0eF\":[\"Elimina workspace\"],\"kfOGMr\":[\"Quick win\"],\"klpSmb\":[\"Modifica URL workspace\"],\"kp6L3T\":[\"Questo nome utente dello workspace è già stato utilizzato\"],\"kryGs+\":[\"Card\"],\"kuoc68\":[\"$10/mese\"],\"kxEs5t\":[\"Importazioni Trello\"],\"l2PIAy\":[\"Self host con Github\"],\"l31EoQ\":[\"Trova risposte alle domande più comuni su Kan. Non trovi quello che cerchi? Sentiti libero di <0>contattarci.\"],\"l3s5ri\":[\"Importa\"],\"l4asa1\":[\"Questa bacheca è privata o non esiste\"],\"lGjicL\":[\", oppure consulta il nostro\"],\"lKAvEd\":[\"Errore durante la disconnessione da Trello\"],\"lXvXNI\":[\"Impossibile copiare il link di invito\"],\"lYT7pQ\":[\"Elimina lista\"],\"lkz85l\":[\"La principale differenza tra Kan e Trello è che Kan è open source, permettendo a chiunque di visualizzare, modificare e contribuire al nostro codice. La nostra offerta cloud non prevede inoltre alcuna restrizione sulle funzionalità per l'uso individuale, mentre Trello blocca funzionalità di base come il numero di bacheche che puoi creare dietro un paywall.\"],\"lo8xBK\":[\"Sei sicuro di voler rimuovere \",[\"entityLabel\"],\"?\"],\"lpIMne\":[\"Le password non corrispondono\"],\"lsgnzd\":[\"Errore durante l'upgrade a Pro\"],\"lyqwgn\":[\"Aggiungi etichetta\"],\"m2nk0i\":[\"Prezzi semplici\"],\"mErq7F\":[\"Registrati\"],\"mHhffx\":[\"Impossibile creare la checklist\"],\"mTGd3+\":[\"ha eliminato una checklist\"],\"mTwGOf\":[\"Questo link di invito non è valido o è scaduto.\"],\"mU+M00\":[[\"0\"],\" è stato aggiunto ai tuoi preferiti.\"],\"mVZH9V\":[\"Quando Trello è stato lanciato nel 2011, ha stupito tutti con la sua semplicità accuratamente progettata, ma nel corso degli anni ha perso la sua magia e si è trasformato in qualcosa di più simile a \\\"Jira Lite\\\". Questo progetto è il nostro tentativo di recuperare la magia originale della semplicità di Trello, in open source.\"],\"mZGPxt\":[\"Link di invito copiato negli appunti\"],\"mchgzf\":[\"Ti sei registrato con successo.\"],\"mgXgHu\":[\"Vai alle bacheche\"],\"mrhyIB\":[\"Perfetto per team piccoli e in crescita che cercano collaborazione.\"],\"mwBdZ2\":[\"Questo comporterà l'eliminazione permanente di tutti i dati associati al tuo account.\"],\"mx8+1u\":[\"Membri illimitati\"],\"n+xLOH\":[\"Assistenza clienti\"],\"n1GRql\":[\"Nuova etichetta\"],\"n1ekoW\":[\"Accedi\"],\"n6EWYz\":[\"Utilizzato per firmare i payload dei webhook per la verifica. Lasciare vuoto per mantenere il segreto esistente.\"],\"n9V+ps\":[\"Inserisci il tuo nome\"],\"nKBUeF\":[\"La scheda è stata duplicata.\"],\"nOhz3x\":[\"Esci\"],\"nYNMZZ\":[\"Posizione nell'elenco (0 = primo, lascia vuoto per la fine)\"],\"nabda1\":[\"Elimina card\"],\"nbfdhU\":[\"Integrazioni\"],\"ngBZOd\":[\"Aggiungi commento... (digita '/' per aprire i comandi o '@' per menzionare)\"],\"nhMhRr\":[\"Grazie per il tuo feedback!\"],\"njJFtc\":[\"Elimina commento\"],\"nk7caK\":[\"Connetti Trello\"],\"nol/Fb\":[\"Come invito i membri del team?\"],\"notwF1\":[\"Il nome del template non può superare i 100 caratteri\"],\"nq7q3Z\":[\"Il nome della chiave API non può superare i 30 caratteri\"],\"nqdIhs\":[\"Template board personalizzati\"],\"nryrgW\":[\"Tutte le sostituzioni dei permessi dei membri sono state ripristinate ai valori predefiniti del loro ruolo.\"],\"o+JCfN\":[\"Scelto da team dinamici<0/>in tutto il mondo\"],\"o4e/70\":[\"Seleziona almeno un evento\"],\"o4sQAg\":[\"Impossibile creare il webhook\"],\"o7J4JM\":[\"Filtra\"],\"o8adVG\":[\"Caricamento file da 10 MB\"],\"o9WLwO\":[\"Impossibile aggiornare la card\"],\"oVBq1w\":[\"per utente/mese\"],\"oW13KZ\":[\"Inizia gratuitamente oggi\"],\"odFCYX\":[\"Invito non valido\"],\"okpxfB\":[\"Crea nuova chiave\"],\"onllUU\":[\"Mark all as read\"],\"oyRjD/\":[\"Piano Pro\"],\"p/hk9N\":[\"Hai effettuato l'accesso con successo.\"],\"pBsoKL\":[\"Aggiungi ai preferiti\"],\"pFGfsR\":[\"Dai un'occhiata ad alcuni dei nostri progetti open source preferiti.\"],\"pFKC6A\":[\"Nome chiave API\"],\"pL78ec\":[\"Aggiunto ai preferiti\"],\"pM1sn/\":[\"New notification\"],\"pVctI7\":[\"Opzione di deployment on-premise\"],\"pXVFJy\":[\"Può eliminare board\"],\"pa9o5D\":[\"Ritaglia il tuo avatar\"],\"pfa8F0\":[\"Nome visualizzato\"],\"pmUArF\":[\"Workspace\"],\"pnrmSP\":[\"Nuova card\"],\"ppaRWv\":[\"Self host\"],\"pvnfJD\":[\"Scuro\"],\"q+lt9D\":[\"Errore durante l'eliminazione dell'etichetta\"],\"q3il6U\":[\"Dimensione del carattere\"],\"qPP4lD\":[\"Invitare membri richiede un piano Team. Verrai reindirizzato per aggiornare il tuo workspace.\"],\"qQXocp\":[\"Può gestire le impostazioni dello workspace\"],\"qaS+1/\":[\"Ideale per team che vogliono scalare senza limiti\"],\"qfUS/w\":[\"Open source friends\"],\"qkjvgj\":[\"Il tuo workspace è stato eliminato.\"],\"qlAIQ1\":[\"Remoto\"],\"qtE5nt\":[\"Aggiungi un elemento...\"],\"qzdST2\":[\"Visibilità della board\"],\"r6BgwX\":[\"La password è richiesta per accedere.\"],\"rD6UIt\":[\"Inizia su Cloud\"],\"rF8SEQ\":[\"Modifica commento\"],\"rQRXo8\":[\"Inserisci un nuovo secret per aggiornare\"],\"rQXTmd\":[\"URL della card copiato negli appunti\"],\"rRM7r0\":[\"Importa le tue bacheche Trello e inizia subito.\"],\"rYUZIe\":[\"Seleziona origine\"],\"raHesj\":[\"Hai annullato l'iscrizione!\"],\"rarRW/\":[\"Errore durante l'invito del membro\"],\"ri1hHe\":[\"Scadenza il mese prossimo\"],\"rmN315\":[\"Divertimento\"],\"rs7L54\":[\"ha aggiunto un membro alla card\"],\"rtbVvN\":[\"Può modificare liste\"],\"s+MGs7\":[\"Risorse\"],\"s6iE/c\":[\"La registrazione è attualmente disabilitata. Riprova più tardi.\"],\"sBhOFG\":[\"Gestione delle attività semplice e visiva che funziona davvero. Trascina e rilascia le schede, collabora con il tuo team e porta a termine più cose.\"],\"sDLCvT\":[\"Connetti i tuoi strumenti preferiti per semplificare il tuo flusso di lavoro.\"],\"sDuhfK\":[\"Offerta di lancio: posti illimitati a soli $29/mese con Pro\"],\"sU2uWc\":[\"Scheda duplicata\"],\"sUZo7y\":[\"Registrati | kan.bn\"],\"sVBn4K\":[\"Errore durante l'aggiornamento del nome visualizzato\"],\"sY2lzr\":[\"Nessun URL di download disponibile per questo allegato.\"],\"sbNNyi\":[\"Nuovo webhook\"],\"snMaH4\":[\"Elimina webhook\"],\"t+R8+P\":[\"Esecuzione\"],\"t/YqKh\":[\"Rimuovi\"],\"t0dTPm\":[\"Configura i webhook per ricevere notifiche quando le schede vengono create, aggiornate, spostate o eliminate.\"],\"t2nDzl\":[\"Visualizza e gestisci la fatturazione e l'abbonamento.\"],\"t6FvJH\":[\"Può aggiungere commenti\"],\"tGwwnq\":[\"ha aggiornato la descrizione\"],\"tHcbLF\":[\"Può modificare board\"],\"tIdipJ\":[\"Modifica URL bacheca\"],\"tMYIu7\":[\"Registri attività\"],\"tOZp9v\":[\"Ruoli utente e permessi configurabili\"],\"tTbref\":[\"La password è richiesta per registrarsi.\"],\"tYN21H\":[\"L'utente è già membro di questo workspace\"],\"tbNcu4\":[\"Bacheca ripristinata\"],\"tca56/\":[\"Il tuo file è stato caricato con successo.\"],\"tfDRzk\":[\"Salva\"],\"tlhgDC\":[\"Nessuna bacheca archiviata\"],\"tmlJN1\":[\"Inserisci un URL YouTube valido\"],\"tmpW+w\":[\"Elimina board\"],\"tst44n\":[\"Eventi\"],\"tyHiOa\":[\"Riprova più tardi o contatta l'assistenza clienti.\"],\"u2+JIh\":[\"Gli URL personalizzati richiedono l'upgrade a un piano Pro\"],\"u8JHrO\":[\"Cancella filtri\"],\"uAQUqI\":[\"Stato\"],\"uEGGDs\":[\"Il mio webhook\"],\"uOqaMC\":[\"Sei stato invitato a unirti a un workspace.\"],\"uP4V6I\":[\"Gratuito per tutti\"],\"uXGLuq\":[\"Crea chiave API\"],\"uZg2+w\":[\"Potenzia il tuo workspace per soli $29 al mese. Ecco cosa otterrai:\"],\"uck1tz\":[\"ha rimosso un membro dalla card\"],\"usVytm\":[\"Una volta eliminato il tuo account, non si può tornare indietro. Questa azione non può essere annullata.\"],\"uvH2xS\":[\"Copia membri\"],\"v+Wp++\":[\"Open source\"],\"v1kQyJ\":[\"Webhook\"],\"v3YoMA\":[\"Senior\"],\"vAR/I8\":[\"Esegui sulla tua infrastruttura\"],\"vAj6xG\":[\"Puoi effettuare il self-hosting seguendo le istruzioni nel nostro <0>repo.\"],\"vSJd18\":[\"Video\"],\"vUr5JT\":[\"Non hai un account? <0><1>Registrati\"],\"vXIe7J\":[\"Lingua\"],\"vXemf6\":[\"Bug\"],\"va/3u1\":[\"Controlla chi può visualizzare e modificare le tue board.\"],\"vbskQn\":[\"Il nome della chiave API è obbligatorio\"],\"veIDCY\":[\"Inizia la prova gratuita di 14 giorni\"],\"vfRdCZ\":[\"Impossibile ripristinare i permessi\"],\"vgdzLf\":[\"Crea un altro\"],\"vifyyw\":[\"Legale\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"I permessi di questo membro sono stati ripristinati ai valori predefiniti del suo ruolo.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"fatturazione mensile\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Lungo termine\"],\"vwGkYB\":[\"La password deve contenere almeno 8 caratteri\"],\"wIb7Ng\":[\"Sviluppo software\"],\"wK4OTM\":[\"Titolo (facoltativo)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Seleziona un file da caricare.\"],\"wY+6Ye\":[\"Questo URL della bacheca è già stato utilizzato\"],\"wakO3W\":[\"ha aggiunto la checklist <0>\",[\"0\"],\"\"],\"wewm3j\":[\"Il nome della board non può superare i 100 caratteri\"],\"wgNoIs\":[\"Seleziona tutto\"],\"wlQNTg\":[\"Membri\"],\"wqkcin\":[\"Può visualizzare i commenti\"],\"wqxglO\":[\"Apprendimento\"],\"wruKPE\":[\"Sostieni lo sviluppo del progetto\"],\"wsy94z\":[\"Ideale per grandi organizzazioni con esigenze avanzate\"],\"wtxjAY\":[\"Membri del workspace\"],\"x0kMO/\":[\"Errore durante l'aggiornamento dell'URL dello workspace\"],\"x8GeCD\":[\"Nome visualizzato aggiornato\"],\"xEbBrW\":[\"Quale licenza stai utilizzando?\"],\"xGVfLh\":[\"Continua\"],\"xLTZVf\":[\"Giorno di inizio settimana\"],\"xMn+V9\":[\"Importazione da Trello\"],\"xRPn3U\":[\"Inserisci il tuo indirizzo email\"],\"xvcYhz\":[\"Cancella tutti i permessi personalizzati dei membri in modo che tutti i membri ereditino solo i permessi predefiniti dal loro ruolo.\"],\"y3aU20\":[\"Salva modifiche\"],\"yD3ZSw\":[\"Modifica le tue preferenze di lingua.\"],\"yV7o5I\":[\"Come importo le mie bacheche Trello?\"],\"yb/fjw\":[\"Approvazione\"],\"yhLUU8\":[\"Errore nella connessione a GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Importa progetto (1)\"],\"other\":[\"Importa progetti (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Chiudi\"],\"zC8Whw\":[\"Inizia creando una nuova lista\"],\"zERArS\":[\"ha aggiornato il titolo in <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Crea link di invito\"],\"zMlxCA\":[\"1 utente\"],\"zMquA7\":[\"Scegli un piano\"],\"zQPhSa\":[\"Converti in link\"],\"zQX5Dj\":[\"Nome lista\"],\"zYRVNp\":[\"Seleziona un elenco\"],\"zkWmBh\":[\"Annuale\"],\"zl1b97\":[\"Impossibile creare la card\"],\"zoEbXq\":[\"Può visualizzare le card\"],\"zt/6cS\":[\"Ideale per piccoli team che vogliono collaborare e muoversi più velocemente insieme.\"],\"zto8aj\":[\"Trello disconnesso\"],\"zwBp5t\":[\"Privato\"],\"zwTiVn\":[\"ha rimosso un allegato <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Scopri di più\"],\"zxKs+y\":[\"Scadenza domani\"],\"zzDlyQ\":[\"Successo\"]}")as Messages; \ No newline at end of file diff --git a/apps/web/src/locales/nl/messages.json b/apps/web/src/locales/nl/messages.json index ca5bef94f..127f7f6b0 100644 --- a/apps/web/src/locales/nl/messages.json +++ b/apps/web/src/locales/nl/messages.json @@ -3,23 +3,40 @@ "message": " (edited)", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 153]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 153 + ] + ], "translation": " (bewerkt)" }, "lGjicL": { "message": ", or see our", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 102]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 102 + ] + ], "translation": ", of bekijk onze" }, "J/hVSQ": { "message": "{0}", "placeholders": { - "0": ["isTemplate ? \"Templates\" : \"Boards\""] + "0": [ + "isTemplate ? \"Templates\" : \"Boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/index.tsx", 53]], + "origin": [ + [ + "src/views/boards/index.tsx", + 53 + ] + ], "translation": "{0}" }, "JArWcF": { @@ -29,74 +46,146 @@ "card?.title ?? t`Card`", "isTemplate ? \"Templates\" : \"Boards\"" ], - "1": ["board?.name ?? t`Board`", "workspace.name ?? t`Workspace`"] + "1": [ + "board?.name ?? t`Board`", + "workspace.name ?? t`Workspace`" + ] }, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 48], - ["src/views/card/index.tsx", 317] + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/card/index.tsx", + 364 + ] ], "translation": "{0} | {1}" }, "mU+M00": { "message": "{0} has been added to your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 56]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 56 + ] + ], "translation": "{0} is toegevoegd aan je favorieten." }, "bDI6VI": { "message": "{0} has been removed from your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 57]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 57 + ] + ], "translation": "{0} is verwijderd uit je favorieten." }, "CJukzS": { "message": "{0} labels", "placeholders": { - "0": ["labelPublicIds.length"] + "0": [ + "labelPublicIds.length" + ] }, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 455]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 455 + ] + ], "translation": "{0} labels" }, "9x4DAL": { "message": "{0} not found", "placeholders": { - "0": ["isTemplate ? \"Template\" : \"Board\""] + "0": [ + "isTemplate ? \"Template\" : \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/index.tsx", 557]], + "origin": [ + [ + "src/views/board/index.tsx", + 561 + ] + ], "translation": "{0} niet gevonden" }, "0xWkkH": { "message": "{boardCount, plural, one {Import board (1)} other {Import boards ({boardCount})}}", "placeholders": { - "boardCount": ["boardCount"] + "boardCount": [ + "boardCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 489]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 489 + ] + ], "translation": "{boardCount, plural, one {Bord importeren (1)} other {Borden importeren ({boardCount})}}" }, + "JBaoDB": { + "message": "{overflow} more viewers", + "placeholders": { + "overflow": [ + "overflow" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 70 + ] + ], + "translation": "" + }, "yndBF+": { "message": "{projectCount, plural, one {Import project (1)} other {Import projects ({projectCount})}}", "placeholders": { - "projectCount": ["projectCount"] + "projectCount": [ + "projectCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 341]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 341 + ] + ], "translation": "{projectCount, plural, one {Project importeren (1)} other {Projecten importeren ({projectCount})}}" }, "9lFfqv": { "message": "/month", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 207]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 207 + ] + ], "translation": "/maand" }, "be30i9": { @@ -104,8 +193,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 30], - ["src/views/pricing/components/PricingTiers.tsx", 30] + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ] ], "translation": "€0" }, @@ -114,8 +209,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 158], - ["src/views/members/components/InviteMemberForm.tsx", 170] + [ + "src/views/members/components/InviteMemberForm.tsx", + 158 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] ], "translation": "€10/maand" }, @@ -123,7 +224,12 @@ "message": "$8/month", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 170]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] + ], "translation": "€8/maand" }, "zMlxCA": { @@ -131,9 +237,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 82], - ["src/views/pricing/components/Pricing.tsx", 36], - ["src/views/pricing/components/PricingTiers.tsx", 35] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 82 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 36 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 35 + ] ], "translation": "1 gebruiker" }, @@ -141,7 +256,12 @@ "message": "10mb file uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 90]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 90 + ] + ], "translation": "10 MB bestandsuploads" }, "gkxGkF": { @@ -149,9 +269,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 66], - ["src/views/pricing/components/PricingTiers.tsx", 88], - ["src/views/pricing/components/PricingTiers.tsx", 263] + [ + "src/views/pricing/components/PricingTiers.tsx", + 66 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 88 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 263 + ] ], "translation": "14 dagen gratis proefperiode · Wissel van abonnement of annuleer op elk moment" }, @@ -159,21 +288,48 @@ "message": "404 - Page Not Found | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 11]], + "origin": [ + [ + "src/pages/404.tsx", + 11 + ] + ], "translation": "404 - Pagina niet gevonden | kan.bn" }, + "Ws1I0u": { + "message": "A card was updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 54 + ] + ], + "translation": "" + }, "/rn4RE": { "message": "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 71]], + "origin": [ + [ + "src/views/home/index.tsx", + 71 + ] + ], "translation": "Een krachtige, flexibele kanban-app die je helpt werk te organiseren, voortgang bij te houden en resultaten te leveren—allemaal op één plek." }, "AeXO77": { "message": "Account", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 41]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 41 + ] + ], "translation": "Account" }, "TKFUnX": { @@ -181,7 +337,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 27 + ] ], "translation": "Account verwijderd" }, @@ -190,7 +349,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 283] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 283 + ] ], "translation": "Accountmanager" }, @@ -198,7 +360,12 @@ "message": "Actions", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 56]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 56 + ] + ], "translation": "Acties" }, "F6pfE9": { @@ -206,9 +373,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 26], - ["src/views/settings/components/NewWebhookModal.tsx", 293], - ["src/views/settings/components/WebhookList.tsx", 106] + [ + "src/views/boards/index.tsx", + 26 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 293 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] ], "translation": "Actief" }, @@ -217,8 +393,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 455], - ["src/views/public/board/CardModal.tsx", 200] + [ + "src/views/card/index.tsx", + 502 + ], + [ + "src/views/public/board/CardModal.tsx", + 200 + ] ], "translation": "Activiteit" }, @@ -227,7 +409,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 148] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 148 + ] ], "translation": "Activiteitenlogboek" }, @@ -235,35 +420,60 @@ "message": "Activity logs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 110]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 110 + ] + ], "translation": "Activiteitenlogboeken" }, "UGCIzB": { "message": "Add / edit label", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 50]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 50 + ] + ], "translation": "Label toevoegen / bewerken" }, "B3xxao": { "message": "Add a card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 136]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 136 + ] + ], "translation": "Kaart toevoegen" }, "qtE5nt": { "message": "Add an item...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 141]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 141 + ] + ], "translation": "Voeg een item toe..." }, "Gxxi5J": { "message": "Add checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 65]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 65 + ] + ], "translation": "Checklist toevoegen" }, "ngBZOd": { @@ -271,8 +481,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/Comment.tsx", 185], - ["src/views/card/components/NewCommentForm.tsx", 68] + [ + "src/views/card/components/Comment.tsx", + 185 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 68 + ] ], "translation": "Voeg opmerking toe... (typ '/' om commando's te openen of '@' om te vermelden)" }, @@ -280,14 +496,24 @@ "message": "Add description... (type '/' to open commands or '@' to mention)", "placeholders": {}, "comments": [], - "origin": [["src/components/Editor.tsx", 482]], + "origin": [ + [ + "src/components/Editor.tsx", + 482 + ] + ], "translation": "Voeg beschrijving toe... (typ '/' om commando's te openen of '@' om te vermelden)" }, "abUZlY": { "message": "Add details...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 189 + ] + ], "translation": "Voeg details toe..." }, "lyqwgn": { @@ -295,8 +521,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/LabelSelector.tsx", 114], - ["src/views/card/components/LabelSelector.tsx", 119] + [ + "src/views/card/components/LabelSelector.tsx", + 114 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 119 + ] ], "translation": "Label toevoegen" }, @@ -305,8 +537,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 135], - ["src/views/members/components/InviteMemberForm.tsx", 257] + [ + "src/views/card/components/MemberSelector.tsx", + 135 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 257 + ] ], "translation": "Lid toevoegen" }, @@ -314,126 +552,222 @@ "message": "Add to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 122]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 122 + ] + ], "translation": "Toevoegen aan favorieten" }, "cWXW+7": { "message": "Add webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 36 + ] + ], "translation": "Webhook toevoegen" }, "bmXKoX": { "message": "added {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 102]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 102 + ] + ], "translation": "heeft {0} labels toegevoegd: <0>{labelList}" }, "h4VV67": { "message": "added a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 132]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 132 + ] + ], "translation": "heeft een checklist toegevoegd" }, "O83K21": { "message": "added a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 135]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 135 + ] + ], "translation": "heeft een checklist-item toegevoegd" }, "T21jY/": { "message": "added a label to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 128]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 128 + ] + ], "translation": "heeft een label aan de kaart toegevoegd" }, "rs7L54": { "message": "added a member to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 130]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 130 + ] + ], "translation": "heeft een lid aan de kaart toegevoegd" }, "5y6qY8": { "message": "added an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 140]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 140 + ] + ], "translation": "heeft een bijlage toegevoegd" }, "CujNX4": { "message": "added an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 278]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 278 + ] + ], "translation": "heeft een bijlage toegevoegd <0>{0}" }, "wakO3W": { "message": "added checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 208]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 208 + ] + ], "translation": "heeft checklist <0>{0} toegevoegd" }, "E0t3jO": { "message": "added checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 232]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 232 + ] + ], "translation": "heeft checklist-item <0>{0} toegevoegd" }, "b5FKyH": { "message": "added label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 192]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 192 + ] + ], "translation": "heeft label <0>{0} toegevoegd" }, "pL78ec": { "message": "Added to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 53]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 53 + ] + ], "translation": "Toegevoegd aan favorieten" }, "14Xi3Z": { "message": "Adding a new member will cost an additional {price} ({billingType}) per seat.", "placeholders": { - "price": ["price"], - "billingType": ["billingType"] + "price": [ + "price" + ], + "billingType": [ + "billingType" + ] }, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 327]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 327 + ] + ], "translation": "Het toevoegen van een nieuw lid kost {price} ({billingType}) extra per seat." }, "D7/JvJ": { "message": "Adjust the square crop to fit your avatar.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 256]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 256 + ] + ], "translation": "Pas de vierkante uitsnede aan zodat deze bij je avatar past." }, "U3pytU": { "message": "Admin", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 201]], + "origin": [ + [ + "src/views/members/index.tsx", + 201 + ] + ], "translation": "Beheerder" }, "3pIq39": { @@ -441,19 +775,39 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 264], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 265], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 266], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 267], - ["src/views/pricing/components/Pricing.tsx", 55] - ], - "translation": "Beheerdersrollen" - }, + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 264 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 265 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 266 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 267 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 55 + ] + ], + "translation": "Beheerdersrollen" + }, "Kec+/t": { "message": "Advanced admin controls", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 103]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 103 + ] + ], "translation": "Geavanceerde beheerdersinstellingen" }, "/jd3aj": { @@ -461,7 +815,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 268] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 268 + ] ], "translation": "Geavanceerde beheerdersrollen" }, @@ -469,42 +826,72 @@ "message": "Advanced security, compliance, and dedicated support for large organizations.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 97 + ] + ], "translation": "Geavanceerde beveiliging, compliance en toegewijde ondersteuning voor grote organisaties." }, "h2ztFt": { "message": "All Free features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 56]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 56 + ] + ], "translation": "Alle gratis functies +" }, "nryrgW": { "message": "All member permission overrides have been reset to their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 26 + ] + ], "translation": "Alle aangepaste rechten van leden zijn teruggezet naar de standaardinstellingen van hun rol." }, "ZAs2NN": { "message": "All Pro features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 101]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 101 + ] + ], "translation": "Alle Pro-functies +" }, "UQbwrz": { "message": "All systems operational", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 18]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 18 + ] + ], "translation": "Alle systemen operationeel" }, "EII/X8": { "message": "All Teams features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 79]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 79 + ] + ], "translation": "Alle Teams-functies +" }, "Z3krJD": { @@ -523,28 +910,48 @@ "message": "Already have an account? <0><1>Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 90]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 90 + ] + ], "translation": "Heb je al een account? <0><1>Inloggen" }, "j1+HPc": { "message": "An error occurred while connecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 107]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 107 + ] + ], "translation": "Er is een fout opgetreden bij het verbinden van je GitHub-account." }, "Dz63YI": { "message": "An error occurred while disconnecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 130]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 130 + ] + ], "translation": "Er is een fout opgetreden bij het loskoppelen van je GitHub-account." }, "WmPhYW": { "message": "An error occurred while disconnecting your Trello account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 87]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 87 + ] + ], "translation": "Er is een fout opgetreden bij het loskoppelen van je Trello-account." }, "ZXSPJt": { @@ -552,7 +959,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 90] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 90 + ] ], "translation": "Er is een onverwachte fout opgetreden. Probeer het later opnieuw." }, @@ -560,14 +970,24 @@ "message": "Annual", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 63]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 63 + ] + ], "translation": "Jaarlijks" }, "3bqt9U": { "message": "Anyone with this link can join your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 311]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 311 + ] + ], "translation": "Iedereen met deze link kan lid worden van je werkruimte" }, "OZtEcz": { @@ -575,8 +995,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 65], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 237] + [ + "src/components/SettingsLayout.tsx", + 65 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 237 + ] ], "translation": "API" }, @@ -584,119 +1010,196 @@ "message": "API key created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 91]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 91 + ] + ], "translation": "API-sleutel aangemaakt" }, "pFKC6A": { "message": "API key name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 161]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 161 + ] + ], "translation": "API-sleutelnaam" }, "nq7q3Z": { "message": "API key name cannot exceed 30 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 25 + ] + ], "translation": "API-sleutelnaam mag niet langer zijn dan 30 tekens" }, "vbskQn": { "message": "API key name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 24 + ] + ], "translation": "API-sleutelnaam is verplicht" }, "5h8ooz": { "message": "API keys", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 22]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 22 + ] + ], "translation": "API-sleutels" }, "j2+d/o": { "message": "API Reference", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 31]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 31 + ] + ], "translation": "API-referentie" }, "bJZm1W": { "message": "Applicants", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 75]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 75 + ] + ], "translation": "Aanvragers" }, "yb/fjw": { "message": "Approval", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 46]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 46 + ] + ], "translation": "Goedkeuring" }, "aKJHG+": { "message": "Archive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Board archiveren" }, "TdfEV7": { "message": "Archived", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 27]], + "origin": [ + [ + "src/views/boards/index.tsx", + 27 + ] + ], "translation": "Gearchiveerd" }, "lo8xBK": { "message": "Are you sure want to remove {entityLabel}?", "placeholders": { - "entityLabel": ["entityLabel"] + "entityLabel": [ + "entityLabel" + ] }, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 47] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 47 + ] ], "translation": "Weet je zeker dat je {entityLabel} wilt verwijderen?" }, "Ypy5pZ": { "message": "Are you sure you want to delete the webhook \"{webhookName}\"? This action cannot be undone.", "placeholders": { - "webhookName": ["webhookName"] + "webhookName": [ + "webhookName" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 60 + ] ], "translation": "Weet je zeker dat je de webhook \"{webhookName}\" wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt." }, "BhDZlc": { "message": "Are you sure you want to delete the workspace {0}?", "placeholders": { - "0": ["workspace.name"] + "0": [ + "workspace.name" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 62] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 62 + ] ], "translation": "Weet je zeker dat je de werkruimte {0} wilt verwijderen?" }, "DMeWZD": { "message": "Are you sure you want to delete this {0}?", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/DeleteBoardConfirmation.tsx", 36]], + "origin": [ + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 36 + ] + ], "translation": "Weet je zeker dat je deze {0} wilt verwijderen?" }, "ZT4Khw": { "message": "Are you sure you want to delete this card?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 75]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 75 + ] + ], "translation": "Weet je zeker dat je deze kaart wilt verwijderen?" }, "Fpci8b": { @@ -704,7 +1207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 56] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 56 + ] ], "translation": "Weet je zeker dat je deze checklist wilt verwijderen?" }, @@ -712,14 +1218,24 @@ "message": "Are you sure you want to delete this comment?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 66]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 66 + ] + ], "translation": "Weet je zeker dat je deze opmerking wilt verwijderen?" }, "kECVpo": { "message": "Are you sure you want to delete this label?", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 41]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 41 + ] + ], "translation": "Weet je zeker dat je dit label wilt verwijderen?" }, "74F7N/": { @@ -727,17 +1243,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 54] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 54 + ] ], "translation": "Weet je zeker dat je je account wilt verwijderen?" }, "PyYD/v": { "message": "assigned <0>{0} to the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 172]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 172 + ] + ], "translation": "heeft <0>{0} aan de kaart toegewezen" }, "JUce1S": { @@ -745,7 +1271,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 199] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 199 + ] ], "translation": "Toegewezen aan" }, @@ -753,91 +1282,156 @@ "message": "Attachment uploaded", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 45]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 45 + ] + ], "translation": "Bijlage geüpload" }, "1rWxEw": { "message": "Awaiting Customer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 59]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 59 + ] + ], "translation": "Wacht op klant" }, "iH8pgl": { "message": "Back", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 275]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 275 + ] + ], "translation": "Terug" }, "KNKCTb": { "message": "Backlog", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Backlog" }, "Vt50G1": { "message": "Basic Kanban", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 16]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 16 + ] + ], "translation": "Basis kanban" }, "Pat4r8": { "message": "Basic Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 28]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 28 + ] + ], "translation": "Basis roadmap" }, "Cd4sTD": { "message": "Best for individuals and solo creators getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 32]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 32 + ] + ], "translation": "Het beste voor individuen en solo-makers die aan de slag gaan" }, "wsy94z": { "message": "Best for large organizations with advanced needs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 98 + ] + ], "translation": "Het beste voor grote organisaties met geavanceerde behoeften" }, "UoSI+i": { "message": "Best for small and growing teams that need collaboration", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 53]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 53 + ] + ], "translation": "Het beste voor kleine en groeiende teams die samenwerking nodig hebben" }, "zt/6cS": { "message": "Best for small teams who want to collaborate and move faster together.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 86]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 86 + ] + ], "translation": "Het beste voor kleine teams die willen samenwerken en sneller vooruit willen komen." }, "qaS+1/": { "message": "Best for teams that want to scale without limits", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 76]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 76 + ] + ], "translation": "Het beste voor teams die onbeperkt willen schalen" }, "ARvBT/": { "message": "billed annually", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "jaarlijks gefactureerd" }, "+VoTOr": { "message": "billed monthly", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "maandelijks gefactureerd" }, "R+w/Va": { @@ -845,9 +1439,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 58], - ["src/views/boards/components/TemplateBoards.tsx", 68], - ["src/views/settings/BillingSettings.tsx", 39] + [ + "src/components/SettingsLayout.tsx", + 58 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 68 + ], + [ + "src/views/settings/BillingSettings.tsx", + 39 + ] ], "translation": "Facturering" }, @@ -855,14 +1458,24 @@ "message": "Billing portal", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 49 + ] + ], "translation": "Facturatieportaal" }, "4RoY9J": { "message": "Blog Post", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Blogpost" }, "QD8opX": { @@ -870,9 +1483,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/card/index.tsx", 317], - ["src/views/public/board/index.tsx", 125] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/card/index.tsx", + 364 + ], + [ + "src/views/public/board/index.tsx", + 125 + ] ], "translation": "Bord" }, @@ -881,8 +1503,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 314], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 85] + [ + "src/components/NewWorkspaceForm.tsx", + 314 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 85 + ] ], "translation": "Bordanalyse" }, @@ -890,28 +1518,48 @@ "message": "Board archived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Board gearchiveerd" }, "wewm3j": { "message": "Board name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 23 + ] + ], "translation": "Bordnaam mag niet meer dan 100 tekens bevatten" }, "R1c3Mq": { "message": "Board name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 22 + ] + ], "translation": "Bordnaam is verplicht" }, "jwI32v": { "message": "Board not found", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 181]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 181 + ] + ], "translation": "Bord niet gevonden" }, "XNxYxq": { @@ -919,7 +1567,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 116] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 116 + ] ], "translation": "Bordsjablonen" }, @@ -927,21 +1578,36 @@ "message": "Board unarchived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Board gedearchiveerd" }, "Xid3K6": { "message": "Board URL can only contain letters, numbers, and hyphens", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 46]], - "translation": "Board-URL mag alleen letters, cijfers en koppeltekens bevatten" - }, - "gv5kbo": { + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 46 + ] + ], + "translation": "Board-URL mag alleen letters, cijfers en koppeltekens bevatten" + }, + "gv5kbo": { "message": "Board URL cannot exceed 60 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 44]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 44 + ] + ], "translation": "Board-URL mag niet langer zijn dan 60 tekens" }, "8+BY11": { @@ -949,8 +1615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 82], - ["src/views/public/board/index.tsx", 79] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 82 + ], + [ + "src/views/public/board/index.tsx", + 79 + ] ], "translation": "Board-URL gekopieerd naar klembord" }, @@ -958,7 +1630,12 @@ "message": "Board URL must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 42]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 42 + ] + ], "translation": "Board-URL moet minimaal 3 tekens lang zijn" }, "qzdST2": { @@ -966,8 +1643,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 85], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 132] + [ + "src/views/home/components/Features.tsx", + 85 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 132 + ] ], "translation": "Zichtbaarheid van board" }, @@ -975,7 +1658,12 @@ "message": "Board visibility updated", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 49]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 49 + ] + ], "translation": "Zichtbaarheid van board bijgewerkt" }, "8TveY+": { @@ -983,8 +1671,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 99], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 73] + [ + "src/components/SideNavigation.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 73 + ] ], "translation": "Boards" }, @@ -992,28 +1686,48 @@ "message": "Boards you archive will appear here.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Boards die je archiveert verschijnen hier." }, "ZDo4HN": { "message": "Brainstorming", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 42]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 42 + ] + ], "translation": "Brainstormen" }, "vXemf6": { "message": "Bug", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 24]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ] + ], "translation": "Bug" }, "/asTmx": { "message": "Bug Report", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 64]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 64 + ] + ], "translation": "Bugrapport" }, "t6FvJH": { @@ -1021,8 +1735,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 146], - ["src/views/settings/components/RolePermissions.tsx", 35] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 146 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 35 + ] ], "translation": "Kan opmerkingen toevoegen" }, @@ -1031,8 +1751,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 131], - ["src/views/settings/components/RolePermissions.tsx", 20] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 131 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 20 + ] ], "translation": "Kan boards aanmaken" }, @@ -1041,8 +1767,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 141], - ["src/views/settings/components/RolePermissions.tsx", 30] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 141 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 30 + ] ], "translation": "Kan kaarten aanmaken" }, @@ -1051,8 +1783,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 136], - ["src/views/settings/components/RolePermissions.tsx", 25] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 136 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 25 + ] ], "translation": "Kan lijsten aanmaken" }, @@ -1061,8 +1799,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 133], - ["src/views/settings/components/RolePermissions.tsx", 22] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 133 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 22 + ] ], "translation": "Kan boards verwijderen" }, @@ -1071,8 +1815,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 143], - ["src/views/settings/components/RolePermissions.tsx", 32] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 143 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 32 + ] ], "translation": "Kan kaarten verwijderen" }, @@ -1081,8 +1831,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 148], - ["src/views/settings/components/RolePermissions.tsx", 37] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 148 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 37 + ] ], "translation": "Kan opmerkingen verwijderen" }, @@ -1091,8 +1847,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 138], - ["src/views/settings/components/RolePermissions.tsx", 27] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 138 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 27 + ] ], "translation": "Kan lijsten verwijderen" }, @@ -1101,8 +1863,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 127], - ["src/views/settings/components/RolePermissions.tsx", 16] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 127 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 16 + ] ], "translation": "Kan workspace verwijderen" }, @@ -1111,8 +1879,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 132], - ["src/views/settings/components/RolePermissions.tsx", 21] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 132 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 21 + ] ], "translation": "Kan boards bewerken" }, @@ -1121,8 +1895,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 142], - ["src/views/settings/components/RolePermissions.tsx", 31] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 142 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 31 + ] ], "translation": "Kan kaarten bewerken" }, @@ -1131,8 +1911,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 147], - ["src/views/settings/components/RolePermissions.tsx", 36] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 147 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 36 + ] ], "translation": "Kan opmerkingen bewerken" }, @@ -1141,8 +1927,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 137], - ["src/views/settings/components/RolePermissions.tsx", 26] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 137 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 26 + ] ], "translation": "Kan lijsten bewerken" }, @@ -1151,8 +1943,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 152], - ["src/views/settings/components/RolePermissions.tsx", 41] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 152 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 41 + ] ], "translation": "Kan rollen en rechten van leden bewerken" }, @@ -1161,8 +1959,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 126], - ["src/views/settings/components/RolePermissions.tsx", 15] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 126 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 15 + ] ], "translation": "Kan workspace bewerken" }, @@ -1171,8 +1975,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 151], - ["src/views/settings/components/RolePermissions.tsx", 40] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 151 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 40 + ] ], "translation": "Kan leden uitnodigen" }, @@ -1181,8 +1991,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 128], - ["src/views/settings/components/RolePermissions.tsx", 17] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 128 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 17 + ] ], "translation": "Kan workspace-instellingen beheren" }, @@ -1191,8 +2007,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 153], - ["src/views/settings/components/RolePermissions.tsx", 42] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 153 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 42 + ] ], "translation": "Kan leden verwijderen" }, @@ -1201,8 +2023,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 130], - ["src/views/settings/components/RolePermissions.tsx", 19] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 130 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 19 + ] ], "translation": "Kan borden bekijken" }, @@ -1211,8 +2039,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 140], - ["src/views/settings/components/RolePermissions.tsx", 29] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 140 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 29 + ] ], "translation": "Kan kaarten bekijken" }, @@ -1221,8 +2055,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 145], - ["src/views/settings/components/RolePermissions.tsx", 34] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 145 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 34 + ] ], "translation": "Kan reacties bekijken" }, @@ -1231,8 +2071,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 135], - ["src/views/settings/components/RolePermissions.tsx", 24] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 135 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 24 + ] ], "translation": "Kan lijsten bekijken" }, @@ -1241,8 +2087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 150], - ["src/views/settings/components/RolePermissions.tsx", 39] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 150 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 39 + ] ], "translation": "Kan leden bekijken" }, @@ -1251,8 +2103,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 125], - ["src/views/settings/components/RolePermissions.tsx", 14] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 125 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 14 + ] ], "translation": "Kan workspace bekijken" }, @@ -1261,26 +2119,74 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 49], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 176], - ["src/views/board/components/CardContextDuplicateModal.tsx", 267], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 44], - ["src/views/card/components/Comment.tsx", 195], - ["src/views/card/components/DeleteCardConfirmation.tsx", 86], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 64], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 77], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 55], - ["src/views/onboarding/select-plan/index.tsx", 209], - ["src/views/settings/components/Avatar.tsx", 287], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 168], + [ + "src/components/DeleteLabelConfirmation.tsx", + 49 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 176 + ], + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 267 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 44 + ], + [ + "src/views/card/components/Comment.tsx", + 195 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 86 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 64 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 77 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 55 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 209 + ], + [ + "src/views/settings/components/Avatar.tsx", + 287 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 168 + ], [ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 40 ], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 88], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 108] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 88 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 66 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 98 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 108 + ] ], "translation": "Annuleren" }, @@ -1288,7 +2194,12 @@ "message": "Card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 317]], + "origin": [ + [ + "src/views/card/index.tsx", + 364 + ] + ], "translation": "Kaart" }, "sU2uWc": { @@ -1296,7 +2207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 67] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 67 + ] ], "translation": "Kaart gedupliceerd" }, @@ -1305,8 +2219,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 363], - ["src/views/card/index.tsx", 400] + [ + "src/views/card/index.tsx", + 410 + ], + [ + "src/views/card/index.tsx", + 447 + ] ], "translation": "Kaart niet gevonden" }, @@ -1314,17 +2234,43 @@ "message": "Card title", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 321]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 321 + ] + ], "translation": "Kaarttitel" }, + "4630Pc": { + "message": "Card updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 53 + ] + ], + "translation": "" + }, "rQXTmd": { "message": "Card URL copied to clipboard", "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 308], - ["src/views/card/components/Dropdown.tsx", 44], - ["src/views/public/board/CardModal.tsx", 38] + [ + "src/views/board/index.tsx", + 312 + ], + [ + "src/views/card/components/Dropdown.tsx", + 44 + ], + [ + "src/views/public/board/CardModal.tsx", + 38 + ] ], "translation": "Kaart-URL gekopieerd naar klembord" }, @@ -1333,10 +2279,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 88], - ["src/views/settings/AccountSettings.tsx", 98], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 109], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 178] + [ + "src/views/settings/AccountSettings.tsx", + 88 + ], + [ + "src/views/settings/AccountSettings.tsx", + 98 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 109 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 178 + ] ], "translation": "Wachtwoord wijzigen" }, @@ -1344,25 +2302,43 @@ "message": "Change the application font size.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 63]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 63 + ] + ], "translation": "Pas de lettergrootte van de applicatie aan." }, "yD3ZSw": { "message": "Change your language preferences.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 53 + ] + ], "translation": "Wijzig je taalvoorkeuren." }, "gZxH/p": { "message": "changed the due date to <0>{formattedDate}", "placeholders": { - "formattedDate": ["formattedDate"] + "formattedDate": [ + "formattedDate" + ] }, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 303], - ["src/views/card/components/ActivityList.tsx", 317] + [ + "src/views/card/components/ActivityList.tsx", + 303 + ], + [ + "src/views/card/components/ActivityList.tsx", + 317 + ] ], "translation": "heeft de vervaldatum gewijzigd naar <0>{formattedDate}" }, @@ -1370,7 +2346,12 @@ "message": "Check out some of our favorite open source projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 61]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 61 + ] + ], "translation": "Bekijk enkele van onze favoriete open source-projecten." }, "5IXWmO": { @@ -1378,8 +2359,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 43], - ["src/views/auth/signup/index.tsx", 71] + [ + "src/views/auth/login/index.tsx", + 43 + ], + [ + "src/views/auth/signup/index.tsx", + 71 + ] ], "translation": "Controleer je inbox" }, @@ -1387,7 +2374,12 @@ "message": "Checklist name", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 119]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 119 + ] + ], "translation": "Checklistnaam" }, "EH8IL3": { @@ -1395,8 +2387,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 108], - ["src/views/pricing/components/PricingTiers.tsx", 39] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 108 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 39 + ] ], "translation": "Checklists" }, @@ -1404,7 +2402,12 @@ "message": "Choose a plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 122]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 122 + ] + ], "translation": "Kies een abonnement" }, "VHS0aJ": { @@ -1423,7 +2426,12 @@ "message": "Clear any custom member permissions so that all members only inherit permissions from their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 67]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 67 + ] + ], "translation": "Wis alle aangepaste ledenrechten zodat alle leden alleen rechten erven van hun standaard rolrechten." }, "jL82rC": { @@ -1435,7 +2443,10 @@ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 48 ], - ["src/views/settings/PermissionsSettings.tsx", 80] + [ + "src/views/settings/PermissionsSettings.tsx", + 80 + ] ], "translation": "Aangepaste rechten wissen" }, @@ -1443,18 +2454,31 @@ "message": "Clear filters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 227]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 227 + ] + ], "translation": "Filters wissen" }, "RRn9jf": { "message": "Click on the link we've sent to {magicLinkRecipient} to sign in.", "placeholders": { - "magicLinkRecipient": ["magicLinkRecipient"] + "magicLinkRecipient": [ + "magicLinkRecipient" + ] }, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 48], - ["src/views/auth/signup/index.tsx", 76] + [ + "src/views/auth/login/index.tsx", + 48 + ], + [ + "src/views/auth/signup/index.tsx", + 76 + ] ], "translation": "Klik op de link die we naar {magicLinkRecipient} hebben gestuurd om in te loggen." }, @@ -1463,9 +2487,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 354], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 172], - ["src/views/settings/components/NewApiKeyModal.tsx", 136] + [ + "src/views/card/index.tsx", + 401 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 172 + ], + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 136 + ] ], "translation": "Sluiten" }, @@ -1473,14 +2506,24 @@ "message": "Code Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Code review" }, "EvArWh": { "message": "Collaborate seamlessly with your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 91 + ] + ], "translation": "Werk naadloos samen met je team." }, "dtQIWT": { @@ -1488,7 +2531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 309] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 309 + ] ], "translation": "Samenwerking" }, @@ -1497,9 +2543,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 317], - ["src/views/home/components/Features.tsx", 67], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 88] + [ + "src/components/NewWorkspaceForm.tsx", + 317 + ], + [ + "src/views/home/components/Features.tsx", + 67 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 88 + ] ], "translation": "Binnenkort beschikbaar" }, @@ -1508,8 +2563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 105], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 156] + [ + "src/views/home/components/Features.tsx", + 105 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 156 + ] ], "translation": "Reacties" }, @@ -1517,65 +2578,112 @@ "message": "Company", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 95 + ] + ], "translation": "Bedrijf" }, "bD8I7O": { "message": "Complete", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 94]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 94 + ] + ], "translation": "Voltooid" }, "cAgBMh": { "message": "Complete control and ownership:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 70]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 70 + ] + ], "translation": "Volledige controle en eigenaarschap:" }, "Lt+ZP3": { "message": "completed a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 137]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 137 + ] + ], "translation": "heeft een checklistitem voltooid" }, "29sSki": { "message": "completed checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 249]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 249 + ] + ], "translation": "heeft checklistitem <0>{0} voltooid" }, "tOZp9v": { "message": "Configurable user roles and permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 82]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 82 + ] + ], "translation": "Configureerbare gebruikersrollen en rechten" }, "t0dTPm": { "message": "Configure webhooks to receive notifications when cards are created, updated, moved, or deleted.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 31]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 31 + ] + ], "translation": "Configureer webhooks om meldingen te ontvangen wanneer kaarten worden aangemaakt, bijgewerkt, verplaatst of verwijderd." }, "/f3t6v": { "message": "Configure which actions are allowed for each workspace role. These permissions apply to all members with that role.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 56]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 56 + ] + ], "translation": "Configureer welke acties zijn toegestaan voor elke werkruimterol. Deze rechten gelden voor alle leden met die rol." }, "86XI28": { "message": "Confirm your email preferences:", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 81]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 81 + ] + ], "translation": "Bevestig je e-mailvoorkeuren:" }, "479pdJ": { @@ -1583,7 +2691,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 150] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 150 + ] ], "translation": "Bevestig je nieuwe wachtwoord" }, @@ -1591,42 +2702,72 @@ "message": "Connect", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Verbinden" }, "3jod3l": { "message": "Connect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 212]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 212 + ] + ], "translation": "GitHub verbinden" }, "nk7caK": { "message": "Connect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 162]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 162 + ] + ], "translation": "Verbind Trello" }, "sDLCvT": { "message": "Connect your favorite tools to streamline your workflow.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 122]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 122 + ] + ], "translation": "Verbind je favoriete tools om je workflow te stroomlijnen." }, "MCIXdZ": { "message": "Connect your GitHub account to import projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 191]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 191 + ] + ], "translation": "Verbind je GitHub-account om projecten te importeren." }, "5eZwRW": { "message": "Connect your Trello account to import boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 149]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 149 + ] + ], "translation": "Verbind je Trello-account om boards te importeren." }, "jfC/xh": { @@ -1634,8 +2775,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 38], - ["src/views/home/components/Header.tsx", 42] + [ + "src/views/home/components/Footer.tsx", + 38 + ], + [ + "src/views/home/components/Header.tsx", + 42 + ] ], "translation": "Contact" }, @@ -1643,7 +2790,12 @@ "message": "Contact Sales", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 95]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 95 + ] + ], "translation": "Neem contact op met sales" }, "Bhgd0l": { @@ -1651,9 +2803,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 96], - ["src/views/pricing/components/PricingTiers.tsx", 96] + [ + "src/components/FeedbackModal.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ] ], "translation": "Neem contact met ons op" }, @@ -1661,7 +2822,12 @@ "message": "Content Creation", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 40]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 40 + ] + ], "translation": "Content creatie" }, "xGVfLh": { @@ -1669,8 +2835,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 212], - ["src/views/onboarding/workspace-details/index.tsx", 291] + [ + "src/views/onboarding/select-plan/index.tsx", + 212 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 291 + ] ], "translation": "Doorgaan" }, @@ -1678,44 +2850,76 @@ "message": "Continue with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "Ga verder met " }, "gkzAEM": { "message": "Continue with {0}", "placeholders": { - "0": ["key === \"oidc\" ? oidcProviderName : provider.name"] + "0": [ + "key === \"oidc\" ? oidcProviderName : provider.name" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 355]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 355 + ] + ], "translation": "Ga verder met {0}" }, "va/3u1": { "message": "Control who can view and edit your boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 86 + ] + ], "translation": "Bepaal wie je borden kan bekijken en bewerken." }, "zQPhSa": { "message": "Convert to link", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 47]], + "origin": [ + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 47 + ] + ], "translation": "Converteer naar link" }, "5RkSzq": { "message": "Copy board link", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugButton.tsx", 87]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 87 + ] + ], "translation": "Kopieer bordlink" }, "F0YmUY": { "message": "Copy card link", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 58]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 58 + ] + ], "translation": "Kopieer kaartlink" }, "0utuU6": { @@ -1723,7 +2927,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 257] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 257 + ] ], "translation": "Checklists kopiëren" }, @@ -1732,7 +2939,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 221] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 221 + ] ], "translation": "Labels kopiëren" }, @@ -1740,7 +2950,12 @@ "message": "Copy link to card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 62]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 62 + ] + ], "translation": "Link naar kaart kopiëren" }, "uvH2xS": { @@ -1748,7 +2963,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 239] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 239 + ] ], "translation": "Leden kopiëren" }, @@ -1757,17 +2975,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 305] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 305 + ] ], "translation": "Kernfuncties" }, "b9XOHo": { "message": "Create {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 166]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 166 + ] + ], "translation": "Maak {0}" }, "vgdzLf": { @@ -1775,9 +3003,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 213], - ["src/views/board/components/NewCardForm.tsx", 520], - ["src/views/board/components/NewListForm.tsx", 141] + [ + "src/components/LabelForm.tsx", + 213 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 520 + ], + [ + "src/views/board/components/NewListForm.tsx", + 141 + ] ], "translation": "Maak nog een" }, @@ -1785,53 +3022,91 @@ "message": "Create API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 175]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 175 + ] + ], "translation": "Maak API-sleutel" }, "dsLT3m": { "message": "Create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 530]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 530 + ] + ], "translation": "Maak kaart" }, "d33Usy": { "message": "Create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 135]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 135 + ] + ], "translation": "Maak checklist" }, "zKY5xi": { "message": "Create invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 349]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 349 + ] + ], "translation": "Maak uitnodigingslink" }, "QtACvI": { "message": "Create label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Maak label" }, "XTKtey": { "message": "Create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 153]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 153 + ] + ], "translation": "Maak lijst" }, "VKoDQD": { "message": "Create new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], "origin": [ - ["src/views/boards/components/BoardsList.tsx", 80], - ["src/views/boards/index.tsx", 41] + [ + "src/views/boards/components/BoardsList.tsx", + 80 + ], + [ + "src/views/boards/index.tsx", + 41 + ] ], "translation": "Maak nieuwe {0}" }, @@ -1839,7 +3114,12 @@ "message": "Create new key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 30 + ] + ], "translation": "Maak nieuwe sleutel" }, "0+0/3e": { @@ -1847,8 +3127,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewCardForm.tsx", 417], - ["src/views/card/components/LabelSelector.tsx", 101] + [ + "src/views/board/components/NewCardForm.tsx", + 417 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 101 + ] ], "translation": "Maak nieuw label" }, @@ -1857,8 +3143,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 92], - ["src/views/board/index.tsx", 671] + [ + "src/views/board/index.tsx", + 94 + ], + [ + "src/views/board/index.tsx", + 676 + ] ], "translation": "Maak nieuwe lijst" }, @@ -1866,14 +3158,24 @@ "message": "Create template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 132]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 132 + ] + ], "translation": "Maak sjabloon" }, "SiPp29": { "message": "Create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Webhook aanmaken" }, "FdtSNC": { @@ -1881,8 +3183,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 352], - ["src/components/WorkspaceMenu.tsx", 160] + [ + "src/components/NewWorkspaceForm.tsx", + 352 + ], + [ + "src/components/WorkspaceMenu.tsx", + 160 + ] ], "translation": "Maak werkruimte" }, @@ -1890,14 +3198,24 @@ "message": "Created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 236]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 236 + ] + ], "translation": "Aangemaakt" }, "f8lDFq": { "message": "created the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 124]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 124 + ] + ], "translation": "heeft de kaart gemaakt" }, "J5nbej": { @@ -1905,9 +3223,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Kritiek" }, @@ -1915,7 +3242,12 @@ "message": "Crop your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 253]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 253 + ] + ], "translation": "Bijsnijden van je avatar" }, "D3C4Yx": { @@ -1923,7 +3255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 19] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 19 + ] ], "translation": "Huidig wachtwoord is verplicht" }, @@ -1931,7 +3266,12 @@ "message": "Custom board templates", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 38 + ] + ], "translation": "Aangepaste bordsjablonen" }, "A42Dqn": { @@ -1939,8 +3279,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 172], - ["src/views/pricing/components/PricingTiers.tsx", 83] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 172 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 83 + ] ], "translation": "Aangepaste branding" }, @@ -1948,28 +3294,48 @@ "message": "Custom domain", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 74]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 74 + ] + ], "translation": "Aangepast domein" }, "2M84k3": { "message": "Custom permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 64]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 64 + ] + ], "translation": "Aangepaste rechten" }, "UirJfL": { "message": "Custom SLA", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 105]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 105 + ] + ], "translation": "Aangepaste SLA" }, "u2+JIh": { "message": "Custom URLs require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 283]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 283 + ] + ], "translation": "Aangepaste URL's vereisen een upgrade naar een Pro-abonnement" }, "7RpHg/": { @@ -1977,8 +3343,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 100], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 101] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 101 + ] ], "translation": "Aangepaste gebruikersnaam" }, @@ -1986,7 +3358,12 @@ "message": "Custom usernames require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 220]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 220 + ] + ], "translation": "Aangepaste gebruikersnamen vereisen een upgrade naar een Pro-abonnement" }, "j9IZZ0": { @@ -1994,8 +3371,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 307], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 78] + [ + "src/components/NewWorkspaceForm.tsx", + 307 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 78 + ] ], "translation": "Aangepaste workspace-URL" }, @@ -2003,35 +3386,60 @@ "message": "Custom workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 81]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 81 + ] + ], "translation": "Aangepaste workspace-gebruikersnaam" }, "n+xLOH": { "message": "Customer Support", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 54]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 54 + ] + ], "translation": "Klantenondersteuning" }, "pvnfJD": { "message": "Dark", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 158]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 158 + ] + ], "translation": "Donker" }, "cp1rsD": { "message": "Deactivate invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 348]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 348 + ] + ], "translation": "Uitnodigingslink deactiveren" }, "bKzM8L": { "message": "Dedicated account manager", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 104]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 104 + ] + ], "translation": "Toegewezen accountmanager" }, "P8Cunr": { @@ -2039,8 +3447,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 98], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 99] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 98 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 99 + ] ], "translation": "Standaard gebruikersnaam" }, @@ -2049,15 +3463,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 51], - ["src/components/LabelForm.tsx", 228], - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 52], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 47], - ["src/views/card/components/DeleteCardConfirmation.tsx", 92], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 67], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 83], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 73], - ["src/views/settings/components/WebhookList.tsx", 140] + [ + "src/components/DeleteLabelConfirmation.tsx", + 51 + ], + [ + "src/components/LabelForm.tsx", + 228 + ], + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 52 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 47 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 92 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 67 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 83 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 73 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 140 + ] ], "translation": "Verwijderen" }, @@ -2066,9 +3507,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 70], - ["src/views/settings/AccountSettings.tsx", 80], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 96] + [ + "src/views/settings/AccountSettings.tsx", + 70 + ], + [ + "src/views/settings/AccountSettings.tsx", + 80 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 96 + ] ], "translation": "Account verwijderen" }, @@ -2076,7 +3526,12 @@ "message": "Delete board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Bord verwijderen" }, "nabda1": { @@ -2084,8 +3539,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMenu.tsx", 74], - ["src/views/card/components/Dropdown.tsx", 76] + [ + "src/views/board/components/CardContextMenu.tsx", + 74 + ], + [ + "src/views/card/components/Dropdown.tsx", + 76 + ] ], "translation": "Kaart verwijderen" }, @@ -2093,21 +3554,36 @@ "message": "Delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 120]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 120 + ] + ], "translation": "Reactie verwijderen" }, "lYT7pQ": { "message": "Delete list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 147]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 147 + ] + ], "translation": "Lijst verwijderen" }, "DFjdv0": { "message": "Delete template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Sjabloon verwijderen" }, "snMaH4": { @@ -2115,7 +3591,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 46] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 46 + ] ], "translation": "Webhook verwijderen" }, @@ -2124,9 +3603,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 106], - ["src/views/settings/WorkspaceSettings.tsx", 125], - ["src/views/settings/WorkspaceSettings.tsx", 136] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 106 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 125 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 136 + ] ], "translation": "Workspace verwijderen" }, @@ -2134,116 +3622,200 @@ "message": "deleted a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 134]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 134 + ] + ], "translation": "heeft een checklist verwijderd" }, "W5r8Qh": { "message": "deleted a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 139]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 139 + ] + ], "translation": "heeft een checklistitem verwijderd" }, "BMkVQ3": { "message": "deleted checklist <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 224]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 224 + ] + ], "translation": "heeft checklist <0>{0} verwijderd" }, "CHZ1jC": { "message": "deleted checklist item <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 267]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 267 + ] + ], "translation": "heeft checklistitem <0>{0} verwijderd" }, "f8fH8W": { "message": "Design", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 45]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 45 + ] + ], "translation": "Ontwerp" }, "Odv3J6": { "message": "Disconnect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 223]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 223 + ] + ], "translation": "GitHub loskoppelen" }, "YBBifR": { "message": "Disconnect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 177]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 177 + ] + ], "translation": "Trello loskoppelen" }, "1sRmLC": { "message": "Discuss and collaborate on cards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 106]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 106 + ] + ], "translation": "Bespreek en werk samen aan kaarten." }, "pfa8F0": { "message": "Display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 36 + ] + ], "translation": "Weergavenaam" }, "MlyjJu": { "message": "Display name cannot exceed 280 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 22]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 22 + ] + ], "translation": "Weergavenaam mag niet meer dan 280 tekens bevatten" }, "KFJgmZ": { "message": "Display name must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 19 + ] + ], "translation": "Weergavenaam moet minimaal 3 tekens lang zijn" }, "x8GeCD": { "message": "Display name updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 41]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 41 + ] + ], "translation": "Weergavenaam bijgewerkt" }, "evj0lK": { "message": "Do you offer a free plan?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 83]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 83 + ] + ], "translation": "Bieden jullie een gratis abonnement aan?" }, "jDRt4n": { "message": "Do you want to unsubscribe?", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 78]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 78 + ] + ], "translation": "Wil je je uitschrijven?" }, "JyXBgS": { "message": "docs", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 109]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 109 + ] + ], "translation": "docs" }, "TbjyhA": { "message": "Docs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 20]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 20 + ] + ], "translation": "Docs" }, "TvY/XA": { @@ -2251,12 +3823,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 209], - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36], - ["src/views/home/components/Footer.tsx", 78], - ["src/views/home/components/Header.tsx", 36] + [ + "src/components/UserMenu.tsx", + 209 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ], + [ + "src/views/home/components/Footer.tsx", + 78 + ], + [ + "src/views/home/components/Header.tsx", + 36 + ] ], "translation": "Documentatie" }, @@ -2264,7 +3854,12 @@ "message": "Don't have an account? <0><1>Sign up", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 63]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 63 + ] + ], "translation": "Nog geen account? <0><1>Registreren" }, "DPfwMq": { @@ -2272,15 +3867,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 36], - ["src/views/board/components/CardContextLabelsModal.tsx", 48], - ["src/views/board/components/CardContextMembersModal.tsx", 68], - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 48], - ["src/views/boards/components/TemplateBoards.tsx", 61] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 36 + ], + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 48 + ], + [ + "src/views/board/components/CardContextMembersModal.tsx", + 68 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 48 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 61 + ] ], "translation": "Klaar" }, @@ -2288,7 +3910,12 @@ "message": "Download failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 142]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 142 + ] + ], "translation": "Download mislukt" }, "XicmhT": { @@ -2296,9 +3923,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/Filters.tsx", 171], - ["src/views/board/components/NewCardForm.tsx", 472], - ["src/views/card/index.tsx", 153] + [ + "src/views/board/components/Filters.tsx", + 171 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 472 + ], + [ + "src/views/card/index.tsx", + 155 + ] ], "translation": "Vervaldatum" }, @@ -2306,28 +3942,48 @@ "message": "Due next month", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 132]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 132 + ] + ], "translation": "Verloopt volgende maand" }, "iHcdea": { "message": "Due next week", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 127]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 127 + ] + ], "translation": "Verloopt volgende week" }, "1iShX0": { "message": "Due today", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 117]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 117 + ] + ], "translation": "Verloopt vandaag" }, "zxKs+y": { "message": "Due tomorrow", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 122]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 122 + ] + ], "translation": "Verloopt morgen" }, "euc6Ns": { @@ -2335,7 +3991,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Dupliceren" }, @@ -2344,8 +4003,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 111], - ["src/views/board/components/CardContextMenu.tsx", 68] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 111 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 68 + ] ], "translation": "Kaart dupliceren" }, @@ -2354,7 +4019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Dupliceren…" }, @@ -2363,8 +4031,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 42], - ["src/views/settings/components/WebhookList.tsx", 132] + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 42 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 132 + ] ], "translation": "Bewerken" }, @@ -2373,8 +4047,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/BoardDropdown.tsx", 102], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 116] + [ + "src/views/board/components/BoardDropdown.tsx", + 102 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 116 + ] ], "translation": "Bord-URL bewerken" }, @@ -2382,14 +4062,24 @@ "message": "Edit comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 111]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 111 + ] + ], "translation": "Reactie bewerken" }, "dgr4Kq": { "message": "Edit label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Label bewerken" }, "TCOMOO": { @@ -2397,8 +4087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 162], - ["src/views/members/index.tsx", 224] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 162 + ], + [ + "src/views/members/index.tsx", + 224 + ] ], "translation": "Rechten bewerken" }, @@ -2406,35 +4102,60 @@ "message": "Edit webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Webhook bewerken" }, "klpSmb": { "message": "Edit workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 162]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 162 + ] + ], "translation": "Workspace-URL bewerken" }, "PRofO0": { "message": "Edit YouTube Video", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 108]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 108 + ] + ], "translation": "YouTube-video bewerken" }, "gGx5tM": { "message": "Editing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 44]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 44 + ] + ], "translation": "Bewerken" }, "b/LfJo": { "message": "email", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "e-mail" }, "O3oNi5": { @@ -2442,8 +4163,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 272], - ["src/views/settings/AccountSettings.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 272 + ], + [ + "src/views/settings/AccountSettings.tsx", + 43 + ] ], "translation": "E-mail" }, @@ -2452,7 +4179,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 191] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 191 + ] ], "translation": "E-mailmeldingen" }, @@ -2460,14 +4190,24 @@ "message": "Email notifications for mentions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 60]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 60 + ] + ], "translation": "E-mailmeldingen voor vermeldingen" }, "IqjpYe": { "message": "Email visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 100 + ] + ], "translation": "E-mailzichtbaarheid" }, "bFREhu": { @@ -2475,7 +4215,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 200] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 200 + ] ], "translation": "Einde van lijst" }, @@ -2483,7 +4226,12 @@ "message": "Engineering", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Engineering" }, "0+ewPp": { @@ -2491,9 +4239,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Verbetering" }, @@ -2501,14 +4258,24 @@ "message": "Enter a custom title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 131]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 131 + ] + ], "translation": "Voer een aangepaste titel in" }, "rQRXo8": { "message": "Enter new secret to update", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "Voer nieuw geheim in om bij te werken" }, "fR9laE": { @@ -2516,7 +4283,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 122] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 122 + ] ], "translation": "Voer je huidige wachtwoord in" }, @@ -2525,7 +4295,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 111] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 111 + ] ], "translation": "Voer je huidige wachtwoord in en kies een nieuw veilig wachtwoord." }, @@ -2533,14 +4306,24 @@ "message": "Enter your email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 402]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 402 + ] + ], "translation": "Voer je e-mailadres in" }, "n9V+ps": { "message": "Enter your name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 390]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 390 + ] + ], "translation": "Voer je naam in" }, "0StR7t": { @@ -2548,7 +4331,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 136] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 136 + ] ], "translation": "Voer je nieuwe wachtwoord in" }, @@ -2556,7 +4342,12 @@ "message": "Enter your password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 416]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 416 + ] + ], "translation": "Voer je wachtwoord in" }, "GpB8YV": { @@ -2564,8 +4355,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 334], - ["src/views/pricing/components/PricingTiers.tsx", 92] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 334 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 92 + ] ], "translation": "Enterprise" }, @@ -2574,9 +4371,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 77], - ["src/views/boards/components/NewBoardForm.tsx", 92], - ["src/views/members/components/InviteMemberForm.tsx", 215] + [ + "src/views/boards/components/NewBoardForm.tsx", + 77 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 92 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 215 + ] ], "translation": "Fout" }, @@ -2585,7 +4391,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 89] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 89 + ] ], "translation": "Fout bij wijzigen wachtwoord" }, @@ -2593,21 +4402,36 @@ "message": "Error connecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 106]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 106 + ] + ], "translation": "Fout bij verbinden met GitHub" }, "cji2nM": { "message": "Error creating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 128]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 128 + ] + ], "translation": "Fout bij aanmaken uitnodigingslink" }, "USVCGU": { "message": "Error deactivating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 144]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 144 + ] + ], "translation": "Fout bij deactiveren uitnodigingslink" }, "bqAQaT": { @@ -2615,7 +4439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 39] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 39 + ] ], "translation": "Fout bij verwijderen account" }, @@ -2623,7 +4450,12 @@ "message": "Error deleting label", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 25]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 25 + ] + ], "translation": "Fout bij verwijderen label" }, "9s9O5h": { @@ -2631,7 +4463,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 45] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 45 + ] ], "translation": "Fout bij verwijderen werkruimte" }, @@ -2639,14 +4474,24 @@ "message": "Error disconnecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 129]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 129 + ] + ], "translation": "Fout bij loskoppelen van GitHub" }, "lKAvEd": { "message": "Error disconnecting Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 86 + ] + ], "translation": "Fout bij loskoppelen Trello" }, "rarRW/": { @@ -2654,8 +4499,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 97], - ["src/views/members/components/InviteMemberForm.tsx", 103] + [ + "src/views/members/components/InviteMemberForm.tsx", + 97 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 103 + ] ], "translation": "Fout bij uitnodigen lid" }, @@ -2663,7 +4514,12 @@ "message": "Error updating display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 54]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 54 + ] + ], "translation": "Fout bij bijwerken van weergavenaam" }, "CkVV1t": { @@ -2671,7 +4527,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 63 + ] ], "translation": "Fout bij bijwerken van werkruimtebeschrijving" }, @@ -2680,7 +4539,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 58] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 58 + ] ], "translation": "Fout bij bijwerken van werkruimtenaam" }, @@ -2689,7 +4551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 75] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 75 + ] ], "translation": "Fout bij bijwerken van werkruimte-URL" }, @@ -2698,8 +4563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 240 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 43 + ] ], "translation": "Fout bij upgraden van abonnement" }, @@ -2707,7 +4578,12 @@ "message": "Error upgrading to Pro", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 146]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 146 + ] + ], "translation": "Fout bij upgraden naar Pro", "obsolete": true }, @@ -2716,8 +4592,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/Avatar.tsx", 69], - ["src/views/settings/components/Avatar.tsx", 199] + [ + "src/views/settings/components/Avatar.tsx", + 69 + ], + [ + "src/views/settings/components/Avatar.tsx", + 199 + ] ], "translation": "Fout bij uploaden van profielafbeelding" }, @@ -2726,8 +4608,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 245], - ["src/views/settings/components/WebhookList.tsx", 224] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 245 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 224 + ] ], "translation": "Gebeurtenissen" }, @@ -2735,42 +4623,72 @@ "message": "Everything in the free plan, plus:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 52 + ] + ], "translation": "Alles in het gratis abonnement, plus:" }, "ANyn0x": { "message": "Everything you need, free forever. Unlimited boards, unlimited lists, unlimited cards. Upgrade any time.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 33]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 33 + ] + ], "translation": "Alles wat je nodig hebt, voor altijd gratis. Onbeperkt borden, onbeperkt lijsten, onbeperkt kaarten. Upgrade wanneer je maar wilt." }, "t+R8+P": { "message": "Execution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 91]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 91 + ] + ], "translation": "Uitvoering" }, "GwNIE2": { "message": "Extended Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 34]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 34 + ] + ], "translation": "Uitgebreide roadmap" }, "HYV6Lq": { "message": "Failed to accept invitation. Please try again later, or contact customer support.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 41]], + "origin": [ + [ + "src/views/invite/index.tsx", + 41 + ] + ], "translation": "Uitnodiging accepteren mislukt. Probeer het later opnieuw of neem contact op met klantenservice." }, "lXvXNI": { "message": "Failed to copy invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 216]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 216 + ] + ], "translation": "Uitnodigingslink kopiëren mislukt" }, "53QYh8": { @@ -2778,8 +4696,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 78], - ["src/views/boards/components/NewBoardForm.tsx", 93] + [ + "src/views/boards/components/NewBoardForm.tsx", + 78 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 93 + ] ], "translation": "Bord aanmaken mislukt" }, @@ -2787,7 +4711,12 @@ "message": "Failed to create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 109]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 109 + ] + ], "translation": "Webhook aanmaken mislukt" }, "9YPBHv": { @@ -2795,7 +4724,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 28 + ] ], "translation": "Webhook verwijderen mislukt" }, @@ -2803,16 +4735,28 @@ "message": "Failed to fetch video information", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 82]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 82 + ] + ], "translation": "Video-informatie ophalen mislukt" }, "YtUfwW": { "message": "Failed to login with {0}. Please try again.", "placeholders": { - "0": ["provider.at(0)?.toUpperCase() + provider.slice(1)"] + "0": [ + "provider.at(0)?.toUpperCase() + provider.slice(1)" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 291]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 291 + ] + ], "translation": "Inloggen met {0} mislukt. Probeer het opnieuw." }, "5ntVtp": { @@ -2820,8 +4764,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 143], - ["src/views/settings/components/WebhookList.tsx", 184] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 143 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 184 + ] ], "translation": "Webhook testen mislukt" }, @@ -2829,21 +4779,36 @@ "message": "Failed to update webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 123]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 123 + ] + ], "translation": "Webhook bijwerken mislukt" }, "ZL1A+p": { "message": "Failed to upload attachment. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 52]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 52 + ] + ], "translation": "Bijlage uploaden mislukt. Probeer het opnieuw." }, "/lDBHm": { "message": "FAQ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 41 + ] + ], "translation": "Veelgestelde vragen" }, "aJ4pMe": { @@ -2851,8 +4816,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Faqs.tsx", 143], - ["src/views/home/components/Footer.tsx", 52] + [ + "src/views/home/components/Faqs.tsx", + 143 + ], + [ + "src/views/home/components/Footer.tsx", + 52 + ] ], "translation": "Veelgestelde vragen" }, @@ -2861,9 +4832,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Functie" }, @@ -2871,7 +4851,12 @@ "message": "Feature Request", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 65]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 65 + ] + ], "translation": "Functieverzoek" }, "PpZkda": { @@ -2879,10 +4864,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 132], - ["src/views/home/components/Footer.tsx", 50], - ["src/views/home/components/Header.tsx", 17], - ["src/views/home/components/Header.tsx", 33] + [ + "src/views/home/components/Features.tsx", + 132 + ], + [ + "src/views/home/components/Footer.tsx", + 50 + ], + [ + "src/views/home/components/Header.tsx", + 17 + ], + [ + "src/views/home/components/Header.tsx", + 33 + ] ], "translation": "Functies" }, @@ -2891,8 +4888,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 59], - ["src/components/UserMenu.tsx", 217] + [ + "src/components/FeedbackModal.tsx", + 59 + ], + [ + "src/components/UserMenu.tsx", + 217 + ] ], "translation": "Feedback" }, @@ -2900,42 +4903,72 @@ "message": "Feedback sent", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 33]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 33 + ] + ], "translation": "Feedback verzonden" }, "F6m23G": { "message": "File uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 89]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 89 + ] + ], "translation": "Bestandsuploads" }, "o7J4JM": { "message": "Filter", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 221]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 221 + ] + ], "translation": "Filter" }, "l31EoQ": { "message": "Find answers to common questions about Kan. Can't find what you're looking for? Feel free to <0>contact us.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 150]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 150 + ] + ], "translation": "Vind antwoorden op veelgestelde vragen over Kan. Kun je niet vinden wat je zoekt? Neem gerust <0>contact met ons op." }, "q3il6U": { "message": "Font size", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 60]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 60 + ] + ], "translation": "Lettergrootte" }, "+3TYXa": { "message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 41 + ] + ], "translation": "Voor duurzaamheid op lange termijn erkennen we dat alle goede open source projecten een bron van inkomsten nodig hebben. De onze komt van het betaalde cloudaanbod voor werkruimtes met meerdere gebruikers en voor aangepaste werkruimte-slugs. Er is geen verplichting om het te gebruiken, en je kunt de software gratis op je eigen infrastructuur hosten." }, "2POOFK": { @@ -2943,12 +4976,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 77], - ["src/views/onboarding/select-plan/index.tsx", 78], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 331], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/PricingTiers.tsx", 26] + [ + "src/views/onboarding/select-plan/index.tsx", + 77 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 78 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 331 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 26 + ] ], "translation": "Gratis" }, @@ -2956,7 +5007,12 @@ "message": "Free for everyone", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 31]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 31 + ] + ], "translation": "Gratis voor iedereen" }, "W/nQk1": { @@ -2964,8 +5020,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 333], - ["src/views/members/index.tsx", 293] + [ + "src/views/members/components/InviteMemberForm.tsx", + 333 + ], + [ + "src/views/members/index.tsx", + 293 + ] ], "translation": "Gratis abonnement" }, @@ -2973,7 +5035,12 @@ "message": "Free, forever", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 34]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 34 + ] + ], "translation": "Gratis, voor altijd" }, "6uBU1F": { @@ -2981,9 +5048,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 239], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 240], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 241] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 239 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 240 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 241 + ] ], "translation": "Volledige API-toegang" }, @@ -2991,21 +5067,36 @@ "message": "Full-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Fulltime" }, "rmN315": { "message": "Fun", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Leuk" }, "Weq9zb": { "message": "General", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 54]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 54 + ] + ], "translation": "Algemeen" }, "ZDIydz": { @@ -3013,12 +5104,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 71], - ["src/views/home/components/Cta.tsx", 61], - ["src/views/home/components/Header.tsx", 106], - ["src/views/pricing/components/PricingTiers.tsx", 29], - ["src/views/pricing/components/PricingTiers.tsx", 50], - ["src/views/pricing/components/PricingTiers.tsx", 73] + [ + "src/views/auth/signup/index.tsx", + 71 + ], + [ + "src/views/home/components/Cta.tsx", + 61 + ], + [ + "src/views/home/components/Header.tsx", + 106 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 29 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 50 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 73 + ] ], "translation": "Aan de slag" }, @@ -3027,53 +5136,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 31], - ["src/views/pricing/components/Pricing.tsx", 49] + [ + "src/views/pricing/components/Pricing.tsx", + 31 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 49 + ] ], "translation": "Aan de slag" }, "6FsGbN": { "message": "Get started by creating a new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Ga aan de slag door een nieuwe {0} te maken" }, "zC8Whw": { "message": "Get started by creating a new list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 656]], + "origin": [ + [ + "src/views/board/index.tsx", + 661 + ] + ], "translation": "Ga aan de slag door een nieuwe lijst te maken" }, "oW13KZ": { "message": "Get started for free today", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 54]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 54 + ] + ], "translation": "Ga vandaag gratis aan de slag" }, "+OhFss": { "message": "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 92]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 92 + ] + ], "translation": "Ga gratis aan de slag, zonder gebruikslimieten. Voor samenwerking kun je upgraden naar een abonnement dat past bij de grootte van je team." }, "rD6UIt": { "message": "Get started on Cloud", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 75]], + "origin": [ + [ + "src/views/home/index.tsx", + 75 + ] + ], "translation": "Ga aan de slag op Cloud" }, "7hktsm": { "message": "Getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 25 + ] + ], "translation": "Aan de slag" }, "RkXlPZ": { @@ -3081,8 +5228,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 37], - ["src/views/settings/IntegrationsSettings.tsx", 186] + [ + "src/views/home/components/Footer.tsx", + 37 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 186 + ] ], "translation": "GitHub" }, @@ -3090,21 +5243,36 @@ "message": "GitHub connected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 99]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 99 + ] + ], "translation": "GitHub verbonden" }, "/bBVaD": { "message": "GitHub disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 122]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 122 + ] + ], "translation": "GitHub losgekoppeld" }, "7eMo+U": { "message": "Go Home", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 113]], + "origin": [ + [ + "src/views/invite/index.tsx", + 113 + ] + ], "translation": "Ga naar home" }, "UveK6V": { @@ -3112,8 +5280,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Header.tsx", 100], - ["src/views/invite/index.tsx", 144] + [ + "src/views/home/components/Header.tsx", + 100 + ], + [ + "src/views/invite/index.tsx", + 144 + ] ], "translation": "Ga naar app" }, @@ -3122,8 +5296,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 107], - ["src/pages/404.tsx", 44] + [ + "src/components/SideNavigation.tsx", + 108 + ], + [ + "src/pages/404.tsx", + 44 + ] ], "translation": "Ga naar borden" }, @@ -3131,35 +5311,60 @@ "message": "Go to homepage", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 38]], + "origin": [ + [ + "src/pages/404.tsx", + 38 + ] + ], "translation": "Ga naar homepage" }, "KAsRdK": { "message": "Go to members", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 131]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 132 + ] + ], "translation": "Ga naar leden" }, "1WuwiM": { "message": "Go to settings", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 143]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 144 + ] + ], "translation": "Ga naar instellingen" }, "csFbe+": { "message": "Go to templates", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 119]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 120 + ] + ], "translation": "Ga naar sjablonen" }, "SUvm1Y": { "message": "Good for individuals starting out who just need the essentials.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 79]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 79 + ] + ], "translation": "Geschikt voor individuen die net beginnen en alleen de basisbehoeften hebben." }, "cdyS7J": { @@ -3167,9 +5372,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 257], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 258], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 259] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 257 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 258 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 259 + ] ], "translation": "Google SSO" }, @@ -3178,7 +5392,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 260] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 260 + ] ], "translation": "Google SSO + SAML" }, @@ -3186,77 +5403,132 @@ "message": "Guest", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 203]], + "origin": [ + [ + "src/views/members/index.tsx", + 203 + ] + ], "translation": "Gast" }, "CB/NpV": { "message": "High Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Hoge prioriteit" }, "XXbgHS": { "message": "Hired", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 80]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 80 + ] + ], "translation": "Aangenomen" }, "SRvxId": { "message": "HMAC secret for signature verification", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "HMAC-geheim voor handtekeningverificatie" }, "LrcnbT": { "message": "Host Kan on your own infrastructure. Ideal for organisations that need complete control over their data.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 69]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 69 + ] + ], "translation": "Host Kan op je eigen infrastructuur. Ideaal voor organisaties die volledige controle over hun data nodig hebben." }, "WI4eGo": { "message": "How do I get a custom URL?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 64]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 64 + ] + ], "translation": "Hoe krijg ik een aangepaste URL?" }, "yV7o5I": { "message": "How do I import my Trello boards?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 46]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 46 + ] + ], "translation": "Hoe importeer ik mijn Trello-borden?" }, "nol/Fb": { "message": "How do I invite team members?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 108]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 108 + ] + ], "translation": "Hoe nodig ik teamleden uit?" }, "KuSt9W": { "message": "How do I self-host?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 124]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 124 + ] + ], "translation": "Hoe host ik zelf?" }, "UeDFpo": { "message": "How is the project funded?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 38]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 38 + ] + ], "translation": "Hoe wordt het project gefinancierd?" }, "6S8zjx": { "message": "https://www.youtube.com/watch?v=...", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 151]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 151 + ] + ], "translation": "https://www.youtube.com/watch?v=..." }, "2liqDZ": { @@ -3264,7 +5536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 82] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 82 + ] ], "translation": "Ik bevestig dat al mijn accountgegevens permanent worden verwijderd en wil doorgaan." }, @@ -3273,7 +5548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 92] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 92 + ] ], "translation": "Ik bevestig dat alle werkruimtegegevens permanent worden verwijderd en wil doorgaan." }, @@ -3281,21 +5559,36 @@ "message": "Ideas", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 88]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 88 + ] + ], "translation": "Ideeën" }, "F/vB2g": { "message": "Ideas to improve this page...", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 75]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 75 + ] + ], "translation": "Ideeën om deze pagina te verbeteren..." }, "l3s5ri": { "message": "Import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 73]], + "origin": [ + [ + "src/views/boards/index.tsx", + 73 + ] + ], "translation": "Importeren" }, "2MPcep": { @@ -3303,8 +5596,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 229], - ["src/views/boards/components/ImportBoardsForm.tsx", 381] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 229 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 381 + ] ], "translation": "Import voltooid" }, @@ -3313,8 +5612,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 242], - ["src/views/boards/components/ImportBoardsForm.tsx", 394] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 242 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 394 + ] ], "translation": "Import mislukt" }, @@ -3322,28 +5627,48 @@ "message": "Import your Trello boards and hit the ground running.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 96]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 96 + ] + ], "translation": "Importeer je Trello-borden en ga meteen aan de slag." }, "c/IAuR": { "message": "Important", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Belangrijk" }, "xMn+V9": { "message": "Importing from Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 27]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 27 + ] + ], "translation": "Importeren vanuit Trello" }, "g2xBxu": { "message": "Importing your Trello boards into Kan is easy. You can follow our step-by-step guide <0>here.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 49]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 49 + ] + ], "translation": "Je Trello-borden importeren in Kan is eenvoudig. Je kunt onze stapsgewijze handleiding <0>hier volgen." }, "02i3WU": { @@ -3351,7 +5676,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 313] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 313 + ] ], "translation": "Imports" }, @@ -3359,7 +5687,12 @@ "message": "in", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 167]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 167 + ] + ], "translation": "in" }, "WbTDwg": { @@ -3367,11 +5700,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 58] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 58 + ] ], "translation": "Bezig" }, @@ -3379,14 +5727,24 @@ "message": "Inactive", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 106]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] + ], "translation": "Inactief" }, "6mbe4b": { "message": "Individuals", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 28]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 28 + ] + ], "translation": "Individuen" }, "nbfdhU": { @@ -3394,8 +5752,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 77], - ["src/views/home/components/Features.tsx", 121] + [ + "src/components/SettingsLayout.tsx", + 77 + ], + [ + "src/views/home/components/Features.tsx", + 121 + ] ], "translation": "Integraties" }, @@ -3404,7 +5768,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 140] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 140 + ] ], "translation": "Intelligent zoeken" }, @@ -3412,42 +5779,72 @@ "message": "Interviewing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 77]], - "translation": "Interviewen" - }, - "XILg0L": { + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 77 + ] + ], + "translation": "Interviewen" + }, + "XILg0L": { "message": "Invalid email address", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 51]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 51 + ] + ], "translation": "Ongeldig e-mailadres" }, "odFCYX": { "message": "Invalid invitation", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 105]], + "origin": [ + [ + "src/views/invite/index.tsx", + 105 + ] + ], "translation": "Ongeldige uitnodiging" }, "MFKlMB": { "message": "Invite", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 306]], + "origin": [ + [ + "src/views/members/index.tsx", + 306 + ] + ], "translation": "Uitnodigen" }, "KLJ4eD": { "message": "Invite link copied", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 209]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 209 + ] + ], "translation": "Uitnodigingslink gekopieerd" }, "mZGPxt": { "message": "Invite link copied to clipboard", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 210]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 210 + ] + ], "translation": "Uitnodigingslink gekopieerd naar klembord" }, "D9ROdV": { @@ -3455,8 +5852,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 207], - ["src/views/pricing/components/PricingTiers.tsx", 58] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 207 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 58 + ] ], "translation": "Uitnodigingslinks" }, @@ -3464,7 +5867,12 @@ "message": "Invite links require a Team or Pro subscription. Please upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 123]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 123 + ] + ], "translation": "Uitnodigingslinks vereisen een Team- of Pro-abonnement. Upgrade je workspace." }, "+djOzj": { @@ -3472,8 +5880,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 115], - ["src/views/members/components/InviteMemberForm.tsx", 367] + [ + "src/views/card/components/MemberSelector.tsx", + 115 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 367 + ] ], "translation": "Lid uitnodigen" }, @@ -3481,7 +5895,12 @@ "message": "Inviting members requires a Team Plan. You'll be redirected to upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 336]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 336 + ] + ], "translation": "Leden uitnodigen vereist een Team-abonnement. Je wordt doorgestuurd om je workspace te upgraden." }, "c9AJhn": { @@ -3489,8 +5908,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/invite/index.tsx", 79], - ["src/views/invite/index.tsx", 129] + [ + "src/views/invite/index.tsx", + 79 + ], + [ + "src/views/invite/index.tsx", + 129 + ] ], "translation": "Deelnemen aan workspace" }, @@ -3498,28 +5923,48 @@ "message": "Join workspace | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 91]], + "origin": [ + [ + "src/views/invite/index.tsx", + 91 + ] + ], "translation": "Deelnemen aan workspace | kan.bn" }, "wM8xd8": { "message": "Junior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Junior" }, "aWDhU5": { "message": "Kanban is better with a team. Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 51]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 51 + ] + ], "translation": "Kanban is beter met een team. Perfect voor kleine en groeiende teams die willen samenwerken." }, "Xjj/kS": { "message": "Kanban reimagined", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 136]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 136 + ] + ], "translation": "Kanban opnieuw uitgevonden" }, "JbXXUW": { @@ -3527,8 +5972,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 57], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 67] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 57 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 67 + ] ], "translation": "Houd er rekening mee dat deze actie onomkeerbaar is." }, @@ -3536,7 +5987,12 @@ "message": "Keyboard Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 321]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 321 + ] + ], "translation": "Sneltoetsen" }, "h8DugX": { @@ -3544,10 +6000,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextLabelsModal.tsx", 31], - ["src/views/board/components/Filters.tsx", 155], - ["src/views/board/components/NewCardForm.tsx", 421], - ["src/views/card/index.tsx", 133] + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 31 + ], + [ + "src/views/board/components/Filters.tsx", + 155 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 421 + ], + [ + "src/views/card/index.tsx", + 135 + ] ], "translation": "Labels" }, @@ -3556,7 +6024,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 124] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 124 + ] ], "translation": "Labels & filters" }, @@ -3564,21 +6035,36 @@ "message": "Labels & Filters", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 100]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 100 + ] + ], "translation": "Labels & filters" }, "vXIe7J": { "message": "Language", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 50]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 50 + ] + ], "translation": "Taal" }, "k7rCa/": { "message": "Large", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 9]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 9 + ] + ], "translation": "Groot" }, "8Is1ih": { @@ -3586,9 +6072,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 300], - ["src/views/pricing/components/PricingTiers.tsx", 159], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 71] + [ + "src/components/NewWorkspaceForm.tsx", + 300 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 159 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 71 + ] ], "translation": "Lanceringaanbieding" }, @@ -3596,49 +6091,84 @@ "message": "Launch offer: Get unlimited members with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 276]], + "origin": [ + [ + "src/views/members/index.tsx", + 276 + ] + ], "translation": "Lanceringaanbieding: onbeperkt leden met Pro" }, "sDuhfK": { "message": "Launch offer: unlimited seats for just $29/month with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 98 + ] + ], "translation": "Lanceringaanbieding: onbeperkt aantal plaatsen voor slechts €29/maand met Pro" }, "zwWKhA": { "message": "Learn more", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 110]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 110 + ] + ], "translation": "Meer informatie" }, "wqxglO": { "message": "Learning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Leren" }, "vifyyw": { "message": "Legal", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 131]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 131 + ] + ], "translation": "Juridisch" }, "iQmbPb": { "message": "License", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 45]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 45 + ] + ], "translation": "Licentie" }, "1njn7W": { "message": "Light", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 172]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 172 + ] + ], "translation": "Licht" }, "TCt/8K": { @@ -3646,7 +6176,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 238] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 238 + ] ], "translation": "Beperkte API-toegang" }, @@ -3655,11 +6188,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 80], - ["src/views/board/index.tsx", 306], - ["src/views/card/components/Dropdown.tsx", 42], - ["src/views/public/board/CardModal.tsx", 36], - ["src/views/public/board/index.tsx", 77] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 80 + ], + [ + "src/views/board/index.tsx", + 310 + ], + [ + "src/views/card/components/Dropdown.tsx", + 42 + ], + [ + "src/views/public/board/CardModal.tsx", + 36 + ], + [ + "src/views/public/board/index.tsx", + 77 + ] ], "translation": "Link gekopieerd" }, @@ -3668,8 +6216,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 117], - ["src/views/card/index.tsx", 124] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 117 + ], + [ + "src/views/card/index.tsx", + 126 + ] ], "translation": "Lijst" }, @@ -3677,21 +6231,36 @@ "message": "List name", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 129]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 129 + ] + ], "translation": "Lijstnaam" }, "h16FyT": { "message": "Lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 163]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 163 + ] + ], "translation": "Lijsten" }, "1rVAfU": { "message": "Load more activities", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Meer activiteiten laden" }, "0qyZ4b": { @@ -3699,7 +6268,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 180] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 180 + ] ], "translation": "Machtigingen laden..." }, @@ -3707,56 +6279,96 @@ "message": "Loading...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Laden..." }, "N/bcWA": { "message": "Login | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 33]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 33 + ] + ], "translation": "Inloggen | kan.bn" }, "nOhz3x": { "message": "Logout", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 227]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 227 + ] + ], "translation": "Uitloggen" }, "vuxdLS": { "message": "Long-term", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Lange termijn" }, "RHZu7R": { "message": "Loved by teams worldwide", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 236]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 236 + ] + ], "translation": "Geliefd bij teams wereldwijd" }, "O9jVbx": { "message": "Low Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Lage prioriteit" }, "JnWJXY": { "message": "magic link", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "magische link" }, "DbZgsJ": { "message": "Make template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 91]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 91 + ] + ], "translation": "Sjabloon maken" }, "hB02vO": { @@ -3764,46 +6376,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMembersModal.tsx", 51], - ["src/views/board/components/CardContextMenu.tsx", 38] + [ + "src/views/board/components/CardContextMembersModal.tsx", + 51 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 38 + ] ], "translation": "Leden beheren" }, + "onllUU": { + "message": "Mark all as read", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 155 + ] + ], + "translation": "" + }, "IDvohQ": { "message": "marked a checklist item as incomplete", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 138]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 138 + ] + ], "translation": "heeft een checklistitem als onvolledig gemarkeerd" }, "jl3aEJ": { "message": "marked checklist item <0>{0} as incomplete", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 258]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 258 + ] + ], "translation": "heeft checklistitem <0>{0} als onvolledig gemarkeerd" }, "vo2a+a": { "message": "Marketing", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Marketing" }, "agPptk": { "message": "Medium", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 8]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 8 + ] + ], "translation": "Gemiddeld" }, "W/Elkg": { "message": "Medium Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Gemiddelde prioriteit" }, "OvoEq7": { @@ -3811,9 +6468,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 55], - ["src/views/card/components/ActivityList.tsx", 88], - ["src/views/members/index.tsx", 202] + [ + "src/views/card/components/ActivityList.tsx", + 55 + ], + [ + "src/views/card/components/ActivityList.tsx", + 88 + ], + [ + "src/views/members/index.tsx", + 202 + ] ], "translation": "Lid" }, @@ -3822,22 +6488,47 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 123], - ["src/views/board/components/Filters.tsx", 147], - ["src/views/board/components/NewCardForm.tsx", 379], - ["src/views/card/index.tsx", 143], - ["src/views/members/index.tsx", 263], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 81] + [ + "src/components/SideNavigation.tsx", + 124 + ], + [ + "src/views/board/components/Filters.tsx", + 147 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 379 + ], + [ + "src/views/card/index.tsx", + 145 + ], + [ + "src/views/members/index.tsx", + 263 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 81 + ] ], "translation": "Leden" }, "9u5BOr": { "message": "Members | {0}", "placeholders": { - "0": ["workspace.name ?? t`Workspace`"] + "0": [ + "workspace.name ?? t`Workspace`" + ] }, "comments": [], - "origin": [["src/views/members/index.tsx", 258]], + "origin": [ + [ + "src/views/members/index.tsx", + 258 + ] + ], "translation": "Leden | {0}" }, "/bZzdR": { @@ -3845,7 +6536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 183] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 183 + ] ], "translation": "Vermeldingen" }, @@ -3854,7 +6548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 53 + ] ], "translation": "Maandag" }, @@ -3863,9 +6560,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 62], - ["src/views/pricing/components/Pricing.tsx", 14], - ["src/views/pricing/index.tsx", 20] + [ + "src/views/onboarding/select-plan/index.tsx", + 62 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 14 + ], + [ + "src/views/pricing/index.tsx", + 20 + ] ], "translation": "Maandelijks" }, @@ -3873,45 +6579,79 @@ "message": "monthly billing", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 159]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 159 + ] + ], "translation": "maandelijkse facturering" }, "51UCsN": { "message": "Move to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 44]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 44 + ] + ], "translation": "Verplaats naar andere lijst" }, "J4+OTA": { "message": "Move to list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 70]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 70 + ] + ], "translation": "Verplaats naar lijst" }, "BOqTi5": { "message": "moved the card from <0>{0} to<1>{1}", "placeholders": { - "0": ["truncate(fromList)"], - "1": ["truncate(toList)"] + "0": [ + "truncate(fromList)" + ], + "1": [ + "truncate(toList)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 160]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 160 + ] + ], "translation": "heeft de kaart verplaatst van <0>{0} naar <1>{1}" }, "T7LJic": { "message": "moved the card to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 127]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 127 + ] + ], "translation": "heeft de kaart naar een andere lijst verplaatst" }, "uEGGDs": { "message": "My webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 209]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 209 + ] + ], "translation": "Mijn webhook" }, "6YtxFj": { @@ -3919,11 +6659,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 135], - ["src/views/board/components/NewTemplateForm.tsx", 118], - ["src/views/boards/components/NewBoardForm.tsx", 134], - ["src/views/settings/components/NewWebhookModal.tsx", 205], - ["src/views/settings/components/WebhookList.tsx", 212] + [ + "src/components/LabelForm.tsx", + 135 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 118 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 134 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 205 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 212 + ] ], "translation": "Naam" }, @@ -3931,14 +6686,24 @@ "message": "Navigation", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 55]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 55 + ] + ], "translation": "Navigatie" }, "HBI6nY": { "message": "Need help?", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 95]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 95 + ] + ], "translation": "Hulp nodig?" }, "isRobC": { @@ -3946,53 +6711,115 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 95], - ["src/views/home/components/Features.tsx", 73] + [ + "src/views/boards/index.tsx", + 95 + ], + [ + "src/views/home/components/Features.tsx", + 73 + ] ], "translation": "Nieuw" }, "6WSYbN": { "message": "New {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 120]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 120 + ] + ], "translation": "Nieuwe {0}" }, "TjREUS": { "message": "New API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 147]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 147 + ] + ], "translation": "Nieuwe API-sleutel" }, "pnrmSP": { "message": "New card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 304]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 304 + ] + ], "translation": "Nieuwe kaart" }, "cWcxrL": { "message": "New checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 103]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 103 + ] + ], "translation": "Nieuwe checklist" }, + "7Qqqyu": { + "message": "New comment on", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 49 + ] + ], + "translation": "" + }, + "K4xHKu": { + "message": "New comment on a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 50 + ] + ], + "translation": "" + }, "WYwN1G": { "message": "New import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 513]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 513 + ] + ], "translation": "Nieuwe import" }, "n1GRql": { "message": "New label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Nieuw label" }, "Sb2gYF": { @@ -4000,17 +6827,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewListForm.tsx", 113], - ["src/views/board/index.tsx", 620] + [ + "src/views/board/components/NewListForm.tsx", + 113 + ], + [ + "src/views/board/index.tsx", + 624 + ] ], "translation": "Nieuwe lijst" }, + "pM1sn/": { + "message": "New notification", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 56 + ] + ], + "translation": "" + }, "+MdEsf": { "message": "New password is required", "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 23] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 23 + ] ], "translation": "Nieuw wachtwoord is verplicht" }, @@ -4019,7 +6867,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 31] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 31 + ] ], "translation": "Nieuw wachtwoord moet verschillen van het huidige wachtwoord" }, @@ -4027,151 +6878,292 @@ "message": "New template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 104]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 104 + ] + ], "translation": "Nieuwe sjabloon" }, "RJA+sg": { "message": "New Ticket", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 56]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 56 + ] + ], "translation": "Nieuw ticket" }, "sbNNyi": { "message": "New webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Nieuwe webhook" }, "curoK5": { "message": "New workspace", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 208]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 208 + ] + ], "translation": "Nieuwe werkruimte" }, "5ACX4z": { "message": "Newsletter", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Nieuwsbrief" }, "HeFWjW": { "message": "Next Steps", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 93]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 93 + ] + ], "translation": "Volgende stappen" }, "/glL9Q": { "message": "No {0}", "placeholders": { - "0": ["isTemplate ? \"templates\" : \"boards\""] + "0": [ + "isTemplate ? \"templates\" : \"boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "Geen {0}" }, "tlhgDC": { "message": "No archived boards", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "Geen gearchiveerde boards" }, "Eg99Sc": { "message": "No authentication methods are currently available", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 369]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 369 + ] + ], "translation": "Er zijn momenteel geen authenticatiemethoden beschikbaar" }, "2Bu8xj": { "message": "No boards found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 432]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 432 + ] + ], "translation": "Geen borden gevonden" }, "OpNhRn": { "message": "No credit card required", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 85]], + "origin": [ + [ + "src/views/home/index.tsx", + 85 + ] + ], "translation": "Geen creditcard vereist" }, "MK16u2": { "message": "No dates", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 137]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 137 + ] + ], "translation": "Geen datums" }, "sY2lzr": { "message": "No download URL available for this attachment.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 143]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 143 + ] + ], "translation": "Geen download-URL beschikbaar voor deze bijlage." }, "TXO5TM": { "message": "No keyboard shortcuts registered.", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 334]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 334 + ] + ], "translation": "Geen sneltoetsen geregistreerd." }, "hXMFoN": { "message": "No lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 652]], + "origin": [ + [ + "src/views/board/index.tsx", + 657 + ] + ], "translation": "Geen lijsten" }, "fvLNDy": { "message": "No lists have been created yet", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 657]], + "origin": [ + [ + "src/views/board/index.tsx", + 662 + ] + ], "translation": "Er zijn nog geen lijsten aangemaakt" }, + "HbXReU": { + "message": "No notifications yet", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 192 + ] + ], + "translation": "" + }, "i30J2U": { "message": "No projects found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 283]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 283 + ] + ], "translation": "Geen projecten gevonden" }, "ERpq2P": { "message": "No results found for \"{debouncedQuery}\".", "placeholders": { - "debouncedQuery": ["debouncedQuery"] + "debouncedQuery": [ + "debouncedQuery" + ] }, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 183]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 183 + ] + ], "translation": "Geen resultaten gevonden voor \"{debouncedQuery}\"." }, "Q9pQaX": { "message": "No roles found for this workspace yet.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 110]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 110 + ] + ], "translation": "Nog geen rollen gevonden voor deze workspace." }, "TX0bT7": { "message": "No webhooks configured. Add a webhook to receive notifications.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 194]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 194 + ] + ], "translation": "Geen webhooks geconfigureerd. Voeg een webhook toe om meldingen te ontvangen." }, + "iDNBZe": { + "message": "Notifications", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 119 + ], + [ + "src/components/NotificationBell.tsx", + 131 + ], + [ + "src/components/NotificationBell.tsx", + 147 + ] + ], + "translation": "" + }, "9h7RDh": { "message": "Offer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 78]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 78 + ] + ], "translation": "Aanbieding" }, "QnzD50": { @@ -4179,7 +7171,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 245] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 245 + ] ], "translation": "On-premise" }, @@ -4187,42 +7182,72 @@ "message": "On-premise deployment option", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 106]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 106 + ] + ], "translation": "On-premise implementatieoptie" }, "gukxZ5": { "message": "Onboarding", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 79]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 79 + ] + ], "translation": "Onboarding" }, "usVytm": { "message": "Once you delete your account, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 73]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 73 + ] + ], "translation": "Zodra je je account verwijdert, is er geen weg terug. Deze actie kan niet ongedaan worden gemaakt." }, "dmKdk0": { "message": "Once you delete your workspace, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 128]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 128 + ] + ], "translation": "Zodra je je workspace verwijdert, is er geen weg terug. Deze actie kan niet ongedaan worden gemaakt." }, "69b7aE": { "message": "Open command menu", "placeholders": {}, "comments": [], - "origin": [["src/components/WorkspaceMenu.tsx", 34]], + "origin": [ + [ + "src/components/WorkspaceMenu.tsx", + 34 + ] + ], "translation": "Commandomenu openen" }, "cFQEU/": { "message": "Open keyboard shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 172]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 172 + ] + ], "translation": "Sneltoetsen openen" }, "v+Wp++": { @@ -4230,7 +7255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 229] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 229 + ] ], "translation": "Open source" }, @@ -4238,21 +7266,36 @@ "message": "Open Source Friends", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 58]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 58 + ] + ], "translation": "Open source vrienden" }, "BzEFor": { "message": "or", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 380]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 380 + ] + ], "translation": "of" }, "ZqDqbi": { "message": "Organize and find cards quickly with powerful filtering tools.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 101]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 101 + ] + ], "translation": "Organiseer en vind kaarten snel met krachtige filtertools." }, "Un80BR": { @@ -4260,8 +7303,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 39], - ["src/views/oss-friends/index.tsx", 52] + [ + "src/views/home/components/Footer.tsx", + 39 + ], + [ + "src/views/oss-friends/index.tsx", + 52 + ] ], "translation": "OSS Friends" }, @@ -4269,35 +7318,60 @@ "message": "Overdue", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 112]], - "translation": "Achterstallig" - }, - "P6dJdq": { + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 112 + ] + ], + "translation": "Achterstallig" + }, + "P6dJdq": { "message": "Overrides cleared", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 25 + ] + ], "translation": "Overschrijvingen gewist" }, "SPLN9O": { "message": "Own your data", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 73]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 73 + ] + ], "translation": "Beheer je eigen data" }, "8F1i42": { "message": "Page not found", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 24]], + "origin": [ + [ + "src/pages/404.tsx", + 24 + ] + ], "translation": "Pagina niet gevonden" }, "Uworke": { "message": "Part-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Parttime" }, "IrZaAn": { @@ -4305,7 +7379,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 69] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 69 + ] ], "translation": "Wachtwoord gewijzigd" }, @@ -4313,14 +7390,24 @@ "message": "Password is required to login.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 258]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 258 + ] + ], "translation": "Wachtwoord is vereist om in te loggen." }, "tTbref": { "message": "Password is required to sign up.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 257]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 257 + ] + ], "translation": "Wachtwoord is vereist om je aan te melden." }, "vwGkYB": { @@ -4328,7 +7415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 22] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 22 + ] ], "translation": "Wachtwoord moet minimaal 8 tekens bevatten" }, @@ -4337,7 +7427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 27] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 27 + ] ], "translation": "Wachtwoorden komen niet overeen" }, @@ -4345,7 +7438,12 @@ "message": "Paused", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "Gepauzeerd" }, "UbYdrA": { @@ -4353,8 +7451,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 120] + [ + "src/views/pricing/components/Pricing.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 120 + ] ], "translation": "Betalingsfrequentie" }, @@ -4362,7 +7466,12 @@ "message": "Pending", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "In behandeling" }, "oVBq1w": { @@ -4370,10 +7479,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 15], - ["src/views/pricing/components/Pricing.tsx", 20], - ["src/views/pricing/index.tsx", 21], - ["src/views/pricing/index.tsx", 26] + [ + "src/views/pricing/components/Pricing.tsx", + 15 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 20 + ], + [ + "src/views/pricing/index.tsx", + 21 + ], + [ + "src/views/pricing/index.tsx", + 26 + ] ], "translation": "per gebruiker/maand" }, @@ -4381,28 +7502,48 @@ "message": "Per-seat pricing", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 83]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 83 + ] + ], "translation": "Prijzen per gebruiker" }, "mrhyIB": { "message": "Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 52 + ] + ], "translation": "Perfect voor kleine en groeiende teams die willen samenwerken." }, "TH3Irz": { "message": "Permission", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 119]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 119 + ] + ], "translation": "Toestemming" }, "9cDpsw": { "message": "Permissions", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 53]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 53 + ] + ], "translation": "Toestemmingen" }, "Jgaz7E": { @@ -4410,7 +7551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 80] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 80 + ] ], "translation": "Toestemmingen gereset" }, @@ -4419,8 +7563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 34], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 57] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 34 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 57 + ] ], "translation": "Toestemmingen bijgewerkt" }, @@ -4428,14 +7578,24 @@ "message": "Personal Project", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 86]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 86 + ] + ], "translation": "Persoonlijk project" }, "Oi+J+N": { "message": "Pick a plan to get started. All paid plans include a 14-day free trial.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 125]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 125 + ] + ], "translation": "Kies een abonnement om te beginnen. Alle betaalde abonnementen hebben een gratis proefperiode van 14 dagen." }, "Iqh0Uv": { @@ -4443,8 +7603,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Gepland" }, @@ -4452,7 +7618,12 @@ "message": "Planning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 90]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 90 + ] + ], "translation": "Planning" }, "F3bW6y": { @@ -4460,7 +7631,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 317] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 317 + ] ], "translation": "Platform" }, @@ -4469,7 +7643,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 24] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 24 + ] ], "translation": "Bevestig je nieuwe wachtwoord" }, @@ -4477,28 +7654,48 @@ "message": "Please enter a valid email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 406]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 406 + ] + ], "translation": "Voer een geldig e-mailadres in" }, "CJ3zUq": { "message": "Please enter a valid name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 394]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 394 + ] + ], "translation": "Voer een geldige naam in" }, "7b2yuC": { "message": "Please enter a valid password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 421]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 421 + ] + ], "translation": "Voer een geldig wachtwoord in" }, "jEw0Mr": { "message": "Please enter a valid URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 24 + ] + ], "translation": "Voer een geldige URL in" }, "tmlJN1": { @@ -4506,8 +7703,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 58], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 98] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 58 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 98 + ] ], "translation": "Voer een geldige YouTube-URL in" }, @@ -4515,7 +7718,12 @@ "message": "Please select a file to upload.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 70]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 70 + ] + ], "translation": "Selecteer een bestand om te uploaden." }, "tyHiOa": { @@ -4523,56 +7731,206 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 26], - ["src/components/FeedbackModal.tsx", 41], - ["src/components/NewWorkspaceForm.tsx", 123], - ["src/views/board/components/BoardDropdown.tsx", 65], - ["src/views/board/components/NewCardForm.tsx", 186], - ["src/views/board/components/NewListForm.tsx", 79], - ["src/views/board/components/NewTemplateForm.tsx", 61], - ["src/views/board/components/NewTemplateForm.tsx", 77], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 73], - ["src/views/board/components/VisibilityButton.tsx", 57], - ["src/views/board/index.tsx", 218], - ["src/views/board/index.tsx", 274], - ["src/views/boards/components/ImportBoardsForm.tsx", 243], - ["src/views/boards/components/ImportBoardsForm.tsx", 395], - ["src/views/card/components/AttachmentThumbnails.tsx", 74], - ["src/views/card/components/ChecklistItemRow.tsx", 67], - ["src/views/card/components/ChecklistItemRow.tsx", 95], - ["src/views/card/components/ChecklistNameInput.tsx", 47], - ["src/views/card/components/Checklists.tsx", 81], - ["src/views/card/components/Comment.tsx", 93], - ["src/views/card/components/DeleteCardConfirmation.tsx", 52], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 38], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 46], - ["src/views/card/components/DueDateSelector.tsx", 64], - ["src/views/card/components/LabelSelector.tsx", 75], - ["src/views/card/components/ListSelector.tsx", 55], - ["src/views/card/components/MemberSelector.tsx", 82], - ["src/views/card/components/NewChecklistForm.tsx", 71], - ["src/views/card/components/NewChecklistItemForm.tsx", 90], - ["src/views/card/components/NewCommentForm.tsx", 37], - ["src/views/card/index.tsx", 232], - ["src/views/card/index.tsx", 245], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 28], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 42], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 65], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 93], - ["src/views/members/components/InviteMemberForm.tsx", 104], - ["src/views/members/components/InviteMemberForm.tsx", 241], - ["src/views/members/index.tsx", 66], - ["src/views/onboarding/workspace-details/index.tsx", 101], - ["src/views/onboarding/workspace-details/index.tsx", 150], - ["src/views/settings/components/Avatar.tsx", 200], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 40], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 46], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 55], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 44], - ["src/views/settings/PermissionsSettings.tsx", 40] + [ + "src/components/DeleteLabelConfirmation.tsx", + 26 + ], + [ + "src/components/FeedbackModal.tsx", + 41 + ], + [ + "src/components/NewWorkspaceForm.tsx", + 123 + ], + [ + "src/views/board/components/BoardDropdown.tsx", + 65 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 186 + ], + [ + "src/views/board/components/NewListForm.tsx", + 79 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 61 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 77 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 73 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 57 + ], + [ + "src/views/board/index.tsx", + 222 + ], + [ + "src/views/board/index.tsx", + 278 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 243 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 395 + ], + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 74 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 68 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 96 + ], + [ + "src/views/card/components/ChecklistNameInput.tsx", + 47 + ], + [ + "src/views/card/components/Checklists.tsx", + 81 + ], + [ + "src/views/card/components/Comment.tsx", + 93 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 52 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 38 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 46 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 64 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 75 + ], + [ + "src/views/card/components/ListSelector.tsx", + 55 + ], + [ + "src/views/card/components/MemberSelector.tsx", + 82 + ], + [ + "src/views/card/components/NewChecklistForm.tsx", + 71 + ], + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 90 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 37 + ], + [ + "src/views/card/index.tsx", + 274 + ], + [ + "src/views/card/index.tsx", + 287 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 28 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 42 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 65 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 93 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 104 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 241 + ], + [ + "src/views/members/index.tsx", + 66 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 101 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 150 + ], + [ + "src/views/settings/components/Avatar.tsx", + 200 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 40 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 46 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 55 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 64 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 59 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 76 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 44 + ], + [ + "src/views/settings/PermissionsSettings.tsx", + 40 + ] ], "translation": "Probeer het later opnieuw of neem contact op met klantenservice." }, @@ -4581,8 +7939,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 129], - ["src/views/members/components/InviteMemberForm.tsx", 145] + [ + "src/views/members/components/InviteMemberForm.tsx", + 129 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 145 + ] ], "translation": "Probeer het later opnieuw." }, @@ -4591,12 +7955,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 76], - ["src/views/board/components/CardContextMoveListModal.tsx", 42], - ["src/views/board/index.tsx", 315], - ["src/views/card/components/Dropdown.tsx", 51], - ["src/views/public/board/CardModal.tsx", 45], - ["src/views/public/board/index.tsx", 86] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 76 + ], + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 42 + ], + [ + "src/views/board/index.tsx", + 319 + ], + [ + "src/views/card/components/Dropdown.tsx", + 51 + ], + [ + "src/views/public/board/CardModal.tsx", + 45 + ], + [ + "src/views/public/board/index.tsx", + 86 + ] ], "translation": "Probeer het opnieuw." }, @@ -4605,7 +7987,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 193] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 193 + ] ], "translation": "Positie in lijst (0 = eerste, leeg laten voor het einde)" }, @@ -4614,12 +7999,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 51], - ["src/views/home/components/Header.tsx", 18], - ["src/views/home/components/Header.tsx", 34], - ["src/views/pricing/components/Pricing.tsx", 85], - ["src/views/pricing/index.tsx", 34], - ["src/views/pricing/index.tsx", 40] + [ + "src/views/home/components/Footer.tsx", + 51 + ], + [ + "src/views/home/components/Header.tsx", + 18 + ], + [ + "src/views/home/components/Header.tsx", + 34 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 85 + ], + [ + "src/views/pricing/index.tsx", + 34 + ], + [ + "src/views/pricing/index.tsx", + 40 + ] ], "translation": "Prijzen" }, @@ -4628,10 +8031,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 275], - ["src/views/pricing/components/Pricing.tsx", 56], - ["src/views/pricing/components/PricingTiers.tsx", 61], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 95] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 275 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 56 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 61 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 95 + ] ], "translation": "Prioritaire e-mailondersteuning" }, @@ -4639,14 +8054,24 @@ "message": "Privacy policy", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 43]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 43 + ] + ], "translation": "Privacybeleid" }, "zwBp5t": { "message": "Private", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 84]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 84 + ] + ], "translation": "Privé" }, "3fPjUY": { @@ -4654,9 +8079,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 333], - ["src/views/pricing/components/PricingTiers.tsx", 70] + [ + "src/views/onboarding/select-plan/index.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 333 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 70 + ] ], "translation": "Pro" }, @@ -4664,84 +8098,156 @@ "message": "Pro Plan", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 290]], + "origin": [ + [ + "src/views/members/index.tsx", + 290 + ] + ], "translation": "Pro-abonnement" }, "Qtzfdk": { "message": "Pro Plan ∞", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 322]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ] + ], "translation": "Pro-abonnement ∞" }, "0rPv1T": { "message": "Profile image updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 189]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 189 + ] + ], "translation": "Profielafbeelding bijgewerkt" }, "4XF0BB": { "message": "Profile picture", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 30 + ] + ], "translation": "Profielfoto" }, "7d1a0d": { "message": "Public", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 79]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 79 + ] + ], "translation": "Openbaar" }, "ABCjd9": { "message": "Publishing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 47]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 47 + ] + ], "translation": "Publiceren" }, "bfgr/e": { "message": "Question", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 66 + ] + ], "translation": "Vraag" }, "1H5u1m": { "message": "Questions?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 147]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 147 + ] + ], "translation": "Vragen?" }, "kfOGMr": { "message": "Quick Win", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Quick win" }, + "09Tv5j": { + "message": "Reconnecting…", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/ConnectionStatus.tsx", + 30 + ] + ], + "translation": "" + }, "6EWT6T": { "message": "Recruitment", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 73]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 73 + ] + ], "translation": "Recruitment" }, "ekCRTP": { "message": "Rejected", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "Afgewezen" }, "qlAIQ1": { "message": "Remote", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Op afstand" }, "t/YqKh": { @@ -4749,7 +8255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 58] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 58 + ] ], "translation": "Verwijderen" }, @@ -4757,70 +8266,123 @@ "message": "Remove from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 121]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 121 + ] + ], "translation": "Verwijderen uit favorieten" }, "99VIgC": { "message": "Remove member", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 233]], + "origin": [ + [ + "src/views/members/index.tsx", + 233 + ] + ], "translation": "Lid verwijderen" }, "BZkYSt": { "message": "removed {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 116]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 116 + ] + ], "translation": "heeft {0} labels verwijderd: <0>{labelList}" }, "kQwvU8": { "message": "removed a label from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 129]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 129 + ] + ], "translation": "heeft een label van de kaart verwijderd" }, "uck1tz": { "message": "removed a member from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 131]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 131 + ] + ], "translation": "heeft een lid van de kaart verwijderd" }, "KEim/+": { "message": "removed an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 141]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 141 + ] + ], "translation": "heeft een bijlage verwijderd" }, "zwTiVn": { "message": "removed an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 288]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 288 + ] + ], "translation": "heeft een bijlage verwijderd <0>{0}" }, "Qh7QmR": { "message": "Removed from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 54]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 54 + ] + ], "translation": "Verwijderd uit favorieten" }, "YVT40D": { "message": "removed label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 200]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 200 + ] + ], "translation": "heeft label <0>{0} verwijderd" }, "aHRWVI": { @@ -4828,8 +8390,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 144], - ["src/views/card/components/ActivityList.tsx", 324] + [ + "src/views/card/components/ActivityList.tsx", + 144 + ], + [ + "src/views/card/components/ActivityList.tsx", + 324 + ] ], "translation": "heeft de vervaldatum verwijderd" }, @@ -4837,25 +8405,44 @@ "message": "renamed a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 133]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 133 + ] + ], "translation": "heeft een checklist hernoemd" }, "3ZjRJY": { "message": "renamed checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 216]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 216 + ] + ], "translation": "heeft checklist <0>{0} hernoemd" }, "NH54UR": { "message": "renamed checklist item to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 240]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 240 + ] + ], "translation": "heeft checklistitem hernoemd naar <0>{0}" }, "Yx0Ud8": { @@ -4863,8 +8450,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Aangevraagd" }, @@ -4872,7 +8465,12 @@ "message": "Research", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 89]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 89 + ] + ], "translation": "Onderzoek" }, "e4hPSt": { @@ -4880,7 +8478,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 245] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 245 + ] ], "translation": "Terugzetten naar rolstandaarden" }, @@ -4888,21 +8489,36 @@ "message": "Resolution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 60]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 60 + ] + ], "translation": "Resolutie" }, "s+MGs7": { "message": "Resources", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 114 + ] + ], "translation": "Bronnen" }, "5k0NLb": { "message": "Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 92]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 92 + ] + ], "translation": "Beoordeling" }, "/gaSVU": { @@ -4910,10 +8526,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 36], - ["src/views/home/components/Header.tsx", 13], - ["src/views/home/components/Header.tsx", 28], - ["src/views/onboarding/workspace-details/index.tsx", 161] + [ + "src/views/home/components/Footer.tsx", + 36 + ], + [ + "src/views/home/components/Header.tsx", + 13 + ], + [ + "src/views/home/components/Header.tsx", + 28 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] ], "translation": "Roadmap" }, @@ -4921,14 +8549,24 @@ "message": "Role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 328]], + "origin": [ + [ + "src/views/members/index.tsx", + 328 + ] + ], "translation": "Rol" }, "jQ6I8X": { "message": "Role updated", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 58]], + "origin": [ + [ + "src/views/members/index.tsx", + 58 + ] + ], "translation": "Rol bijgewerkt" }, "RzxgOE": { @@ -4936,7 +8574,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 164] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 164 + ] ], "translation": "Rollen en machtigingen" }, @@ -4944,14 +8585,24 @@ "message": "Run on your own infrastructure", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 72]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 72 + ] + ], "translation": "Draai op je eigen infrastructuur" }, "YEOVrT": { "message": "SAML SSO", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 102]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 102 + ] + ], "translation": "SAML SSO" }, "+5kO8P": { @@ -4959,7 +8610,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 54 + ] ], "translation": "Zaterdag" }, @@ -4968,9 +8622,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 183], - ["src/views/card/components/Comment.tsx", 202], - ["src/views/settings/components/Avatar.tsx", 290] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 183 + ], + [ + "src/views/card/components/Comment.tsx", + 202 + ], + [ + "src/views/settings/components/Avatar.tsx", + 290 + ] ], "translation": "Opslaan" }, @@ -4978,42 +8641,72 @@ "message": "Save changes", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Wijzigingen opslaan" }, "MdwUGG": { "message": "Save time with reusable board templates.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 116]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 116 + ] + ], "translation": "Bespaar tijd met herbruikbare bordsjablonen." }, "cOh+MI": { "message": "Screening", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 76]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 76 + ] + ], "translation": "Screening" }, "SkCNhl": { "message": "Search boards and cards...", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 104]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 104 + ] + ], "translation": "Zoek borden en kaarten..." }, "e1v+J3": { "message": "Secret (optional)", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 229]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 229 + ] + ], "translation": "Geheim (optioneel)" }, "OkTY4+": { "message": "Secret cannot exceed 512 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 28]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 28 + ] + ], "translation": "Geheim mag niet meer dan 512 tekens bevatten" }, "a3LDKx": { @@ -5021,7 +8714,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 321] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 321 + ] ], "translation": "Beveiliging" }, @@ -5029,7 +8725,12 @@ "message": "See what our users are saying about Kan", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 239]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 239 + ] + ], "translation": "Bekijk wat onze gebruikers over Kan zeggen" }, "zYRVNp": { @@ -5037,7 +8738,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 131] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 131 + ] ], "translation": "Selecteer een lijst" }, @@ -5046,8 +8750,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 315], - ["src/views/boards/components/ImportBoardsForm.tsx", 464] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 315 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 464 + ] ], "translation": "Alles selecteren" }, @@ -5055,56 +8765,96 @@ "message": "Select at least one event", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 32]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 32 + ] + ], "translation": "Selecteer minimaal één gebeurtenis" }, "rYUZIe": { "message": "Select source", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Selecteer bron" }, "ppaRWv": { "message": "Self Host", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 64]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 64 + ] + ], "translation": "Zelf hosten" }, "l2PIAy": { "message": "Self host with Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 81]], + "origin": [ + [ + "src/views/home/index.tsx", + 81 + ] + ], "translation": "Zelf hosten met Github" }, "VXk54Y": { "message": "self-assigned the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 169 + ] + ], "translation": "heeft de kaart aan zichzelf toegewezen" }, "RoafuO": { "message": "Send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 116]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 116 + ] + ], "translation": "Feedback versturen" }, "eus61c": { "message": "Send test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 310]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 310 + ] + ], "translation": "Test verzenden" }, "v3YoMA": { "message": "Senior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Senior" }, "8AbRER": { @@ -5112,9 +8862,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 20], - ["src/views/board/components/CardContextMenu.tsx", 56], - ["src/views/card/components/DueDateSelector.tsx", 121] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 20 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 56 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 121 + ] ], "translation": "Vervaldatum instellen" }, @@ -5122,14 +8881,24 @@ "message": "set the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 142]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 142 + ] + ], "translation": "heeft de vervaldatum ingesteld" }, "JjEJSy": { "message": "Set up your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 179]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 179 + ] + ], "translation": "Stel je werkruimte in" }, "Tz0i8g": { @@ -5137,8 +8906,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 102], - ["src/components/SideNavigation.tsx", 135] + [ + "src/components/SettingsLayout.tsx", + 102 + ], + [ + "src/components/SideNavigation.tsx", + 136 + ] ], "translation": "Instellingen" }, @@ -5146,70 +8921,120 @@ "message": "Settings | Account", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 26 + ] + ], "translation": "Instellingen | Account" }, "iy1wb+": { "message": "Settings | API", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 18]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 18 + ] + ], "translation": "Instellingen | API" }, "ADEin1": { "message": "Settings | Billing", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 35]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 35 + ] + ], "translation": "Instellingen | Facturering" }, "hYzsXr": { "message": "Settings | Integrations", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 138]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 138 + ] + ], "translation": "Instellingen | Integraties" }, "F/FPk/": { "message": "Settings | Permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 49 + ] + ], "translation": "Instellingen | Rechten" }, "+h2faV": { "message": "Settings | Webhooks", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 24]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 24 + ] + ], "translation": "Instellingen | Webhooks" }, "Ci/KUX": { "message": "Settings | Workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 59]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 59 + ] + ], "translation": "Instellingen | Werkruimte" }, "CTqTgr": { "message": "Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 187]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 187 + ] + ], "translation": "Sneltoetsen" }, "5lWFkC": { "message": "Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 104]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 104 + ] + ], "translation": "Inloggen" }, "n1ekoW": { "message": "Sign In", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 154]], + "origin": [ + [ + "src/views/invite/index.tsx", + 154 + ] + ], "translation": "Inloggen" }, "fcWrnU": { @@ -5217,8 +9042,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 284], - ["src/views/onboarding/workspace-details/index.tsx", 362] + [ + "src/views/onboarding/select-plan/index.tsx", + 284 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 362 + ] ], "translation": "Uitloggen" }, @@ -5226,7 +9057,12 @@ "message": "Sign Up", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 162]], + "origin": [ + [ + "src/views/invite/index.tsx", + 162 + ] + ], "translation": "Registreren" }, "sUZo7y": { @@ -5234,8 +9070,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 36], - ["src/views/auth/signup/index.tsx", 61] + [ + "src/views/auth/signup/index.tsx", + 36 + ], + [ + "src/views/auth/signup/index.tsx", + 61 + ] ], "translation": "Registreren | kan.bn" }, @@ -5243,21 +9085,36 @@ "message": "Sign up disabled", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 46]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 46 + ] + ], "translation": "Registratie uitgeschakeld" }, "s6iE/c": { "message": "Sign up is currently disabled. Please try again later.", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 49]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 49 + ] + ], "translation": "Registratie is momenteel uitgeschakeld. Probeer het later opnieuw." }, "6FDocz": { "message": "Sign up with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "Registreren met " }, "m2nk0i": { @@ -5265,8 +9122,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 89], - ["src/views/pricing/index.tsx", 44] + [ + "src/views/pricing/components/Pricing.tsx", + 89 + ], + [ + "src/views/pricing/index.tsx", + 44 + ] ], "translation": "Eenvoudige prijzen" }, @@ -5274,7 +9137,12 @@ "message": "Simple, visual task management that just works. Drag and drop cards, collaborate with your team, and get more done.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 139]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 139 + ] + ], "translation": "Eenvoudig, visueel taakbeheer dat gewoon werkt. Sleep kaarten, werk samen met je team en krijg meer gedaan." }, "zEcnBA": { @@ -5282,7 +9150,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 291] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 291 + ] ], "translation": "SLA" }, @@ -5290,28 +9161,48 @@ "message": "Small", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 7]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 7 + ] + ], "translation": "Klein" }, "++rVAm": { "message": "Social Media", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Social media" }, "wIb7Ng": { "message": "Software Development", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 22 + ] + ], "translation": "Softwareontwikkeling" }, "6sKjjx": { "message": "Solo", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 76]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 76 + ] + ], "translation": "Solo" }, "vnS6Rf": { @@ -5319,7 +9210,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 256] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 256 + ] ], "translation": "SSO" }, @@ -5327,7 +9221,12 @@ "message": "Star on Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 37]], + "origin": [ + [ + "src/views/home/index.tsx", + 37 + ] + ], "translation": "Star op Github" }, "veIDCY": { @@ -5335,8 +9234,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 359], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 113] + [ + "src/views/members/components/InviteMemberForm.tsx", + 359 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 113 + ] ], "translation": "Start 14 dagen gratis proefperiode" }, @@ -5344,21 +9249,36 @@ "message": "Start free. Upgrade as your team grows. No hidden fees, no contracts.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/index.tsx", 47]], + "origin": [ + [ + "src/views/pricing/index.tsx", + 47 + ] + ], "translation": "Start gratis. Upgrade naarmate je team groeit. Geen verborgen kosten, geen contracten." }, "uAQUqI": { "message": "Status", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 230]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 230 + ] + ], "translation": "Status" }, "WYDptz": { "message": "Subscription Required", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 122]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 122 + ] + ], "translation": "Abonnement vereist" }, "zzDlyQ": { @@ -5366,8 +9286,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/AuthForm.tsx", 215], - ["src/components/AuthForm.tsx", 232] + [ + "src/components/AuthForm.tsx", + 215 + ], + [ + "src/components/AuthForm.tsx", + 232 + ] ], "translation": "Succes" }, @@ -5376,7 +9302,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 52 + ] ], "translation": "Zondag" }, @@ -5385,7 +9314,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 59] + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 59 + ] ], "translation": "Geef je workspace een boost voor slechts €29/maand. Dit krijg je:" }, @@ -5394,8 +9326,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 198], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 325] + [ + "src/components/UserMenu.tsx", + 198 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 325 + ] ], "translation": "Ondersteuning" }, @@ -5403,21 +9341,36 @@ "message": "Support the development of the project", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 57]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 57 + ] + ], "translation": "Ondersteun de ontwikkeling van het project" }, "D+NlUC": { "message": "System", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 144]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 144 + ] + ], "translation": "Systeem" }, "KM6m8p": { "message": "Team", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 83]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 83 + ] + ], "translation": "Team" }, "bff61F": { @@ -5425,8 +9378,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 322], - ["src/views/members/index.tsx", 292] + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ], + [ + "src/views/members/index.tsx", + 292 + ] ], "translation": "Teamabonnement" }, @@ -5435,9 +9394,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 332], - ["src/views/pricing/components/Pricing.tsx", 46], - ["src/views/pricing/components/PricingTiers.tsx", 47] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 332 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 46 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 47 + ] ], "translation": "Teams" }, @@ -5446,8 +9414,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/board/index.tsx", 566] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/board/index.tsx", + 570 + ] ], "translation": "Sjabloon" }, @@ -5455,28 +9429,48 @@ "message": "Template created", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 67]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 67 + ] + ], "translation": "Sjabloon aangemaakt" }, "QHhZeE": { "message": "Template created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 68]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 68 + ] + ], "translation": "Sjabloon succesvol aangemaakt" }, "notwF1": { "message": "Template name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 19]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 19 + ] + ], "translation": "Sjabloonnaam mag niet meer dan 100 tekens bevatten" }, "6OTo9n": { "message": "Template name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 18]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 18 + ] + ], "translation": "Sjabloonnaam is verplicht" }, "iTylMl": { @@ -5484,8 +9478,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 111], - ["src/views/home/components/Features.tsx", 115] + [ + "src/components/SideNavigation.tsx", + 112 + ], + [ + "src/views/home/components/Features.tsx", + 115 + ] ], "translation": "Sjablonen" }, @@ -5493,14 +9493,24 @@ "message": "Terms of service", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 42]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 42 + ] + ], "translation": "Servicevoorwaarden" }, "NnH3pK": { "message": "Test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 136]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 136 + ] + ], "translation": "Test" }, "itgYbC": { @@ -5508,8 +9518,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 132], - ["src/views/settings/components/WebhookList.tsx", 174] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 132 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 174 + ] ], "translation": "Test webhook succesvol verzonden!" }, @@ -5517,28 +9533,48 @@ "message": "Testimonials", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 232]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 232 + ] + ], "translation": "Getuigenissen" }, "nhMhRr": { "message": "Thank you for your feedback!", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 34]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 34 + ] + ], "translation": "Bedankt voor je feedback!" }, "NcFrgC": { "message": "The board has been archived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 46]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 46 + ] + ], "translation": "Het board is gearchiveerd." }, "C6gv54": { "message": "The board has been unarchived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 47]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 47 + ] + ], "translation": "Het board is gedearchiveerd." }, "nKBUeF": { @@ -5546,7 +9582,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 69] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 69 + ] ], "translation": "De kaart is gedupliceerd." }, @@ -5555,7 +9594,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 84] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 84 + ] ], "translation": "Het huidige wachtwoord dat je hebt ingevoerd is onjuist." }, @@ -5563,7 +9605,12 @@ "message": "The main difference between Kan and Trello is that Kan is open source, allowing anyone to view, modify, and contribute to our code. Our cloud offering also offers no restrictions on features for individual use, whereas Trello locks basic features such as the number of boards you can create behind a paywall.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 33]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 33 + ] + ], "translation": "Het belangrijkste verschil tussen Kan en Trello is dat Kan open source is, waardoor iedereen onze code kan bekijken, aanpassen en eraan kan bijdragen. Ons cloudaanbod biedt ook geen beperkingen op functies voor individueel gebruik, terwijl Trello basisfuncties zoals het aantal borden dat je kunt maken achter een betaalmuur plaatst." }, "6tDFBe": { @@ -5571,8 +9618,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 35], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 58] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 35 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 58 + ] ], "translation": "De rechten van het lid zijn bijgewerkt." }, @@ -5580,37 +9633,64 @@ "message": "The member's role has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 59]], + "origin": [ + [ + "src/views/members/index.tsx", + 59 + ] + ], "translation": "De rol van het lid is bijgewerkt." }, "gUX7b+": { "message": "The open source <0/> alternative to Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 65]], + "origin": [ + [ + "src/views/home/index.tsx", + 65 + ] + ], "translation": "Het open source <0/> alternatief voor Trello" }, "0xD8Of": { "message": "The page you're looking for doesn't exist or has been moved.", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 29]], + "origin": [ + [ + "src/pages/404.tsx", + 29 + ] + ], "translation": "De pagina die je zoekt bestaat niet of is verplaatst." }, "fQCrjt": { "message": "The visibility of your board has been set to {0}.", "placeholders": { - "0": ["isPublic ? \"public\" : \"private\""] + "0": [ + "isPublic ? \"public\" : \"private\"" + ] }, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 50]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 50 + ] + ], "translation": "De zichtbaarheid van je bord is ingesteld op {0}." }, "FEr96N": { "message": "Theme", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 131]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 131 + ] + ], "translation": "Thema" }, "Yf9FAx": { @@ -5618,7 +9698,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 50] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 50 + ] ], "translation": "Ze kunnen geen toegang meer krijgen tot deze workspace." }, @@ -5627,11 +9710,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 44], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 39], - ["src/views/card/components/DeleteCardConfirmation.tsx", 78], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 59], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 69] + [ + "src/components/DeleteLabelConfirmation.tsx", + 44 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 39 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 78 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 59 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 69 + ] ], "translation": "Deze actie kan niet ongedaan worden gemaakt." }, @@ -5639,28 +9737,48 @@ "message": "This API key will only be shown once. Please save it in a secure location.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 129]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 129 + ] + ], "translation": "Deze API-sleutel wordt slechts één keer getoond. Bewaar deze op een veilige locatie." }, "l4asa1": { "message": "This board is private or does not exist", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 184]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 184 + ] + ], "translation": "Dit bord is privé of bestaat niet" }, "wY+6Ye": { "message": "This board URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 136]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 136 + ] + ], "translation": "Deze bord-URL is al in gebruik" }, "mTwGOf": { "message": "This invitation link is invalid or has expired.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 108]], + "origin": [ + [ + "src/views/invite/index.tsx", + 108 + ] + ], "translation": "Deze uitnodigingslink is ongeldig of verlopen." }, "vlxQFL": { @@ -5668,7 +9786,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 81] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 81 + ] ], "translation": "De rechten van dit lid zijn teruggezet naar de standaardinstellingen van hun rol." }, @@ -5676,14 +9797,24 @@ "message": "This URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 73]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 73 + ] + ], "translation": "Deze URL is al in gebruik" }, "gKmoow": { "message": "This URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 75]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 75 + ] + ], "translation": "Deze URL is gereserveerd" }, "OAYToL": { @@ -5703,7 +9834,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 70] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 70 + ] ], "translation": "Dit resulteert in de permanente verwijdering van alle gegevens die aan deze workspace zijn gekoppeld." }, @@ -5712,7 +9846,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 60 + ] ], "translation": "Dit resulteert in de permanente verwijdering van alle gegevens die aan je account zijn gekoppeld." }, @@ -5720,14 +9857,24 @@ "message": "This workspace URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 252]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 252 + ] + ], "translation": "Deze workspace-URL is al in gebruik" }, "bJtM0P": { "message": "This workspace URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 254]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 254 + ] + ], "translation": "Deze workspace-URL is gereserveerd" }, "kp6L3T": { @@ -5735,7 +9882,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 125] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 125 + ] ], "translation": "Deze workspace-gebruikersnaam is al in gebruik" }, @@ -5743,7 +9893,12 @@ "message": "Title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 127]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 127 + ] + ], "translation": "Titel" }, "wK4OTM": { @@ -5751,7 +9906,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 180] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 180 + ] ], "translation": "Titel (optioneel)" }, @@ -5760,8 +9918,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] ], "translation": "Te doen" }, @@ -5769,21 +9933,36 @@ "message": "Toggle menu", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 114 + ] + ], "translation": "Menu in-/uitschakelen" }, "L5WQLg": { "message": "Token is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 19]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 19 + ] + ], "translation": "Token is vereist" }, "eEQyz+": { "message": "Track all card changes with detailed activity history.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 111 + ] + ], "translation": "Volg alle kaartwijzigingen met gedetailleerde activiteitengeschiedenis." }, "dtbpdR": { @@ -5791,8 +9970,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 218], - ["src/views/settings/IntegrationsSettings.tsx", 142] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 218 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 142 + ] ], "translation": "Trello" }, @@ -5800,56 +9985,96 @@ "message": "Trello disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 79]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 79 + ] + ], "translation": "Trello losgekoppeld" }, "kxEs5t": { "message": "Trello imports", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 95 + ] + ], "translation": "Trello-imports" }, "HO+uOC": { "message": "Triaging", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 57]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 57 + ] + ], "translation": "Triëren" }, "o+JCfN": { "message": "Trusted by fast-moving teams<0/>around the world", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Logos.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Logos.tsx", + 67 + ] + ], "translation": "Vertrouwd door snelle teams<0/>over de hele wereld" }, "bZSICm": { "message": "Unable to add checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 89]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 89 + ] + ], "translation": "Kan checklistitem niet toevoegen" }, "T7DJ2k": { "message": "Unable to add comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewCommentForm.tsx", 36]], + "origin": [ + [ + "src/views/card/components/NewCommentForm.tsx", + 36 + ] + ], "translation": "Kan opmerking niet toevoegen" }, "2Q871c": { "message": "Unable to add label", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 244]], + "origin": [ + [ + "src/views/card/index.tsx", + 286 + ] + ], "translation": "Kan label niet toevoegen" }, "LeM5RY": { "message": "Unable to clear overrides", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 39]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 39 + ] + ], "translation": "Kan overschrijvingen niet wissen" }, "W1ewR0": { @@ -5857,10 +10082,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 313], - ["src/views/card/components/Dropdown.tsx", 49], - ["src/views/public/board/CardModal.tsx", 43], - ["src/views/public/board/index.tsx", 84] + [ + "src/views/board/index.tsx", + 317 + ], + [ + "src/views/card/components/Dropdown.tsx", + 49 + ], + [ + "src/views/public/board/CardModal.tsx", + 43 + ], + [ + "src/views/public/board/index.tsx", + 84 + ] ], "translation": "Kan link niet kopiëren" }, @@ -5868,21 +10105,36 @@ "message": "Unable to create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 183]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 183 + ] + ], "translation": "Kan kaart niet aanmaken" }, "mHhffx": { "message": "Unable to create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 70]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 70 + ] + ], "translation": "Kan checklist niet aanmaken" }, "TztLaN": { "message": "Unable to create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 78]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 78 + ] + ], "translation": "Kan lijst niet aanmaken" }, "YcyP2z": { @@ -5890,8 +10142,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewTemplateForm.tsx", 60], - ["src/views/board/components/NewTemplateForm.tsx", 76] + [ + "src/views/board/components/NewTemplateForm.tsx", + 60 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 76 + ] ], "translation": "Kan sjabloon niet aanmaken" }, @@ -5900,8 +10158,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 122], - ["src/views/onboarding/workspace-details/index.tsx", 100] + [ + "src/components/NewWorkspaceForm.tsx", + 122 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 100 + ] ], "translation": "Kan workspace niet aanmaken" }, @@ -5909,14 +10173,24 @@ "message": "Unable to delete attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 73]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 73 + ] + ], "translation": "Kan bijlage niet verwijderen" }, "Z6r9z1": { "message": "Unable to delete card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 51]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 51 + ] + ], "translation": "Kan kaart niet verwijderen" }, "DahTzR": { @@ -5924,7 +10198,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 37] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 37 + ] ], "translation": "Kan checklist niet verwijderen" }, @@ -5932,14 +10209,24 @@ "message": "Unable to delete checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 95 + ] + ], "translation": "Kan checklistitem niet verwijderen" }, "2QGEbi": { "message": "Unable to delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 45]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 45 + ] + ], "translation": "Kan opmerking niet verwijderen" }, "Oo4E6p": { @@ -5947,7 +10234,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 75] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 75 + ] ], "translation": "Kan kaart niet dupliceren" }, @@ -5955,7 +10245,12 @@ "message": "Unable to move card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 41]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 41 + ] + ], "translation": "Kan kaart niet verplaatsen" }, "8yFGGF": { @@ -5963,7 +10258,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 27] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 27 + ] ], "translation": "Kan lid niet verwijderen" }, @@ -5971,7 +10269,12 @@ "message": "Unable to reorder checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Checklists.tsx", 80]], + "origin": [ + [ + "src/views/card/components/Checklists.tsx", + 80 + ] + ], "translation": "Kan checklistitem niet opnieuw ordenen" }, "vfRdCZ": { @@ -5979,7 +10282,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 92] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 92 + ] ], "translation": "Kan machtigingen niet resetten" }, @@ -5987,35 +10293,60 @@ "message": "Unable to send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 40]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 40 + ] + ], "translation": "Kan feedback niet verzenden" }, "Q60WUZ": { "message": "Unable to start checkout", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 149]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 149 + ] + ], "translation": "Kan afrekenen niet starten" }, "T7Mywq": { "message": "Unable to update board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 64]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 64 + ] + ], "translation": "Kan bord niet bijwerken" }, "XpcjLO": { "message": "Unable to update board URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 72]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 72 + ] + ], "translation": "Kan bord-URL niet bijwerken" }, "Wy6pcF": { "message": "Unable to update board visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 56]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 56 + ] + ], "translation": "Kan zichtbaarheid van bord niet bijwerken" }, "o9WLwO": { @@ -6023,8 +10354,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 273], - ["src/views/card/index.tsx", 231] + [ + "src/views/board/index.tsx", + 277 + ], + [ + "src/views/card/index.tsx", + 273 + ] ], "translation": "Kan kaart niet bijwerken" }, @@ -6032,35 +10369,60 @@ "message": "Unable to update checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistNameInput.tsx", 46]], + "origin": [ + [ + "src/views/card/components/ChecklistNameInput.tsx", + 46 + ] + ], "translation": "Kan checklist niet bijwerken" }, "WQPDcG": { "message": "Unable to update checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 67 + ] + ], "translation": "Kan checklistitem niet bijwerken" }, "fYVH36": { "message": "Unable to update comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 92]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 92 + ] + ], "translation": "Kan opmerking niet bijwerken" }, "C56tim": { "message": "Unable to update due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DueDateSelector.tsx", 63]], + "origin": [ + [ + "src/views/card/components/DueDateSelector.tsx", + 63 + ] + ], "translation": "Kan vervaldatum niet bijwerken" }, "delOXn": { "message": "Unable to update labels", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/LabelSelector.tsx", 74]], + "origin": [ + [ + "src/views/card/components/LabelSelector.tsx", + 74 + ] + ], "translation": "Kan labels niet bijwerken" }, "I0gAKM": { @@ -6068,8 +10430,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 217], - ["src/views/card/components/ListSelector.tsx", 54] + [ + "src/views/board/index.tsx", + 221 + ], + [ + "src/views/card/components/ListSelector.tsx", + 54 + ] ], "translation": "Kan lijst niet bijwerken" }, @@ -6077,7 +10445,12 @@ "message": "Unable to update members", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/MemberSelector.tsx", 81]], + "origin": [ + [ + "src/views/card/components/MemberSelector.tsx", + 81 + ] + ], "translation": "Kan leden niet bijwerken" }, "GYv20o": { @@ -6085,8 +10458,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 41], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 64] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 41 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 64 + ] ], "translation": "Kan machtigingen niet bijwerken" }, @@ -6094,44 +10473,76 @@ "message": "Unable to update role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 65]], + "origin": [ + [ + "src/views/members/index.tsx", + 65 + ] + ], "translation": "Kan rol niet bijwerken" }, "It4/FS": { "message": "Unarchive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Board dearchiveren" }, "E8zYtd": { "message": "unassigned <0>{0} from the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 183]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 183 + ] + ], "translation": "heeft <0>{0} van de kaart verwijderd" }, "hAMddS": { "message": "unassigned themselves from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 180]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 180 + ] + ], "translation": "heeft zichzelf van de kaart verwijderd" }, "9Xigls": { "message": "Under Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "In behandeling" }, "M9p3Vw": { "message": "Unlimited activity log", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 41]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 41 + ] + ], "translation": "Onbeperkt activiteitenlogboek" }, "1wCGT0": { @@ -6139,12 +10550,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 74], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 75], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 76], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 77], - ["src/views/pricing/components/Pricing.tsx", 37], - ["src/views/pricing/components/PricingTiers.tsx", 36] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 74 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 75 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 76 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 77 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 37 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 36 + ] ], "translation": "Onbeperkt aantal borden" }, @@ -6152,7 +10581,12 @@ "message": "Unlimited boards, unlimited lists, unlimited cards. No credit card required.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 57]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 57 + ] + ], "translation": "Onbeperkt aantal borden, onbeperkt aantal lijsten, onbeperkt aantal kaarten. Geen creditcard vereist." }, "Zz1qkk": { @@ -6160,8 +10594,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 39], - ["src/views/pricing/components/PricingTiers.tsx", 37] + [ + "src/views/pricing/components/Pricing.tsx", + 39 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 37 + ] ], "translation": "Onbeperkt aantal kaarten" }, @@ -6169,7 +10609,12 @@ "message": "Unlimited comments", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 40]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 40 + ] + ], "translation": "Onbeperkt reacties" }, "86FLn5": { @@ -6177,10 +10622,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 92], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 93], - ["src/views/pricing/components/PricingTiers.tsx", 59] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 92 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 93 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 59 + ] ], "translation": "Onbeperkt bestandsuploads" }, @@ -6188,7 +10645,12 @@ "message": "Unlimited lists", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 38 + ] + ], "translation": "Onbeperkt lijsten" }, "mx8+1u": { @@ -6196,11 +10658,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 297], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 84], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 85], - ["src/views/pricing/components/PricingTiers.tsx", 80], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 68] + [ + "src/components/NewWorkspaceForm.tsx", + 297 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 84 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 85 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 80 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 68 + ] ], "translation": "Onbeperkt leden" }, @@ -6208,14 +10685,24 @@ "message": "Unlimited members and a custom workspace username for teams ready to scale.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 94]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 94 + ] + ], "translation": "Onbeperkt aantal leden en een aangepaste werkruimte-URL voor teams die klaar zijn om te groeien." }, "Ws+3X+": { "message": "Unlimited seats and advanced features for growing teams.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 75]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 75 + ] + ], "translation": "Onbeperkt seats en geavanceerde functies voor groeiende teams." }, "SMaFdc": { @@ -6223,8 +10710,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/pages/unsubscribe/index.tsx", 68], - ["src/pages/unsubscribe/index.tsx", 93] + [ + "src/pages/unsubscribe/index.tsx", + 68 + ], + [ + "src/pages/unsubscribe/index.tsx", + 93 + ] ], "translation": "Uitschrijven" }, @@ -6233,11 +10726,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugForm.tsx", 175], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 80], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 94], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 89], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 157] + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 175 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 80 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 94 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 89 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 157 + ] ], "translation": "Bijwerken" }, @@ -6245,44 +10753,76 @@ "message": "Update label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Label bijwerken" }, "L5ZPjz": { "message": "updated a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 136]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 136 + ] + ], "translation": "heeft een checklistitem bijgewerkt" }, "tGwwnq": { "message": "updated the description", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 126]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 126 + ] + ], "translation": "heeft de beschrijving bijgewerkt" }, "RfgJqw": { "message": "updated the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 143]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 143 + ] + ], "translation": "heeft de deadline bijgewerkt" }, "V3MPSQ": { "message": "updated the title", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 125]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 125 + ] + ], "translation": "heeft de titel bijgewerkt" }, "zERArS": { "message": "updated the title to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 152]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 152 + ] + ], "translation": "heeft de titel bijgewerkt naar <0>{0}" }, "IelE1h": { @@ -6290,9 +10830,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 55], - ["src/views/settings/WorkspaceSettings.tsx", 118] + [ + "src/components/SideNavigation.tsx", + 242 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 55 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 118 + ] ], "translation": "Upgrade naar Pro" }, @@ -6301,8 +10850,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 337], - ["src/views/onboarding/workspace-details/index.tsx", 243] + [ + "src/components/NewWorkspaceForm.tsx", + 337 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 243 + ] ], "translation": "Upgrade naar Pro ($29/maand)" }, @@ -6310,7 +10865,12 @@ "message": "Upload failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 51]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 51 + ] + ], "translation": "Upload mislukt" }, "BBUDfW": { @@ -6318,8 +10878,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 50], - ["src/views/boards/components/TemplateBoards.tsx", 67] + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 67 + ] ], "translation": "Urgent" }, @@ -6328,8 +10894,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 217], - ["src/views/settings/components/WebhookList.tsx", 218] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 217 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 218 + ] ], "translation": "URL" }, @@ -6338,8 +10910,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 38], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 38] + [ + "src/components/NewWorkspaceForm.tsx", + 38 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 38 + ] ], "translation": "URL mag alleen letters, cijfers en koppeltekens bevatten" }, @@ -6347,7 +10925,12 @@ "message": "URL cannot exceed 2048 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 25 + ] + ], "translation": "URL mag niet langer zijn dan 2048 tekens" }, "i5rE2/": { @@ -6355,8 +10938,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 36], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 36] + [ + "src/components/NewWorkspaceForm.tsx", + 36 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 36 + ] ], "translation": "URL mag niet langer zijn dan 64 tekens" }, @@ -6365,8 +10954,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 34], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 34] + [ + "src/components/NewWorkspaceForm.tsx", + 34 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 34 + ] ], "translation": "URL moet minimaal 3 tekens lang zijn" }, @@ -6374,112 +10969,208 @@ "message": "Use template", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 154]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 154 + ] + ], "translation": "Template gebruiken" }, "n6EWYz": { "message": "Used to sign webhook payloads for verification. Leave blank to keep existing secret.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 239]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 239 + ] + ], "translation": "Wordt gebruikt om webhook-payloads te ondertekenen voor verificatie. Laat leeg om het bestaande geheim te behouden." }, "7PzzBU": { "message": "User", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 322]], + "origin": [ + [ + "src/views/members/index.tsx", + 322 + ] + ], "translation": "Gebruiker" }, "tYN21H": { "message": "User is already a member of this workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 98]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 98 + ] + ], "translation": "Gebruiker is al lid van deze workspace" }, "vSJd18": { "message": "Video", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Video" }, "FmfJjN": { "message": "View and manage your API keys.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 25 + ] + ], "translation": "Bekijk en beheer je API-sleutels." }, "t2nDzl": { "message": "View and manage your billing and subscription.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 42]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 42 + ] + ], "translation": "Bekijk en beheer je facturering en abonnement." }, "aiHZVP": { "message": "View docs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 67]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 67 + ] + ], "translation": "Bekijk documentatie" }, "F8DaWi": { "message": "View only", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 153]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 153 + ] + ], "translation": "Alleen bekijken" }, "fSf2ee": { "message": "View our roadmap.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 154]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 154 + ] + ], "translation": "Bekijk onze roadmap." }, "U5dMR6": { "message": "View workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 187]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 187 + ] + ], "translation": "Bekijk workspace" }, + "V8YRD4": { + "message": "Viewing now: {0}", + "placeholders": { + "0": [ + "viewers.map((v) => v.userName).join(\", \")" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 61 + ] + ], + "translation": "" + }, "2q/Q7x": { "message": "Visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 103]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 103 + ] + ], "translation": "Zichtbaarheid" }, "BJbLe4": { "message": "We are using the <0>AGPL-3.0 license.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 94]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 94 + ] + ], "translation": "We gebruiken de <0>AGPL-3.0-licentie." }, "+EkBs0": { "message": "We couldn't update your preferences. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 63]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 63 + ] + ], "translation": "We konden je voorkeuren niet bijwerken. Probeer het opnieuw." }, "9y1RcT": { "message": "We're just getting started. ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 152]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 152 + ] + ], "translation": "We zijn net begonnen." }, "GdWB+V": { "message": "Webhook created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 104]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 104 + ] + ], "translation": "Webhook succesvol aangemaakt" }, "2X4ecw": { @@ -6487,7 +11178,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 23] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 23 + ] ], "translation": "Webhook succesvol verwijderd" }, @@ -6495,14 +11189,24 @@ "message": "Webhook name cannot exceed 255 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 20]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 20 + ] + ], "translation": "Webhooknaam mag niet langer zijn dan 255 tekens" }, "U2+rn0": { "message": "Webhook name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 19 + ] + ], "translation": "Webhooknaam is verplicht" }, "8iP9oQ": { @@ -6510,8 +11214,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 135], - ["src/views/settings/components/WebhookList.tsx", 177] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 135 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 177 + ] ], "translation": "Webhook-test mislukt" }, @@ -6519,14 +11229,24 @@ "message": "Webhook updated successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 118]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 118 + ] + ], "translation": "Webhook succesvol bijgewerkt" }, "Hf1cEZ": { "message": "Webhook URL is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 23]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 23 + ] + ], "translation": "Webhook-URL is verplicht" }, "v1kQyJ": { @@ -6534,8 +11254,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 71], - ["src/views/settings/WebhookSettings.tsx", 28] + [ + "src/components/SettingsLayout.tsx", + 71 + ], + [ + "src/views/settings/WebhookSettings.tsx", + 28 + ] ], "translation": "Webhooks" }, @@ -6543,42 +11269,72 @@ "message": "Week start day", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 91 + ] + ], "translation": "Eerste dag van de week" }, "9eF5oV": { "message": "Welcome back", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 43]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 43 + ] + ], "translation": "Welkom terug" }, "xEbBrW": { "message": "What license are you using?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 91 + ] + ], "translation": "Welke licentie gebruik je?" }, "H5G+qG": { "message": "What's the difference between Kan and Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 30]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 30 + ] + ], "translation": "Wat is het verschil tussen Kan en Trello?" }, "mVZH9V": { "message": "When Trello launched in 2011, it blew everyone away with its carefully designed simplicity, but over the years it lost its magic and grew into something closer to \"Jira Lite\". This project is our attempt to recapture the original magic of Trello's simplicity, in open source.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 25 + ] + ], "translation": "Toen Trello in 2011 werd gelanceerd, blies het iedereen omver met zijn zorgvuldig ontworpen eenvoud, maar door de jaren heen verloor het zijn magie en groeide het uit tot iets dat meer leek op \"Jira Lite\". Dit project is onze poging om de oorspronkelijke magie van Trello's eenvoud te heroveren, in open source." }, "SFnH1j": { "message": "Why make an open source Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 22]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 22 + ] + ], "translation": "Waarom een open source Trello maken?" }, "pmUArF": { @@ -6586,12 +11342,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 47], - ["src/views/board/index.tsx", 530], - ["src/views/boards/index.tsx", 48], - ["src/views/members/index.tsx", 258], - ["src/views/public/board/index.tsx", 125], - ["src/views/public/boards/index.tsx", 75] + [ + "src/components/SettingsLayout.tsx", + 47 + ], + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/members/index.tsx", + 258 + ], + [ + "src/views/public/board/index.tsx", + 125 + ], + [ + "src/views/public/boards/index.tsx", + 75 + ] ], "translation": "Workspace" }, @@ -6599,7 +11373,12 @@ "message": "Workspace created successfully. You can upgrade later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 147]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 147 + ] + ], "translation": "Workspace succesvol aangemaakt. Je kunt later upgraden in de instellingen.", "obsolete": true }, @@ -6608,7 +11387,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 26] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 26 + ] ], "translation": "Workspace verwijderd" }, @@ -6617,8 +11399,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 253], - ["src/views/settings/WorkspaceSettings.tsx", 82] + [ + "src/views/onboarding/workspace-details/index.tsx", + 253 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 82 + ] ], "translation": "Workspace-beschrijving" }, @@ -6627,7 +11415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 30] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 30 + ] ], "translation": "Workspace-beschrijving mag niet meer dan 280 tekens bevatten" }, @@ -6636,7 +11427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 27] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 27 + ] ], "translation": "Workspace-beschrijving moet minimaal 3 tekens lang zijn" }, @@ -6645,7 +11439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 50] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 50 + ] ], "translation": "Workspace-beschrijving bijgewerkt" }, @@ -6654,9 +11451,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 90], - ["src/views/pricing/components/Pricing.tsx", 54], - ["src/views/pricing/components/PricingTiers.tsx", 57] + [ + "src/views/home/components/Features.tsx", + 90 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 54 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 57 + ] ], "translation": "Workspace-leden" }, @@ -6665,9 +11471,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 227], - ["src/views/onboarding/workspace-details/index.tsx", 188], - ["src/views/settings/WorkspaceSettings.tsx", 63] + [ + "src/components/NewWorkspaceForm.tsx", + 227 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 188 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 63 + ] ], "translation": "Workspace-naam" }, @@ -6676,8 +11491,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 30], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 15] + [ + "src/components/NewWorkspaceForm.tsx", + 30 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 15 + ] ], "translation": "Workspace-naam mag niet meer dan 64 tekens bevatten" }, @@ -6685,7 +11506,12 @@ "message": "Workspace name is required", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 29]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 29 + ] + ], "translation": "Workspace-naam is verplicht" }, "jZBHkN": { @@ -6693,7 +11519,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 14] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 14 + ] ], "translation": "Werkruimtenaam moet minimaal 3 tekens lang zijn" }, @@ -6702,7 +11531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 45] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 45 + ] ], "translation": "Werkruimtenaam bijgewerkt" }, @@ -6710,7 +11542,12 @@ "message": "Workspace permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 53 + ] + ], "translation": "Werkruimte-rechten" }, "MN6YzG": { @@ -6718,7 +11555,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 62] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 62 + ] ], "translation": "Werkruimte-slug bijgewerkt" }, @@ -6726,28 +11566,48 @@ "message": "Workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 72]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 72 + ] + ], "translation": "Werkruimte-URL" }, "DSGzV+": { "message": "Workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 97 + ] + ], "translation": "Werkruimte-gebruikersnaam" }, "/8pTF/": { "message": "workspace-url", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 241]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 241 + ] + ], "translation": "werkruimte-url" }, "4kJRen": { "message": "Writing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 43]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 43 + ] + ], "translation": "Schrijven" }, "zkWmBh": { @@ -6755,8 +11615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 19], - ["src/views/pricing/index.tsx", 25] + [ + "src/views/pricing/components/Pricing.tsx", + 19 + ], + [ + "src/views/pricing/index.tsx", + 25 + ] ], "translation": "Jaarlijks" }, @@ -6764,42 +11630,72 @@ "message": "Yes, we offer an forever free plan for individual use. No restrictions, no paywalls, no limits.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 86 + ] + ], "translation": "Ja, we bieden een gratis plan voor altijd aan voor individueel gebruik. Geen beperkingen, geen paywalls, geen limieten." }, "RtlIYB": { "message": "You are about to change your password.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 91 + ] + ], "translation": "Je staat op het punt je wachtwoord te wijzigen." }, "3WXdoZ": { "message": "You can always change these later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 182]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 182 + ] + ], "translation": "Je kunt dit later altijd wijzigen in de instellingen." }, "aelko+": { "message": "You can get a custom workspace URL, like <0>kan.bn/kan, by going into your <1>workspace settings and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 67 + ] + ], "translation": "Je kunt een aangepaste werkruimte-URL krijgen, zoals <0>kan.bn/kan, door naar je <1>werkruimte-instellingen te gaan en een pro werkruimte-abonnement aan te schaffen. Alle abonnementen helpen de ontwikkeling van het project te financieren!" }, "kSxwQL": { "message": "You can invite team members by clicking the \"Invite\" button in the top right corner of the <0>members page and entering their email address. They will receive an email with a link to join the workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 111 + ] + ], "translation": "Je kunt teamleden uitnodigen door op de knop \"Uitnodigen\" in de rechterbovenhoek van de <0>ledenpagina te klikken en hun e-mailadres in te voeren. Ze ontvangen een e-mail met een link om lid te worden van de werkruimte." }, "vAj6xG": { "message": "You can self-host by following the instructions in our <0>repo.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 127]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 127 + ] + ], "translation": "Je kunt zelf hosten door de instructies in onze <0>repo te volgen." }, "h2FKMV": { @@ -6807,14 +11703,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/List.tsx", 117], - ["src/views/board/components/UpdateBoardSlugButton.tsx", 58], - ["src/views/board/components/VisibilityButton.tsx", 72], - ["src/views/board/index.tsx", 604], - ["src/views/board/index.tsx", 662], - ["src/views/boards/components/BoardsList.tsx", 71], - ["src/views/boards/index.tsx", 59], - ["src/views/boards/index.tsx", 80] + [ + "src/views/board/components/List.tsx", + 117 + ], + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 58 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 72 + ], + [ + "src/views/board/index.tsx", + 608 + ], + [ + "src/views/board/index.tsx", + 667 + ], + [ + "src/views/boards/components/BoardsList.tsx", + 71 + ], + [ + "src/views/boards/index.tsx", + 59 + ], + [ + "src/views/boards/index.tsx", + 80 + ] ], "translation": "Je hebt geen toestemming" }, @@ -6822,49 +11742,180 @@ "message": "You have been logged in successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 233]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 233 + ] + ], "translation": "Je bent succesvol ingelogd." }, "mchgzf": { "message": "You have been signed up successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 216]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 216 + ] + ], "translation": "Je bent succesvol geregistreerd." }, "raHesj": { "message": "You have been unsubscribed!", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 98]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 98 + ] + ], "translation": "Je bent uitgeschreven!" }, "R275Pz": { "message": "You have unlimited seats with your Pro Plan. There is no additional charge for new members!", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 326]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 326 + ] + ], "translation": "Je hebt onbeperkt aantal plaatsen met je Pro Plan. Er zijn geen extra kosten voor nieuwe leden!" }, "MdN5zD": { "message": "You need to be an admin to manage workspace permissions.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 86 + ] + ], "translation": "Je moet een beheerder zijn om werkruimte-rechten te beheren." }, + "Cb5YSG": { + "message": "You were added to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 33 + ] + ], + "translation": "" + }, + "EYpSRU": { + "message": "You were added to a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 34 + ] + ], + "translation": "" + }, + "j77sVH": { + "message": "You were assigned to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 45 + ] + ], + "translation": "" + }, + "4sxGcV": { + "message": "You were assigned to a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 46 + ] + ], + "translation": "" + }, + "9HDx2Z": { + "message": "You were mentioned in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 29 + ] + ], + "translation": "" + }, + "e6wIqm": { + "message": "You were mentioned in a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 30 + ] + ], + "translation": "" + }, + "11dHnN": { + "message": "You were removed from", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 37 + ] + ], + "translation": "" + }, + "YdIn4I": { + "message": "You were removed from a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 38 + ] + ], + "translation": "" + }, "2SePRT": { "message": "You've been invited to join a workspace on kan.bn.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 134]], + "origin": [ + [ + "src/views/invite/index.tsx", + 134 + ] + ], "translation": "Je bent uitgenodigd om lid te worden van een werkruimte op kan.bn." }, "uOqaMC": { "message": "You've been invited to join a workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 135]], + "origin": [ + [ + "src/views/invite/index.tsx", + 135 + ] + ], "translation": "Je bent uitgenodigd om lid te worden van een werkruimte." }, "GoDLB9": { @@ -6872,7 +11923,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 28 + ] ], "translation": "Je account is verwijderd." }, @@ -6880,49 +11934,84 @@ "message": "Your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 229]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 229 + ] + ], "translation": "Jouw avatar" }, "evg7+A": { "message": "Your boards have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 382]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 382 + ] + ], "translation": "Je borden zijn geïmporteerd." }, "LqWW5F": { "message": "Your display name has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 42]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 42 + ] + ], "translation": "Je weergavenaam is bijgewerkt." }, "tca56/": { "message": "Your file has been uploaded successfully.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 46]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 46 + ] + ], "translation": "Je bestand is succesvol geüpload." }, "HcT8J4": { "message": "Your GitHub account has been connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 100 + ] + ], "translation": "Je GitHub-account is gekoppeld." }, "AdxYds": { "message": "Your GitHub account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 123]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 123 + ] + ], "translation": "Je GitHub-account is ontkoppeld." }, "PELbXB": { "message": "Your GitHub account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 220]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 220 + ] + ], "translation": "Je GitHub-account is gekoppeld." }, "Ozt2vv": { @@ -6930,7 +12019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 70] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 70 + ] ], "translation": "Je wachtwoord is gewijzigd." }, @@ -6938,49 +12030,108 @@ "message": "Your profile image has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 190]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 190 + ] + ], "translation": "Je profielafbeelding is bijgewerkt." }, "+jbXzb": { "message": "Your projects have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 230]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 230 + ] + ], "translation": "Je projecten zijn geïmporteerd." }, + "0AfkMq": { + "message": "Your role changed in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 41 + ] + ], + "translation": "" + }, + "GKeVeM": { + "message": "Your role was changed", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 42 + ] + ], + "translation": "" + }, "CJWDTP": { "message": "Your Trello account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 80]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 80 + ] + ], "translation": "Je Trello-account is losgekoppeld." }, "WRsbHO": { "message": "Your Trello account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 171]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 171 + ] + ], "translation": "Je Trello-account is gekoppeld." }, "25fAUC": { "message": "Your unsubscribe link is missing a token. Please open the latest email and try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 33]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 33 + ] + ], "translation": "Je afmeldlink mist een token. Open de nieuwste e-mail en probeer het opnieuw." }, "GRAGsB": { "message": "Your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 322]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 322 + ] + ], "translation": "Jouw werkruimte" }, "j0o6ml": { "message": "Your workspace description", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 325]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 325 + ] + ], "translation": "Jouw werkruimtebeschrijving" }, "GnSSGm": { @@ -6988,7 +12139,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 51] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 51 + ] ], "translation": "Je werkruimtebeschrijving is bijgewerkt." }, @@ -6997,7 +12151,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 27 + ] ], "translation": "Je werkruimte is verwijderd." }, @@ -7006,7 +12163,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 46] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 46 + ] ], "translation": "Je werkruimtenaam is bijgewerkt." }, @@ -7015,7 +12175,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 63 + ] ], "translation": "Je werkruimte-slug is bijgewerkt." }, @@ -7024,8 +12187,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 197], - ["src/views/onboarding/workspace-details/index.tsx", 198] + [ + "src/views/onboarding/workspace-details/index.tsx", + 197 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 198 + ] ], "translation": "jouw-werkruimte" }, @@ -7033,7 +12202,12 @@ "message": "YouTube URL", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 147]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 147 + ] + ], "translation": "YouTube-URL" } } \ No newline at end of file diff --git a/apps/web/src/locales/nl/messages.ts b/apps/web/src/locales/nl/messages.ts index 80f43ecc5..398163a1e 100644 --- a/apps/web/src/locales/nl/messages.ts +++ b/apps/web/src/locales/nl/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Social media\"],\"+3TYXa\":[\"Voor duurzaamheid op lange termijn erkennen we dat alle goede open source projecten een bron van inkomsten nodig hebben. De onze komt van het betaalde cloudaanbod voor werkruimtes met meerdere gebruikers en voor aangepaste werkruimte-slugs. Er is geen verplichting om het te gebruiken, en je kunt de software gratis op je eigen infrastructuur hosten.\"],\"+5kO8P\":[\"Zaterdag\"],\"+8Nek/\":[\"Maandelijks\"],\"+EkBs0\":[\"We konden je voorkeuren niet bijwerken. Probeer het opnieuw.\"],\"+MdEsf\":[\"Nieuw wachtwoord is verplicht\"],\"+OhFss\":[\"Ga gratis aan de slag, zonder gebruikslimieten. Voor samenwerking kun je upgraden naar een abonnement dat past bij de grootte van je team.\"],\"+VoTOr\":[\"maandelijks gefactureerd\"],\"+djOzj\":[\"Lid uitnodigen\"],\"+h2faV\":[\"Instellingen | Webhooks\"],\"+jbXzb\":[\"Je projecten zijn geïmporteerd.\"],\"+nvZ6j\":[\"Labels & filters\"],\"/8pTF/\":[\"werkruimte-url\"],\"/K2CvV\":[\"Sjabloon\"],\"/asTmx\":[\"Bugrapport\"],\"/bBVaD\":[\"GitHub losgekoppeld\"],\"/bZzdR\":[\"Vermeldingen\"],\"/f3t6v\":[\"Configureer welke acties zijn toegestaan voor elke werkruimterol. Deze rechten gelden voor alle leden met die rol.\"],\"/gaSVU\":[\"Roadmap\"],\"/glL9Q\":[\"Geen \",[\"0\"]],\"/jd3aj\":[\"Geavanceerde beheerdersrollen\"],\"/lDBHm\":[\"Veelgestelde vragen\"],\"/rn4RE\":[\"Een krachtige, flexibele kanban-app die je helpt werk te organiseren, voortgang bij te houden en resultaten te leveren—allemaal op één plek.\"],\"/tOdd2\":[\"Je profielafbeelding is bijgewerkt.\"],\"0+0/3e\":[\"Maak nieuw label\"],\"0+ewPp\":[\"Verbetering\"],\"02i3WU\":[\"Imports\"],\"06EQqT\":[\"Dupliceren…\"],\"0KjpAr\":[\"Kan leden bekijken\"],\"0RE1AJ\":[\"Boards die je archiveert verschijnen hier.\"],\"0StR7t\":[\"Voer je nieuwe wachtwoord in\"],\"0jV46i\":[\"Kan checklistitem niet verwijderen\"],\"0qyZ4b\":[\"Machtigingen laden...\"],\"0rPv1T\":[\"Profielafbeelding bijgewerkt\"],\"0utuU6\":[\"Checklists kopiëren\"],\"0xD8Of\":[\"De pagina die je zoekt bestaat niet of is verplaatst.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Bord importeren (1)\"],\"other\":[\"Borden importeren (\",[\"boardCount\"],\")\"]}]],\"14Xi3Z\":[\"Het toevoegen van een nieuw lid kost \",[\"price\"],\" (\",[\"billingType\"],\") extra per seat.\"],\"1H5u1m\":[\"Vragen?\"],\"1WuwiM\":[\"Ga naar instellingen\"],\"1bJKhj\":[\"Link naar kaart kopiëren\"],\"1hzdxO\":[\"Werkruimte-rechten\"],\"1iShX0\":[\"Verloopt vandaag\"],\"1njn7W\":[\"Licht\"],\"1rVAfU\":[\"Meer activiteiten laden\"],\"1rWxEw\":[\"Wacht op klant\"],\"1sRmLC\":[\"Bespreek en werk samen aan kaarten.\"],\"1wCGT0\":[\"Onbeperkt aantal borden\"],\"25fAUC\":[\"Je afmeldlink mist een token. Open de nieuwste e-mail en probeer het opnieuw.\"],\"25mvI+\":[\"Uitnodigingslinks vereisen een Team- of Pro-abonnement. Upgrade je workspace.\"],\"29sSki\":[\"heeft checklistitem <0>\",[\"0\"],\" voltooid\"],\"2BBAbc\":[\"Lijst\"],\"2Bu8xj\":[\"Geen borden gevonden\"],\"2M84k3\":[\"Aangepaste rechten\"],\"2MPcep\":[\"Import voltooid\"],\"2POOFK\":[\"Gratis\"],\"2Py5S/\":[\"Ik bevestig dat alle werkruimtegegevens permanent worden verwijderd en wil doorgaan.\"],\"2Q871c\":[\"Kan label niet toevoegen\"],\"2QGEbi\":[\"Kan opmerking niet verwijderen\"],\"2SePRT\":[\"Je bent uitgenodigd om lid te worden van een werkruimte op kan.bn.\"],\"2X4ecw\":[\"Webhook succesvol verwijderd\"],\"2h4PVB\":[\"Je werkruimtenaam is bijgewerkt.\"],\"2liqDZ\":[\"Ik bevestig dat al mijn accountgegevens permanent worden verwijderd en wil doorgaan.\"],\"2q/Q7x\":[\"Zichtbaarheid\"],\"2roTVj\":[\"Feedback verzonden\"],\"3LDCpD\":[\"Deze actie kan niet ongedaan worden gemaakt.\"],\"3WXdoZ\":[\"Je kunt dit later altijd wijzigen in de instellingen.\"],\"3ZjRJY\":[\"heeft checklist <0>\",[\"0\"],\" hernoemd\"],\"3bqt9U\":[\"Iedereen met deze link kan lid worden van je werkruimte\"],\"3d54Wj\":[\"Webhook succesvol bijgewerkt\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"GitHub verbinden\"],\"3pIq39\":[\"Beheerdersrollen\"],\"479pdJ\":[\"Bevestig je nieuwe wachtwoord\"],\"4DOCMI\":[\"YouTube-URL\"],\"4Revpc\":[\"Klein\"],\"4RoY9J\":[\"Blogpost\"],\"4XF0BB\":[\"Profielfoto\"],\"4gAX8s\":[\"Menu in-/uitschakelen\"],\"4kJRen\":[\"Schrijven\"],\"4obmDr\":[\"404 - Pagina niet gevonden | kan.bn\"],\"51UCsN\":[\"Verplaats naar andere lijst\"],\"53QYh8\":[\"Bord aanmaken mislukt\"],\"55xJ/O\":[\"Fout bij wijzigen wachtwoord\"],\"58AiWX\":[\"Bevestig je nieuwe wachtwoord\"],\"5ACX4z\":[\"Nieuwsbrief\"],\"5IXWmO\":[\"Controleer je inbox\"],\"5P4rhH\":[\"Kan leden niet bijwerken\"],\"5RkSzq\":[\"Kopieer bordlink\"],\"5eZwRW\":[\"Verbind je Trello-account om boards te importeren.\"],\"5h8ooz\":[\"API-sleutels\"],\"5iplxh\":[\"Nieuw wachtwoord moet verschillen van het huidige wachtwoord\"],\"5k0NLb\":[\"Beoordeling\"],\"5lWFkC\":[\"Inloggen\"],\"5ntVtp\":[\"Webhook testen mislukt\"],\"5y6qY8\":[\"heeft een bijlage toegevoegd\"],\"69b7aE\":[\"Commandomenu openen\"],\"6EWT6T\":[\"Recruitment\"],\"6FDocz\":[\"Registreren met \"],\"6FsGbN\":[\"Ga aan de slag door een nieuwe \",[\"0\"],\" te maken\"],\"6OTo9n\":[\"Sjabloonnaam is verplicht\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Nieuwe \",[\"0\"]],\"6YtxFj\":[\"Naam\"],\"6mbe4b\":[\"Individuen\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"De rechten van het lid zijn bijgewerkt.\"],\"6uBU1F\":[\"Volledige API-toegang\"],\"6zeSBB\":[\"Kan kaarten aanmaken\"],\"74F7N/\":[\"Weet je zeker dat je je account wilt verwijderen?\"],\"7EhE4k\":[\"Label bijwerken\"],\"7L01XJ\":[\"Acties\"],\"7PzzBU\":[\"Gebruiker\"],\"7RpHg/\":[\"Aangepaste gebruikersnaam\"],\"7Ufoyg\":[\"Onbeperkt lijsten\"],\"7aONWr\":[\"URL mag niet langer zijn dan 2048 tekens\"],\"7b2yuC\":[\"Voer een geldig wachtwoord in\"],\"7d1a0d\":[\"Openbaar\"],\"7eMo+U\":[\"Ga naar home\"],\"7hktsm\":[\"Aan de slag\"],\"7i8j3G\":[\"Bedrijf\"],\"8+BY11\":[\"Board-URL gekopieerd naar klembord\"],\"86FLn5\":[\"Onbeperkt bestandsuploads\"],\"86XI28\":[\"Bevestig je e-mailvoorkeuren:\"],\"8AbRER\":[\"Vervaldatum instellen\"],\"8AwlaR\":[\"Onbeperkt aantal leden en een aangepaste werkruimte-URL voor teams die klaar zijn om te groeien.\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"8Is1ih\":[\"Lanceringaanbieding\"],\"8RdLDU\":[\"Persoonlijk project\"],\"8TveY+\":[\"Boards\"],\"8Z4pNX\":[\"Kan lijsten aanmaken\"],\"8iP0S8\":[\"Alles in het gratis abonnement, plus:\"],\"8iP9oQ\":[\"Webhook-test mislukt\"],\"8yFGGF\":[\"Kan lid niet verwijderen\"],\"99VIgC\":[\"Lid verwijderen\"],\"9PaIxv\":[\"Kernfuncties\"],\"9Xigls\":[\"In behandeling\"],\"9YPBHv\":[\"Webhook verwijderen mislukt\"],\"9cDpsw\":[\"Toestemmingen\"],\"9eF5oV\":[\"Welkom terug\"],\"9h7RDh\":[\"Aanbieding\"],\"9lFfqv\":[\"/maand\"],\"9s9O5h\":[\"Fout bij verwijderen werkruimte\"],\"9u5BOr\":[\"Leden | \",[\"0\"]],\"9wdpwp\":[\"Facturatieportaal\"],\"9x4DAL\":[[\"0\"],\" niet gevonden\"],\"9y1RcT\":[\"We zijn net begonnen.\"],\"A23Y7X\":[\"Deelnemen aan workspace | kan.bn\"],\"A42Dqn\":[\"Aangepaste branding\"],\"A5hiCy\":[\"Maak sjabloon\"],\"A8jqN7\":[\"Kan feedback niet verzenden\"],\"ABCjd9\":[\"Publiceren\"],\"ADEin1\":[\"Instellingen | Facturering\"],\"ALhEZV\":[\"Kan leden uitnodigen\"],\"ANyn0x\":[\"Alles wat je nodig hebt, voor altijd gratis. Onbeperkt borden, onbeperkt lijsten, onbeperkt kaarten. Upgrade wanneer je maar wilt.\"],\"ARvBT/\":[\"jaarlijks gefactureerd\"],\"ASjvm9\":[\"Werkruimte-URL\"],\"AUYALh\":[\"Binnenkort beschikbaar\"],\"AX4ktp\":[\"Content creatie\"],\"AZI/wb\":[\"Labels & filters\"],\"AdxYds\":[\"Je GitHub-account is ontkoppeld.\"],\"AeXO77\":[\"Account\"],\"Alp2ti\":[\"Neem contact op met sales\"],\"Ax/hYa\":[\"Workspace-beschrijving mag niet meer dan 280 tekens bevatten\"],\"B3xxao\":[\"Kaart toevoegen\"],\"BBUDfW\":[\"Urgent\"],\"BEVzjL\":[\"Import mislukt\"],\"BJbLe4\":[\"We gebruiken de <0>AGPL-3.0-licentie.\"],\"BMkVQ3\":[\"heeft checklist <0>\",[\"0\"],\" verwijderd\"],\"BOqTi5\":[\"heeft de kaart verplaatst van <0>\",[\"0\"],\" naar <1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Kaart dupliceren\"],\"BZkYSt\":[\"heeft \",[\"0\"],\" labels verwijderd: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Weet je zeker dat je de werkruimte \",[\"0\"],\" wilt verwijderen?\"],\"Bhgd0l\":[\"Neem contact met ons op\"],\"BzEFor\":[\"of\"],\"C56tim\":[\"Kan vervaldatum niet bijwerken\"],\"C6gv54\":[\"Het board is gedearchiveerd.\"],\"CAL6E9\":[\"Teams\"],\"CB/NpV\":[\"Hoge prioriteit\"],\"CHZ1jC\":[\"heeft checklistitem <0>\",[\"0\"],\" verwijderd\"],\"CJ3zUq\":[\"Voer een geldige naam in\"],\"CJWDTP\":[\"Je Trello-account is losgekoppeld.\"],\"CJukzS\":[[\"0\"],\" labels\"],\"CTqTgr\":[\"Sneltoetsen\"],\"CYWHT+\":[\"Fout bij uploaden van profielafbeelding\"],\"Cd4sTD\":[\"Het beste voor individuen en solo-makers die aan de slag gaan\"],\"Ci/KUX\":[\"Instellingen | Werkruimte\"],\"CkVV1t\":[\"Fout bij bijwerken van werkruimtebeschrijving\"],\"Cmudpi\":[\"Kan workspace verwijderen\"],\"CozWO1\":[\"Workspace-naam\"],\"CujNX4\":[\"heeft een bijlage toegevoegd <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"Systeem\"],\"D0esZz\":[\"Activiteitenlogboek\"],\"D3C4Yx\":[\"Huidig wachtwoord is verplicht\"],\"D7/JvJ\":[\"Pas de vierkante uitsnede aan zodat deze bij je avatar past.\"],\"D9ROdV\":[\"Uitnodigingslinks\"],\"DAV3uK\":[\"Toestemmingen bijgewerkt\"],\"DBC3t5\":[\"Zondag\"],\"DFjdv0\":[\"Sjabloon verwijderen\"],\"DMeWZD\":[\"Weet je zeker dat je deze \",[\"0\"],\" wilt verwijderen?\"],\"DPfwMq\":[\"Klaar\"],\"DSGzV+\":[\"Werkruimte-gebruikersnaam\"],\"DahTzR\":[\"Kan checklist niet verwijderen\"],\"DbZgsJ\":[\"Sjabloon maken\"],\"DtXlZq\":[\"Kan checklist niet bijwerken\"],\"Dz63YI\":[\"Er is een fout opgetreden bij het loskoppelen van je GitHub-account.\"],\"E0t3jO\":[\"heeft checklist-item <0>\",[\"0\"],\" toegevoegd\"],\"E6wBCJ\":[\"Prijzen per gebruiker\"],\"E8zYtd\":[\"heeft <0>\",[\"0\"],\" van de kaart verwijderd\"],\"ECJKc4\":[\"API-sleutel aangemaakt\"],\"EEHmPC\":[\"Lanceringaanbieding: onbeperkt leden met Pro\"],\"EH8IL3\":[\"Checklists\"],\"EII/X8\":[\"Alle Teams-functies +\"],\"ERpq2P\":[\"Geen resultaten gevonden voor \\\"\",[\"debouncedQuery\"],\"\\\".\"],\"ESClHO\":[\"Prioritaire e-mailondersteuning\"],\"Eg99Sc\":[\"Er zijn momenteel geen authenticatiemethoden beschikbaar\"],\"Eit43O\":[\"heeft de vervaldatum ingesteld\"],\"EkH9pt\":[\"Bijwerken\"],\"EvArWh\":[\"Werk naadloos samen met je team.\"],\"F/FPk/\":[\"Instellingen | Rechten\"],\"F/vB2g\":[\"Ideeën om deze pagina te verbeteren...\"],\"F0YmUY\":[\"Kopieer kaartlink\"],\"F3bW6y\":[\"Platform\"],\"F4KRmY\":[\"€8/maand\"],\"F4PLG4\":[\"Workspace-beschrijving bijgewerkt\"],\"F6m23G\":[\"Bestandsuploads\"],\"F6pfE9\":[\"Actief\"],\"F8DaWi\":[\"Alleen bekijken\"],\"FEr96N\":[\"Thema\"],\"FdtSNC\":[\"Maak werkruimte\"],\"FmN5me\":[\"Resolutie\"],\"FmfJjN\":[\"Bekijk en beheer je API-sleutels.\"],\"Fpci8b\":[\"Weet je zeker dat je deze checklist wilt verwijderen?\"],\"G1Gw0v\":[\"Nieuwe sjabloon\"],\"GAD3Dx\":[\"Aangepast domein\"],\"GDvlUT\":[\"Rol\"],\"GRAGsB\":[\"Jouw werkruimte\"],\"GYv20o\":[\"Kan machtigingen niet bijwerken\"],\"GdWB+V\":[\"Webhook succesvol aangemaakt\"],\"GnRmu4\":[\"Checklistnaam\"],\"GnSSGm\":[\"Je werkruimtebeschrijving is bijgewerkt.\"],\"GoDLB9\":[\"Je account is verwijderd.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Uitgebreide roadmap\"],\"Gxxi5J\":[\"Checklist toevoegen\"],\"H5G+qG\":[\"Wat is het verschil tussen Kan en Trello?\"],\"HBI6nY\":[\"Hulp nodig?\"],\"HO+uOC\":[\"Triëren\"],\"HQVm6e\":[\"Deze URL is al in gebruik\"],\"HVIzNO\":[\"Kan lijsten bekijken\"],\"HYV6Lq\":[\"Uitnodiging accepteren mislukt. Probeer het later opnieuw of neem contact op met klantenservice.\"],\"HcT8J4\":[\"Je GitHub-account is gekoppeld.\"],\"HeFWjW\":[\"Volgende stappen\"],\"Hf1cEZ\":[\"Webhook-URL is verplicht\"],\"Hg1qE9\":[\"Je werkruimte-slug is bijgewerkt.\"],\"I+AROe\":[\"Kan kaarten bewerken\"],\"I0gAKM\":[\"Kan lijst niet bijwerken\"],\"IDvohQ\":[\"heeft een checklistitem als onvolledig gemarkeerd\"],\"IFgUX6\":[\"Kan leden verwijderen\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Upgrade naar Pro\"],\"Iqh0Uv\":[\"Gepland\"],\"IqjpYe\":[\"E-mailzichtbaarheid\"],\"IrZaAn\":[\"Wachtwoord gewijzigd\"],\"It4/FS\":[\"Board dearchiveren\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Ga verder met \"],\"J4+OTA\":[\"Verplaats naar lijst\"],\"J5nbej\":[\"Kritiek\"],\"J5pbP6\":[\"Kan rollen en rechten van leden bewerken\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JCdzgZ\":[\"Functieverzoek\"],\"JUce1S\":[\"Toegewezen aan\"],\"JbXXUW\":[\"Houd er rekening mee dat deze actie onomkeerbaar is.\"],\"JcCDm9\":[\"Sjabloon aangemaakt\"],\"Jgaz7E\":[\"Toestemmingen gereset\"],\"JjEJSy\":[\"Stel je werkruimte in\"],\"JnWJXY\":[\"magische link\"],\"JxhWxU\":[\"in\"],\"JyXBgS\":[\"docs\"],\"K3iLeO\":[\"Bekijk wat onze gebruikers over Kan zeggen\"],\"K7k9u3\":[\"Kan kaart niet verplaatsen\"],\"KAsRdK\":[\"Ga naar leden\"],\"KEim/+\":[\"heeft een bijlage verwijderd\"],\"KFJgmZ\":[\"Weergavenaam moet minimaal 3 tekens lang zijn\"],\"KLJ4eD\":[\"Uitnodigingslink gekopieerd\"],\"KM6m8p\":[\"Team\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Geavanceerde beheerdersinstellingen\"],\"KiVc+q\":[\"Fulltime\"],\"KuSt9W\":[\"Hoe host ik zelf?\"],\"L5WQLg\":[\"Token is vereist\"],\"L5ZPjz\":[\"heeft een checklistitem bijgewerkt\"],\"LTGE7Y\":[\"Workspace succesvol aangemaakt. Je kunt later upgraden in de instellingen.\"],\"LeM5RY\":[\"Kan overschrijvingen niet wissen\"],\"LoUCpj\":[\"Fout bij bijwerken van werkruimtenaam\"],\"LqWW5F\":[\"Je weergavenaam is bijgewerkt.\"],\"LrcnbT\":[\"Host Kan op je eigen infrastructuur. Ideaal voor organisaties die volledige controle over hun data nodig hebben.\"],\"Lt+ZP3\":[\"heeft een checklistitem voltooid\"],\"M9p3Vw\":[\"Onbeperkt activiteitenlogboek\"],\"MCIXdZ\":[\"Verbind je GitHub-account om projecten te importeren.\"],\"MFKlMB\":[\"Uitnodigen\"],\"MHrjPM\":[\"Titel\"],\"MI5OBT\":[\"URL mag alleen letters, cijfers en koppeltekens bevatten\"],\"MK16u2\":[\"Geen datums\"],\"MKAScN\":[\"Kan borden bekijken\"],\"MN6YzG\":[\"Werkruimte-slug bijgewerkt\"],\"MWrbWq\":[\"Instellingen | Account\"],\"MdN5zD\":[\"Je moet een beheerder zijn om werkruimte-rechten te beheren.\"],\"MdwUGG\":[\"Bespaar tijd met herbruikbare bordsjablonen.\"],\"MeO/vH\":[\"Dit resulteert in de permanente verwijdering van alle gegevens die aan deze workspace zijn gekoppeld.\"],\"MlyjJu\":[\"Weergavenaam mag niet meer dan 280 tekens bevatten\"],\"MxQXhL\":[\"Kan workspace niet aanmaken\"],\"N/bcWA\":[\"Inloggen | kan.bn\"],\"N3380t\":[\"Kan boards aanmaken\"],\"N7aud6\":[\"Intelligent zoeken\"],\"NH54UR\":[\"heeft checklistitem hernoemd naar <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"Het board is gearchiveerd.\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"NnH3pK\":[\"Test\"],\"NoNwIX\":[\"Inactief\"],\"NypLoL\":[\"heeft een checklist hernoemd\"],\"O0li0W\":[\"Voer je huidige wachtwoord in en kies een nieuw veilig wachtwoord.\"],\"O1wAlQ\":[\"Gast\"],\"O3oNi5\":[\"E-mail\"],\"O83K21\":[\"heeft een checklist-item toegevoegd\"],\"O9jVbx\":[\"Lage prioriteit\"],\"OAYToL\":[\"Dit verwijdert alle aangepaste lidrechten in deze workspace. Leden erven alleen rechten van hun rollen.\"],\"OIA0ad\":[\"Werkruimtenaam bijgewerkt\"],\"OTxjpR\":[\"jouw-werkruimte\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"GitHub loskoppelen\"],\"Oi+J+N\":[\"Kies een abonnement om te beginnen. Alle betaalde abonnementen hebben een gratis proefperiode van 14 dagen.\"],\"OkTY4+\":[\"Geheim mag niet meer dan 512 tekens bevatten\"],\"Oo4E6p\":[\"Kan kaart niet dupliceren\"],\"OpNhRn\":[\"Geen creditcard vereist\"],\"OtjenF\":[\"Voer een geldig e-mailadres in\"],\"OvoEq7\":[\"Lid\"],\"OwneeH\":[\"Aangepaste workspace-gebruikersnaam\"],\"Ozt2vv\":[\"Je wachtwoord is gewijzigd.\"],\"P6dJdq\":[\"Overschrijvingen gewist\"],\"P8Cunr\":[\"Standaard gebruikersnaam\"],\"PCIlOO\":[\"Lid toevoegen\"],\"PELbXB\":[\"Je GitHub-account is gekoppeld.\"],\"PRjvDT\":[\"Weet je zeker dat je deze opmerking wilt verwijderen?\"],\"PRofO0\":[\"YouTube-video bewerken\"],\"PTzsxH\":[\"Zichtbaarheid van board bijgewerkt\"],\"PVT7q7\":[\"GitHub verbonden\"],\"PZCqeW\":[\"Probeer het later opnieuw.\"],\"Pat4r8\":[\"Basis roadmap\"],\"PpZkda\":[\"Functies\"],\"PyYD/v\":[\"heeft <0>\",[\"0\"],\" aan de kaart toegewezen\"],\"Q60WUZ\":[\"Kan afrekenen niet starten\"],\"Q9pQaX\":[\"Nog geen rollen gevonden voor deze workspace.\"],\"QD8opX\":[\"Bord\"],\"QHhZeE\":[\"Sjabloon succesvol aangemaakt\"],\"QNtP5M\":[\"Template gebruiken\"],\"Qh7QmR\":[\"Verwijderd uit favorieten\"],\"QnzD50\":[\"On-premise\"],\"QtACvI\":[\"Maak label\"],\"Qtzfdk\":[\"Pro-abonnement ∞\"],\"R+w/Va\":[\"Facturering\"],\"R1c3Mq\":[\"Bordnaam is verplicht\"],\"R275Pz\":[\"Je hebt onbeperkt aantal plaatsen met je Pro Plan. Er zijn geen extra kosten voor nieuwe leden!\"],\"R3FsF4\":[\"Download mislukt\"],\"R41XLH\":[\"Webhook bijwerken mislukt\"],\"R6pB8R\":[\"Star op Github\"],\"RHZu7R\":[\"Geliefd bij teams wereldwijd\"],\"RJA+sg\":[\"Nieuw ticket\"],\"RRn9jf\":[\"Klik op de link die we naar \",[\"magicLinkRecipient\"],\" hebben gestuurd om in te loggen.\"],\"RSGOS1\":[\"Kan lijsten verwijderen\"],\"RfgJqw\":[\"heeft de deadline bijgewerkt\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Feedback versturen\"],\"RtlIYB\":[\"Je staat op het punt je wachtwoord te wijzigen.\"],\"RzxgOE\":[\"Rollen en machtigingen\"],\"SFnH1j\":[\"Waarom een open source Trello maken?\"],\"SMaFdc\":[\"Uitschrijven\"],\"SNfg0e\":[\"Kan workspace bekijken\"],\"SPLN9O\":[\"Beheer je eigen data\"],\"SRvxId\":[\"HMAC-geheim voor handtekeningverificatie\"],\"STSYcd\":[\"Kan opmerkingen verwijderen\"],\"SUXBxp\":[\"Engineering\"],\"SUvm1Y\":[\"Geschikt voor individuen die net beginnen en alleen de basisbehoeften hebben.\"],\"SWEskc\":[\"URL moet minimaal 3 tekens lang zijn\"],\"Sb2gYF\":[\"Nieuwe lijst\"],\"ScJ9fj\":[\"Privacybeleid\"],\"Se/UIp\":[\"Te doen\"],\"SiPp29\":[\"Webhook aanmaken\"],\"SkCNhl\":[\"Zoek borden en kaarten...\"],\"SlfejT\":[\"Fout\"],\"T/pF0Z\":[\"Verwijderen uit favorieten\"],\"T21jY/\":[\"heeft een label aan de kaart toegevoegd\"],\"T7DJ2k\":[\"Kan opmerking niet toevoegen\"],\"T7LJic\":[\"heeft de kaart naar een andere lijst verplaatst\"],\"T7Mywq\":[\"Kan bord niet bijwerken\"],\"TCOMOO\":[\"Rechten bewerken\"],\"TCt/8K\":[\"Beperkte API-toegang\"],\"TFv5tM\":[\"Kan rol niet bijwerken\"],\"TH3Irz\":[\"Toestemming\"],\"TKFUnX\":[\"Account verwijderd\"],\"TX0bT7\":[\"Geen webhooks geconfigureerd. Voeg een webhook toe om meldingen te ontvangen.\"],\"TXO5TM\":[\"Geen sneltoetsen geregistreerd.\"],\"TYli1B\":[\"Kan opmerkingen bewerken\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Code review\"],\"TdfEV7\":[\"Gearchiveerd\"],\"TjREUS\":[\"Nieuwe API-sleutel\"],\"TmvrjU\":[\"Board-URL moet minimaal 3 tekens lang zijn\"],\"TvY/XA\":[\"Documentatie\"],\"Tz0i8g\":[\"Instellingen\"],\"TztLaN\":[\"Kan lijst niet aanmaken\"],\"U2+rn0\":[\"Webhooknaam is verplicht\"],\"U3pytU\":[\"Beheerder\"],\"U5dMR6\":[\"Bekijk workspace\"],\"UCLeG0\":[\"Servicevoorwaarden\"],\"UGCIzB\":[\"Label toevoegen / bewerken\"],\"UQbwrz\":[\"Alle systemen operationeel\"],\"URAE3q\":[\"Gepauzeerd\"],\"USVCGU\":[\"Fout bij deactiveren uitnodigingslink\"],\"UbRKMZ\":[\"In behandeling\"],\"UbYdrA\":[\"Betalingsfrequentie\"],\"UeDFpo\":[\"Hoe wordt het project gefinancierd?\"],\"UirJfL\":[\"Aangepaste SLA\"],\"UlhdTP\":[\"Workspace verwijderd\"],\"Un80BR\":[\"OSS Friends\"],\"UoSI+i\":[\"Het beste voor kleine en groeiende teams die samenwerking nodig hebben\"],\"UveK6V\":[\"Ga naar app\"],\"Uworke\":[\"Parttime\"],\"UxKoFf\":[\"Navigatie\"],\"V1KOLq\":[\"E-mailmeldingen voor vermeldingen\"],\"V3MPSQ\":[\"heeft de titel bijgewerkt\"],\"V8YWP3\":[\"Voer een aangepaste titel in\"],\"VHS0aJ\":[\"Alle aangepaste rechten wissen?\"],\"VKoDQD\":[\"Maak nieuwe \",[\"0\"]],\"VUZDlr\":[\"Getuigenissen\"],\"VXk54Y\":[\"heeft de kaart aan zichzelf toegewezen\"],\"VbyRUy\":[\"Reacties\"],\"VhMDMg\":[\"Wachtwoord wijzigen\"],\"Vt50G1\":[\"Basis kanban\"],\"W/Elkg\":[\"Gemiddelde prioriteit\"],\"W/nQk1\":[\"Gratis abonnement\"],\"W1ewR0\":[\"Kan link niet kopiëren\"],\"W5r8Qh\":[\"heeft een checklistitem verwijderd\"],\"W8oT+L\":[\"Video-informatie ophalen mislukt\"],\"WHHLh9\":[\"Kan bijlage niet verwijderen\"],\"WI4eGo\":[\"Hoe krijg ik een aangepaste URL?\"],\"WQPDcG\":[\"Kan checklistitem niet bijwerken\"],\"WRkpB1\":[\"Registratie uitgeschakeld\"],\"WRsbHO\":[\"Je Trello-account is gekoppeld.\"],\"WYDptz\":[\"Abonnement vereist\"],\"WYwN1G\":[\"Nieuwe import\"],\"WbTDwg\":[\"Bezig\"],\"Weq9zb\":[\"Algemeen\"],\"WmPhYW\":[\"Er is een fout opgetreden bij het loskoppelen van je Trello-account.\"],\"WnEwDO\":[\"Heb je al een account? <0><1>Inloggen\"],\"Ws+3X+\":[\"Onbeperkt seats en geavanceerde functies voor groeiende teams.\"],\"Wy6pcF\":[\"Kan zichtbaarheid van bord niet bijwerken\"],\"X0N0PA\":[\" (bewerkt)\"],\"XDRXbZ\":[\"Workspace-beschrijving moet minimaal 3 tekens lang zijn\"],\"XEoGkQ\":[\"Ga naar homepage\"],\"XILg0L\":[\"Ongeldig e-mailadres\"],\"XJOV1Y\":[\"Activiteit\"],\"XNxYxq\":[\"Bordsjablonen\"],\"XTKtey\":[\"Maak lijst\"],\"XXbgHS\":[\"Aangenomen\"],\"XYLcNv\":[\"Ondersteuning\"],\"XicmhT\":[\"Vervaldatum\"],\"Xid3K6\":[\"Board-URL mag alleen letters, cijfers en koppeltekens bevatten\"],\"Xjj/kS\":[\"Kanban opnieuw uitgevonden\"],\"XpcjLO\":[\"Kan bord-URL niet bijwerken\"],\"Y8yzGg\":[\"Start gratis. Upgrade naarmate je team groeit. Geen verborgen kosten, geen contracten.\"],\"YBBifR\":[\"Trello loskoppelen\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Kan checklistitem niet opnieuw ordenen\"],\"YRk79X\":[\"Geavanceerde beveiliging, compliance en toegewijde ondersteuning voor grote organisaties.\"],\"YVT40D\":[\"heeft label <0>\",[\"0\"],\" verwijderd\"],\"YaZDYI\":[\"Fout bij upgraden van abonnement\"],\"YcyP2z\":[\"Kan sjabloon niet aanmaken\"],\"Yf9FAx\":[\"Ze kunnen geen toegang meer krijgen tot deze workspace.\"],\"YhvWXb\":[\"Bordanalyse\"],\"YirHq7\":[\"Feedback\"],\"YkfDoz\":[\"Jaarlijks\"],\"YoyKbT\":[\"Deze API-sleutel wordt slechts één keer getoond. Bewaar deze op een veilige locatie.\"],\"Ypy5pZ\":[\"Weet je zeker dat je de webhook \\\"\",[\"webhookName\"],\"\\\" wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.\"],\"YtUfwW\":[\"Inloggen met \",[\"0\"],\" mislukt. Probeer het opnieuw.\"],\"Yx0Ud8\":[\"Aangevraagd\"],\"Z3FXyt\":[\"Laden...\"],\"Z3krJD\":[\"Sta werkruimteleden toe elkaars e-mailadressen te zien\"],\"Z6r9z1\":[\"Kan kaart niet verwijderen\"],\"ZAs2NN\":[\"Alle Pro-functies +\"],\"ZDGm40\":[\"Account verwijderen\"],\"ZDIydz\":[\"Aan de slag\"],\"ZDPJBc\":[\"Aangepaste gebruikersnamen vereisen een upgrade naar een Pro-abonnement\"],\"ZDo4HN\":[\"Brainstormen\"],\"ZH7TVS\":[\"Kaarttitel\"],\"ZL1A+p\":[\"Bijlage uploaden mislukt. Probeer het opnieuw.\"],\"ZT4Khw\":[\"Weet je zeker dat je deze kaart wilt verwijderen?\"],\"ZU5IYI\":[\"Onbeperkt aantal borden, onbeperkt aantal lijsten, onbeperkt aantal kaarten. Geen creditcard vereist.\"],\"ZXSPJt\":[\"Er is een onverwachte fout opgetreden. Probeer het later opnieuw.\"],\"ZqDqbi\":[\"Organiseer en vind kaarten snel met krachtige filtertools.\"],\"Zz1qkk\":[\"Onbeperkt aantal kaarten\"],\"a3LDKx\":[\"Beveiliging\"],\"aHCEmh\":[\"Prijzen\"],\"aHRWVI\":[\"heeft de vervaldatum verwijderd\"],\"aJ4pMe\":[\"Veelgestelde vragen\"],\"aKJHG+\":[\"Board archiveren\"],\"aW3TOw\":[\"E-mailmeldingen\"],\"aWDhU5\":[\"Kanban is beter met een team. Perfect voor kleine en groeiende teams die willen samenwerken.\"],\"aWlSc/\":[\"Maak nieuwe lijst\"],\"abUZlY\":[\"Voeg details toe...\"],\"aelko+\":[\"Je kunt een aangepaste werkruimte-URL krijgen, zoals <0>kan.bn/kan, door naar je <1>werkruimte-instellingen te gaan en een pro werkruimte-abonnement aan te schaffen. Alle abonnementen helpen de ontwikkeling van het project te financieren!\"],\"agPptk\":[\"Gemiddeld\"],\"aiHZVP\":[\"Bekijk documentatie\"],\"b/LfJo\":[\"e-mail\"],\"b3Thhd\":[\"Upload mislukt\"],\"b5FKyH\":[\"heeft label <0>\",[\"0\"],\" toegevoegd\"],\"b9XOHo\":[\"Maak \",[\"0\"]],\"bD8I7O\":[\"Voltooid\"],\"bDI6VI\":[[\"0\"],\" is verwijderd uit je favorieten.\"],\"bFREhu\":[\"Einde van lijst\"],\"bJZm1W\":[\"Aanvragers\"],\"bJtM0P\":[\"Deze workspace-URL is gereserveerd\"],\"bKzM8L\":[\"Toegewezen accountmanager\"],\"bZSICm\":[\"Kan checklistitem niet toevoegen\"],\"bcIybO\":[\"Workspace-naam is verplicht\"],\"bdztP2\":[\"Onderzoek\"],\"be30i9\":[\"€0\"],\"bfZE+Y\":[\"De rol van het lid is bijgewerkt.\"],\"bff61F\":[\"Teamabonnement\"],\"bfgr/e\":[\"Vraag\"],\"bmXKoX\":[\"heeft \",[\"0\"],\" labels toegevoegd: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Fout bij verwijderen account\"],\"c/IAuR\":[\"Belangrijk\"],\"c3b0B0\":[\"Aan de slag\"],\"c4nMcR\":[\"Jouw avatar\"],\"c9AJhn\":[\"Deelnemen aan workspace\"],\"cAgBMh\":[\"Volledige controle en eigenaarschap:\"],\"cFQEU/\":[\"Sneltoetsen openen\"],\"cOh+MI\":[\"Screening\"],\"cWXW+7\":[\"Webhook toevoegen\"],\"cWcxrL\":[\"Nieuwe checklist\"],\"cWtfn1\":[\"Upgrade naar Pro ($29/maand)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Workspace-beschrijving\"],\"cji2nM\":[\"Fout bij aanmaken uitnodigingslink\"],\"cnGeoo\":[\"Verwijderen\"],\"cp1rsD\":[\"Uitnodigingslink deactiveren\"],\"csFbe+\":[\"Ga naar sjablonen\"],\"curoK5\":[\"Nieuwe werkruimte\"],\"d+F6q9\":[\"Aangemaakt\"],\"d33Usy\":[\"Maak checklist\"],\"dEgA5A\":[\"Annuleren\"],\"dUh9QW\":[\"Planning\"],\"ddrz1m\":[\"Achterstallig\"],\"delOXn\":[\"Kan labels niet bijwerken\"],\"dgr4Kq\":[\"Label bewerken\"],\"dmKdk0\":[\"Zodra je je workspace verwijdert, is er geen weg terug. Deze actie kan niet ongedaan worden gemaakt.\"],\"dsLT3m\":[\"Maak kaart\"],\"dtQIWT\":[\"Samenwerking\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Deze workspace-URL is al in gebruik\"],\"e1v+J3\":[\"Geheim (optioneel)\"],\"e4hPSt\":[\"Terugzetten naar rolstandaarden\"],\"eEQyz+\":[\"Volg alle kaartwijzigingen met gedetailleerde activiteitengeschiedenis.\"],\"ePK91l\":[\"Bewerken\"],\"eZCGbT\":[\"Ja, we bieden een gratis plan voor altijd aan voor individueel gebruik. Geen beperkingen, geen paywalls, geen limieten.\"],\"edWbV6\":[\"Link gekopieerd\"],\"ekCRTP\":[\"Afgewezen\"],\"en3oy5\":[\"Functie\"],\"euc6Ns\":[\"Dupliceren\"],\"eus61c\":[\"Test verzenden\"],\"evg7+A\":[\"Je borden zijn geïmporteerd.\"],\"evj0lK\":[\"Bieden jullie een gratis abonnement aan?\"],\"f8fH8W\":[\"Ontwerp\"],\"f8lDFq\":[\"heeft de kaart gemaakt\"],\"fDQ7hA\":[\"Labels kopiëren\"],\"fEY2vP\":[\"Kaart niet gevonden\"],\"fQCrjt\":[\"De zichtbaarheid van je bord is ingesteld op \",[\"0\"],\".\"],\"fR9laE\":[\"Voer je huidige wachtwoord in\"],\"fSf2ee\":[\"Bekijk onze roadmap.\"],\"fW5sSv\":[\"Webhook bewerken\"],\"fYVH36\":[\"Kan opmerking niet bijwerken\"],\"fcWrnU\":[\"Uitloggen\"],\"fuwKpE\":[\"Probeer het opnieuw.\"],\"fvLNDy\":[\"Er zijn nog geen lijsten aangemaakt\"],\"fzGyWs\":[\"Pas de lettergrootte van de applicatie aan.\"],\"fziA2d\":[\"Onbeperkt reacties\"],\"g2xBxu\":[\"Je Trello-borden importeren in Kan is eenvoudig. Je kunt onze stapsgewijze handleiding <0>hier volgen.\"],\"g9NChz\":[\"Accountmanager\"],\"gGx5tM\":[\"Bewerken\"],\"gKmoow\":[\"Deze URL is gereserveerd\"],\"gL/7jw\":[\"Voeg beschrijving toe... (typ '/' om commando's te openen of '@' om te vermelden)\"],\"gQ/02p\":[\"Fout bij loskoppelen van GitHub\"],\"gUX7b+\":[\"Het open source <0/> alternatief voor Trello\"],\"gZxH/p\":[\"heeft de vervaldatum gewijzigd naar <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"Workspace-naam mag niet meer dan 64 tekens bevatten\"],\"gkxGkF\":[\"14 dagen gratis proefperiode · Wissel van abonnement of annuleer op elk moment\"],\"gkzAEM\":[\"Ga verder met \",[\"0\"]],\"goklcJ\":[\"Interviewen\"],\"gpfJ3v\":[\"Gratis, voor altijd\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"Board-URL mag niet langer zijn dan 60 tekens\"],\"h16FyT\":[\"Lijsten\"],\"h2FKMV\":[\"Je hebt geen toestemming\"],\"h2ztFt\":[\"Alle gratis functies +\"],\"h4VV67\":[\"heeft een checklist toegevoegd\"],\"h7MgpO\":[\"Sneltoetsen\"],\"h8DugX\":[\"Labels\"],\"hAMddS\":[\"heeft zichzelf van de kaart verwijderd\"],\"hB02vO\":[\"Leden beheren\"],\"hXMFoN\":[\"Geen lijsten\"],\"hYzsXr\":[\"Instellingen | Integraties\"],\"hty0d5\":[\"Maandag\"],\"i0ZMQl\":[\"Board gearchiveerd\"],\"i30J2U\":[\"Geen projecten gevonden\"],\"i5rE2/\":[\"URL mag niet langer zijn dan 64 tekens\"],\"iH8pgl\":[\"Terug\"],\"iHcdea\":[\"Verloopt volgende week\"],\"iLbjv+\":[\"Kan workspace bewerken\"],\"iQmbPb\":[\"Licentie\"],\"iSLIjg\":[\"Verbinden\"],\"iTylMl\":[\"Sjablonen\"],\"iVIGZb\":[\"Bijlage geüpload\"],\"isRobC\":[\"Nieuw\"],\"itgYbC\":[\"Test webhook succesvol verzonden!\"],\"iwr7AP\":[\"Ideeën\"],\"iy1wb+\":[\"Instellingen | API\"],\"j0o6ml\":[\"Jouw werkruimtebeschrijving\"],\"j1+HPc\":[\"Er is een fout opgetreden bij het verbinden van je GitHub-account.\"],\"j2+d/o\":[\"API-referentie\"],\"j9IZZ0\":[\"Aangepaste workspace-URL\"],\"jDRt4n\":[\"Wil je je uitschrijven?\"],\"jEw0Mr\":[\"Voer een geldige URL in\"],\"jIuWsV\":[\"Webhooknaam mag niet langer zijn dan 255 tekens\"],\"jL82rC\":[\"Aangepaste rechten wissen\"],\"jNuzV/\":[\"Kan kaarten verwijderen\"],\"jQ6I8X\":[\"Rol bijgewerkt\"],\"jZBHkN\":[\"Werkruimtenaam moet minimaal 3 tekens lang zijn\"],\"jfC/xh\":[\"Contact\"],\"jl3aEJ\":[\"heeft checklistitem <0>\",[\"0\"],\" als onvolledig gemarkeerd\"],\"jlB2RY\":[\"Het huidige wachtwoord dat je hebt ingevoerd is onjuist.\"],\"jwI32v\":[\"Bord niet gevonden\"],\"k7rCa/\":[\"Groot\"],\"kECVpo\":[\"Weet je zeker dat je dit label wilt verwijderen?\"],\"kQwvU8\":[\"heeft een label van de kaart verwijderd\"],\"kSxwQL\":[\"Je kunt teamleden uitnodigen door op de knop \\\"Uitnodigen\\\" in de rechterbovenhoek van de <0>ledenpagina te klikken en hun e-mailadres in te voeren. Ze ontvangen een e-mail met een link om lid te worden van de werkruimte.\"],\"kYu0eF\":[\"Workspace verwijderen\"],\"kfOGMr\":[\"Quick win\"],\"klpSmb\":[\"Workspace-URL bewerken\"],\"kp6L3T\":[\"Deze workspace-gebruikersnaam is al in gebruik\"],\"kryGs+\":[\"Kaart\"],\"kuoc68\":[\"€10/maand\"],\"kxEs5t\":[\"Trello-imports\"],\"l2PIAy\":[\"Zelf hosten met Github\"],\"l31EoQ\":[\"Vind antwoorden op veelgestelde vragen over Kan. Kun je niet vinden wat je zoekt? Neem gerust <0>contact met ons op.\"],\"l3s5ri\":[\"Importeren\"],\"l4asa1\":[\"Dit bord is privé of bestaat niet\"],\"lGjicL\":[\", of bekijk onze\"],\"lKAvEd\":[\"Fout bij loskoppelen Trello\"],\"lXvXNI\":[\"Uitnodigingslink kopiëren mislukt\"],\"lYT7pQ\":[\"Lijst verwijderen\"],\"lkz85l\":[\"Het belangrijkste verschil tussen Kan en Trello is dat Kan open source is, waardoor iedereen onze code kan bekijken, aanpassen en eraan kan bijdragen. Ons cloudaanbod biedt ook geen beperkingen op functies voor individueel gebruik, terwijl Trello basisfuncties zoals het aantal borden dat je kunt maken achter een betaalmuur plaatst.\"],\"lo8xBK\":[\"Weet je zeker dat je \",[\"entityLabel\"],\" wilt verwijderen?\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"lsgnzd\":[\"Fout bij upgraden naar Pro\"],\"lyqwgn\":[\"Label toevoegen\"],\"m2nk0i\":[\"Eenvoudige prijzen\"],\"mErq7F\":[\"Registreren\"],\"mHhffx\":[\"Kan checklist niet aanmaken\"],\"mTGd3+\":[\"heeft een checklist verwijderd\"],\"mTwGOf\":[\"Deze uitnodigingslink is ongeldig of verlopen.\"],\"mU+M00\":[[\"0\"],\" is toegevoegd aan je favorieten.\"],\"mVZH9V\":[\"Toen Trello in 2011 werd gelanceerd, blies het iedereen omver met zijn zorgvuldig ontworpen eenvoud, maar door de jaren heen verloor het zijn magie en groeide het uit tot iets dat meer leek op \\\"Jira Lite\\\". Dit project is onze poging om de oorspronkelijke magie van Trello's eenvoud te heroveren, in open source.\"],\"mZGPxt\":[\"Uitnodigingslink gekopieerd naar klembord\"],\"mchgzf\":[\"Je bent succesvol geregistreerd.\"],\"mgXgHu\":[\"Ga naar borden\"],\"mrhyIB\":[\"Perfect voor kleine en groeiende teams die willen samenwerken.\"],\"mwBdZ2\":[\"Dit resulteert in de permanente verwijdering van alle gegevens die aan je account zijn gekoppeld.\"],\"mx8+1u\":[\"Onbeperkt leden\"],\"n+xLOH\":[\"Klantenondersteuning\"],\"n1GRql\":[\"Nieuw label\"],\"n1ekoW\":[\"Inloggen\"],\"n6EWYz\":[\"Wordt gebruikt om webhook-payloads te ondertekenen voor verificatie. Laat leeg om het bestaande geheim te behouden.\"],\"n9V+ps\":[\"Voer je naam in\"],\"nKBUeF\":[\"De kaart is gedupliceerd.\"],\"nOhz3x\":[\"Uitloggen\"],\"nYNMZZ\":[\"Positie in lijst (0 = eerste, leeg laten voor het einde)\"],\"nabda1\":[\"Kaart verwijderen\"],\"nbfdhU\":[\"Integraties\"],\"ngBZOd\":[\"Voeg opmerking toe... (typ '/' om commando's te openen of '@' om te vermelden)\"],\"nhMhRr\":[\"Bedankt voor je feedback!\"],\"njJFtc\":[\"Reactie verwijderen\"],\"nk7caK\":[\"Verbind Trello\"],\"nol/Fb\":[\"Hoe nodig ik teamleden uit?\"],\"notwF1\":[\"Sjabloonnaam mag niet meer dan 100 tekens bevatten\"],\"nq7q3Z\":[\"API-sleutelnaam mag niet langer zijn dan 30 tekens\"],\"nqdIhs\":[\"Aangepaste bordsjablonen\"],\"nryrgW\":[\"Alle aangepaste rechten van leden zijn teruggezet naar de standaardinstellingen van hun rol.\"],\"o+JCfN\":[\"Vertrouwd door snelle teams<0/>over de hele wereld\"],\"o4e/70\":[\"Selecteer minimaal één gebeurtenis\"],\"o4sQAg\":[\"Webhook aanmaken mislukt\"],\"o7J4JM\":[\"Filter\"],\"o8adVG\":[\"10 MB bestandsuploads\"],\"o9WLwO\":[\"Kan kaart niet bijwerken\"],\"oVBq1w\":[\"per gebruiker/maand\"],\"oW13KZ\":[\"Ga vandaag gratis aan de slag\"],\"odFCYX\":[\"Ongeldige uitnodiging\"],\"okpxfB\":[\"Maak nieuwe sleutel\"],\"oyRjD/\":[\"Pro-abonnement\"],\"p/hk9N\":[\"Je bent succesvol ingelogd.\"],\"pBsoKL\":[\"Toevoegen aan favorieten\"],\"pFGfsR\":[\"Bekijk enkele van onze favoriete open source-projecten.\"],\"pFKC6A\":[\"API-sleutelnaam\"],\"pL78ec\":[\"Toegevoegd aan favorieten\"],\"pVctI7\":[\"On-premise implementatieoptie\"],\"pXVFJy\":[\"Kan boards verwijderen\"],\"pa9o5D\":[\"Bijsnijden van je avatar\"],\"pfa8F0\":[\"Weergavenaam\"],\"pmUArF\":[\"Workspace\"],\"pnrmSP\":[\"Nieuwe kaart\"],\"ppaRWv\":[\"Zelf hosten\"],\"pvnfJD\":[\"Donker\"],\"q+lt9D\":[\"Fout bij verwijderen label\"],\"q3il6U\":[\"Lettergrootte\"],\"qPP4lD\":[\"Leden uitnodigen vereist een Team-abonnement. Je wordt doorgestuurd om je workspace te upgraden.\"],\"qQXocp\":[\"Kan workspace-instellingen beheren\"],\"qaS+1/\":[\"Het beste voor teams die onbeperkt willen schalen\"],\"qfUS/w\":[\"Open source vrienden\"],\"qkjvgj\":[\"Je werkruimte is verwijderd.\"],\"qlAIQ1\":[\"Op afstand\"],\"qtE5nt\":[\"Voeg een item toe...\"],\"qzdST2\":[\"Zichtbaarheid van board\"],\"r6BgwX\":[\"Wachtwoord is vereist om in te loggen.\"],\"rD6UIt\":[\"Ga aan de slag op Cloud\"],\"rF8SEQ\":[\"Reactie bewerken\"],\"rQRXo8\":[\"Voer nieuw geheim in om bij te werken\"],\"rQXTmd\":[\"Kaart-URL gekopieerd naar klembord\"],\"rRM7r0\":[\"Importeer je Trello-borden en ga meteen aan de slag.\"],\"rYUZIe\":[\"Selecteer bron\"],\"raHesj\":[\"Je bent uitgeschreven!\"],\"rarRW/\":[\"Fout bij uitnodigen lid\"],\"ri1hHe\":[\"Verloopt volgende maand\"],\"rmN315\":[\"Leuk\"],\"rs7L54\":[\"heeft een lid aan de kaart toegevoegd\"],\"rtbVvN\":[\"Kan lijsten bewerken\"],\"s+MGs7\":[\"Bronnen\"],\"s6iE/c\":[\"Registratie is momenteel uitgeschakeld. Probeer het later opnieuw.\"],\"sBhOFG\":[\"Eenvoudig, visueel taakbeheer dat gewoon werkt. Sleep kaarten, werk samen met je team en krijg meer gedaan.\"],\"sDLCvT\":[\"Verbind je favoriete tools om je workflow te stroomlijnen.\"],\"sDuhfK\":[\"Lanceringaanbieding: onbeperkt aantal plaatsen voor slechts €29/maand met Pro\"],\"sU2uWc\":[\"Kaart gedupliceerd\"],\"sUZo7y\":[\"Registreren | kan.bn\"],\"sVBn4K\":[\"Fout bij bijwerken van weergavenaam\"],\"sY2lzr\":[\"Geen download-URL beschikbaar voor deze bijlage.\"],\"sbNNyi\":[\"Nieuwe webhook\"],\"snMaH4\":[\"Webhook verwijderen\"],\"t+R8+P\":[\"Uitvoering\"],\"t/YqKh\":[\"Verwijderen\"],\"t0dTPm\":[\"Configureer webhooks om meldingen te ontvangen wanneer kaarten worden aangemaakt, bijgewerkt, verplaatst of verwijderd.\"],\"t2nDzl\":[\"Bekijk en beheer je facturering en abonnement.\"],\"t6FvJH\":[\"Kan opmerkingen toevoegen\"],\"tGwwnq\":[\"heeft de beschrijving bijgewerkt\"],\"tHcbLF\":[\"Kan boards bewerken\"],\"tIdipJ\":[\"Bord-URL bewerken\"],\"tMYIu7\":[\"Activiteitenlogboeken\"],\"tOZp9v\":[\"Configureerbare gebruikersrollen en rechten\"],\"tTbref\":[\"Wachtwoord is vereist om je aan te melden.\"],\"tYN21H\":[\"Gebruiker is al lid van deze workspace\"],\"tbNcu4\":[\"Board gedearchiveerd\"],\"tca56/\":[\"Je bestand is succesvol geüpload.\"],\"tfDRzk\":[\"Opslaan\"],\"tlhgDC\":[\"Geen gearchiveerde boards\"],\"tmlJN1\":[\"Voer een geldige YouTube-URL in\"],\"tmpW+w\":[\"Bord verwijderen\"],\"tst44n\":[\"Gebeurtenissen\"],\"tyHiOa\":[\"Probeer het later opnieuw of neem contact op met klantenservice.\"],\"u2+JIh\":[\"Aangepaste URL's vereisen een upgrade naar een Pro-abonnement\"],\"u8JHrO\":[\"Filters wissen\"],\"uAQUqI\":[\"Status\"],\"uEGGDs\":[\"Mijn webhook\"],\"uOqaMC\":[\"Je bent uitgenodigd om lid te worden van een werkruimte.\"],\"uP4V6I\":[\"Gratis voor iedereen\"],\"uXGLuq\":[\"Maak API-sleutel\"],\"uZg2+w\":[\"Geef je workspace een boost voor slechts €29/maand. Dit krijg je:\"],\"uck1tz\":[\"heeft een lid van de kaart verwijderd\"],\"usVytm\":[\"Zodra je je account verwijdert, is er geen weg terug. Deze actie kan niet ongedaan worden gemaakt.\"],\"uvH2xS\":[\"Leden kopiëren\"],\"v+Wp++\":[\"Open source\"],\"v1kQyJ\":[\"Webhooks\"],\"v3YoMA\":[\"Senior\"],\"vAR/I8\":[\"Draai op je eigen infrastructuur\"],\"vAj6xG\":[\"Je kunt zelf hosten door de instructies in onze <0>repo te volgen.\"],\"vSJd18\":[\"Video\"],\"vUr5JT\":[\"Nog geen account? <0><1>Registreren\"],\"vXIe7J\":[\"Taal\"],\"vXemf6\":[\"Bug\"],\"va/3u1\":[\"Bepaal wie je borden kan bekijken en bewerken.\"],\"vbskQn\":[\"API-sleutelnaam is verplicht\"],\"veIDCY\":[\"Start 14 dagen gratis proefperiode\"],\"vfRdCZ\":[\"Kan machtigingen niet resetten\"],\"vgdzLf\":[\"Maak nog een\"],\"vifyyw\":[\"Juridisch\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"De rechten van dit lid zijn teruggezet naar de standaardinstellingen van hun rol.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"maandelijkse facturering\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Lange termijn\"],\"vwGkYB\":[\"Wachtwoord moet minimaal 8 tekens bevatten\"],\"wIb7Ng\":[\"Softwareontwikkeling\"],\"wK4OTM\":[\"Titel (optioneel)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Selecteer een bestand om te uploaden.\"],\"wY+6Ye\":[\"Deze bord-URL is al in gebruik\"],\"wakO3W\":[\"heeft checklist <0>\",[\"0\"],\" toegevoegd\"],\"wewm3j\":[\"Bordnaam mag niet meer dan 100 tekens bevatten\"],\"wgNoIs\":[\"Alles selecteren\"],\"wlQNTg\":[\"Leden\"],\"wqkcin\":[\"Kan reacties bekijken\"],\"wqxglO\":[\"Leren\"],\"wruKPE\":[\"Ondersteun de ontwikkeling van het project\"],\"wsy94z\":[\"Het beste voor grote organisaties met geavanceerde behoeften\"],\"wtxjAY\":[\"Workspace-leden\"],\"x0kMO/\":[\"Fout bij bijwerken van werkruimte-URL\"],\"x8GeCD\":[\"Weergavenaam bijgewerkt\"],\"xEbBrW\":[\"Welke licentie gebruik je?\"],\"xGVfLh\":[\"Doorgaan\"],\"xLTZVf\":[\"Eerste dag van de week\"],\"xMn+V9\":[\"Importeren vanuit Trello\"],\"xRPn3U\":[\"Voer je e-mailadres in\"],\"xvcYhz\":[\"Wis alle aangepaste ledenrechten zodat alle leden alleen rechten erven van hun standaard rolrechten.\"],\"y3aU20\":[\"Wijzigingen opslaan\"],\"yD3ZSw\":[\"Wijzig je taalvoorkeuren.\"],\"yV7o5I\":[\"Hoe importeer ik mijn Trello-borden?\"],\"yb/fjw\":[\"Goedkeuring\"],\"yhLUU8\":[\"Fout bij verbinden met GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Project importeren (1)\"],\"other\":[\"Projecten importeren (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Sluiten\"],\"zC8Whw\":[\"Ga aan de slag door een nieuwe lijst te maken\"],\"zERArS\":[\"heeft de titel bijgewerkt naar <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Maak uitnodigingslink\"],\"zMlxCA\":[\"1 gebruiker\"],\"zMquA7\":[\"Kies een abonnement\"],\"zQPhSa\":[\"Converteer naar link\"],\"zQX5Dj\":[\"Lijstnaam\"],\"zYRVNp\":[\"Selecteer een lijst\"],\"zkWmBh\":[\"Jaarlijks\"],\"zl1b97\":[\"Kan kaart niet aanmaken\"],\"zoEbXq\":[\"Kan kaarten bekijken\"],\"zt/6cS\":[\"Het beste voor kleine teams die willen samenwerken en sneller vooruit willen komen.\"],\"zto8aj\":[\"Trello losgekoppeld\"],\"zwBp5t\":[\"Privé\"],\"zwTiVn\":[\"heeft een bijlage verwijderd <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Meer informatie\"],\"zxKs+y\":[\"Verloopt morgen\"],\"zzDlyQ\":[\"Succes\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Social media\"],\"+3TYXa\":[\"Voor duurzaamheid op lange termijn erkennen we dat alle goede open source projecten een bron van inkomsten nodig hebben. De onze komt van het betaalde cloudaanbod voor werkruimtes met meerdere gebruikers en voor aangepaste werkruimte-slugs. Er is geen verplichting om het te gebruiken, en je kunt de software gratis op je eigen infrastructuur hosten.\"],\"+5kO8P\":[\"Zaterdag\"],\"+8Nek/\":[\"Maandelijks\"],\"+EkBs0\":[\"We konden je voorkeuren niet bijwerken. Probeer het opnieuw.\"],\"+MdEsf\":[\"Nieuw wachtwoord is verplicht\"],\"+OhFss\":[\"Ga gratis aan de slag, zonder gebruikslimieten. Voor samenwerking kun je upgraden naar een abonnement dat past bij de grootte van je team.\"],\"+VoTOr\":[\"maandelijks gefactureerd\"],\"+djOzj\":[\"Lid uitnodigen\"],\"+h2faV\":[\"Instellingen | Webhooks\"],\"+jbXzb\":[\"Je projecten zijn geïmporteerd.\"],\"+nvZ6j\":[\"Labels & filters\"],\"/8pTF/\":[\"werkruimte-url\"],\"/K2CvV\":[\"Sjabloon\"],\"/asTmx\":[\"Bugrapport\"],\"/bBVaD\":[\"GitHub losgekoppeld\"],\"/bZzdR\":[\"Vermeldingen\"],\"/f3t6v\":[\"Configureer welke acties zijn toegestaan voor elke werkruimterol. Deze rechten gelden voor alle leden met die rol.\"],\"/gaSVU\":[\"Roadmap\"],\"/glL9Q\":[\"Geen \",[\"0\"]],\"/jd3aj\":[\"Geavanceerde beheerdersrollen\"],\"/lDBHm\":[\"Veelgestelde vragen\"],\"/rn4RE\":[\"Een krachtige, flexibele kanban-app die je helpt werk te organiseren, voortgang bij te houden en resultaten te leveren—allemaal op één plek.\"],\"/tOdd2\":[\"Je profielafbeelding is bijgewerkt.\"],\"0+0/3e\":[\"Maak nieuw label\"],\"0+ewPp\":[\"Verbetering\"],\"02i3WU\":[\"Imports\"],\"06EQqT\":[\"Dupliceren…\"],\"09Tv5j\":[\"Reconnecting…\"],\"0AfkMq\":[\"Your role changed in\"],\"0KjpAr\":[\"Kan leden bekijken\"],\"0RE1AJ\":[\"Boards die je archiveert verschijnen hier.\"],\"0StR7t\":[\"Voer je nieuwe wachtwoord in\"],\"0jV46i\":[\"Kan checklistitem niet verwijderen\"],\"0qyZ4b\":[\"Machtigingen laden...\"],\"0rPv1T\":[\"Profielafbeelding bijgewerkt\"],\"0utuU6\":[\"Checklists kopiëren\"],\"0xD8Of\":[\"De pagina die je zoekt bestaat niet of is verplaatst.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Bord importeren (1)\"],\"other\":[\"Borden importeren (\",[\"boardCount\"],\")\"]}]],\"11dHnN\":[\"You were removed from\"],\"14Xi3Z\":[\"Het toevoegen van een nieuw lid kost \",[\"price\"],\" (\",[\"billingType\"],\") extra per seat.\"],\"1H5u1m\":[\"Vragen?\"],\"1WuwiM\":[\"Ga naar instellingen\"],\"1bJKhj\":[\"Link naar kaart kopiëren\"],\"1hzdxO\":[\"Werkruimte-rechten\"],\"1iShX0\":[\"Verloopt vandaag\"],\"1njn7W\":[\"Licht\"],\"1rVAfU\":[\"Meer activiteiten laden\"],\"1rWxEw\":[\"Wacht op klant\"],\"1sRmLC\":[\"Bespreek en werk samen aan kaarten.\"],\"1wCGT0\":[\"Onbeperkt aantal borden\"],\"25fAUC\":[\"Je afmeldlink mist een token. Open de nieuwste e-mail en probeer het opnieuw.\"],\"25mvI+\":[\"Uitnodigingslinks vereisen een Team- of Pro-abonnement. Upgrade je workspace.\"],\"29sSki\":[\"heeft checklistitem <0>\",[\"0\"],\" voltooid\"],\"2BBAbc\":[\"Lijst\"],\"2Bu8xj\":[\"Geen borden gevonden\"],\"2M84k3\":[\"Aangepaste rechten\"],\"2MPcep\":[\"Import voltooid\"],\"2POOFK\":[\"Gratis\"],\"2Py5S/\":[\"Ik bevestig dat alle werkruimtegegevens permanent worden verwijderd en wil doorgaan.\"],\"2Q871c\":[\"Kan label niet toevoegen\"],\"2QGEbi\":[\"Kan opmerking niet verwijderen\"],\"2SePRT\":[\"Je bent uitgenodigd om lid te worden van een werkruimte op kan.bn.\"],\"2X4ecw\":[\"Webhook succesvol verwijderd\"],\"2h4PVB\":[\"Je werkruimtenaam is bijgewerkt.\"],\"2liqDZ\":[\"Ik bevestig dat al mijn accountgegevens permanent worden verwijderd en wil doorgaan.\"],\"2q/Q7x\":[\"Zichtbaarheid\"],\"2roTVj\":[\"Feedback verzonden\"],\"3LDCpD\":[\"Deze actie kan niet ongedaan worden gemaakt.\"],\"3WXdoZ\":[\"Je kunt dit later altijd wijzigen in de instellingen.\"],\"3ZjRJY\":[\"heeft checklist <0>\",[\"0\"],\" hernoemd\"],\"3bqt9U\":[\"Iedereen met deze link kan lid worden van je werkruimte\"],\"3d54Wj\":[\"Webhook succesvol bijgewerkt\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"GitHub verbinden\"],\"3pIq39\":[\"Beheerdersrollen\"],\"4630Pc\":[\"Card updated\"],\"479pdJ\":[\"Bevestig je nieuwe wachtwoord\"],\"4DOCMI\":[\"YouTube-URL\"],\"4Revpc\":[\"Klein\"],\"4RoY9J\":[\"Blogpost\"],\"4XF0BB\":[\"Profielfoto\"],\"4gAX8s\":[\"Menu in-/uitschakelen\"],\"4kJRen\":[\"Schrijven\"],\"4obmDr\":[\"404 - Pagina niet gevonden | kan.bn\"],\"4sxGcV\":[\"You were assigned to a card\"],\"51UCsN\":[\"Verplaats naar andere lijst\"],\"53QYh8\":[\"Bord aanmaken mislukt\"],\"55xJ/O\":[\"Fout bij wijzigen wachtwoord\"],\"58AiWX\":[\"Bevestig je nieuwe wachtwoord\"],\"5ACX4z\":[\"Nieuwsbrief\"],\"5IXWmO\":[\"Controleer je inbox\"],\"5P4rhH\":[\"Kan leden niet bijwerken\"],\"5RkSzq\":[\"Kopieer bordlink\"],\"5eZwRW\":[\"Verbind je Trello-account om boards te importeren.\"],\"5h8ooz\":[\"API-sleutels\"],\"5iplxh\":[\"Nieuw wachtwoord moet verschillen van het huidige wachtwoord\"],\"5k0NLb\":[\"Beoordeling\"],\"5lWFkC\":[\"Inloggen\"],\"5ntVtp\":[\"Webhook testen mislukt\"],\"5y6qY8\":[\"heeft een bijlage toegevoegd\"],\"69b7aE\":[\"Commandomenu openen\"],\"6EWT6T\":[\"Recruitment\"],\"6FDocz\":[\"Registreren met \"],\"6FsGbN\":[\"Ga aan de slag door een nieuwe \",[\"0\"],\" te maken\"],\"6OTo9n\":[\"Sjabloonnaam is verplicht\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Nieuwe \",[\"0\"]],\"6YtxFj\":[\"Naam\"],\"6mbe4b\":[\"Individuen\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"De rechten van het lid zijn bijgewerkt.\"],\"6uBU1F\":[\"Volledige API-toegang\"],\"6zeSBB\":[\"Kan kaarten aanmaken\"],\"74F7N/\":[\"Weet je zeker dat je je account wilt verwijderen?\"],\"7EhE4k\":[\"Label bijwerken\"],\"7L01XJ\":[\"Acties\"],\"7PzzBU\":[\"Gebruiker\"],\"7Qqqyu\":[\"New comment on\"],\"7RpHg/\":[\"Aangepaste gebruikersnaam\"],\"7Ufoyg\":[\"Onbeperkt lijsten\"],\"7aONWr\":[\"URL mag niet langer zijn dan 2048 tekens\"],\"7b2yuC\":[\"Voer een geldig wachtwoord in\"],\"7d1a0d\":[\"Openbaar\"],\"7eMo+U\":[\"Ga naar home\"],\"7hktsm\":[\"Aan de slag\"],\"7i8j3G\":[\"Bedrijf\"],\"8+BY11\":[\"Board-URL gekopieerd naar klembord\"],\"86FLn5\":[\"Onbeperkt bestandsuploads\"],\"86XI28\":[\"Bevestig je e-mailvoorkeuren:\"],\"8AbRER\":[\"Vervaldatum instellen\"],\"8AwlaR\":[\"Onbeperkt aantal leden en een aangepaste werkruimte-URL voor teams die klaar zijn om te groeien.\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"8Is1ih\":[\"Lanceringaanbieding\"],\"8RdLDU\":[\"Persoonlijk project\"],\"8TveY+\":[\"Boards\"],\"8Z4pNX\":[\"Kan lijsten aanmaken\"],\"8iP0S8\":[\"Alles in het gratis abonnement, plus:\"],\"8iP9oQ\":[\"Webhook-test mislukt\"],\"8yFGGF\":[\"Kan lid niet verwijderen\"],\"99VIgC\":[\"Lid verwijderen\"],\"9HDx2Z\":[\"You were mentioned in\"],\"9PaIxv\":[\"Kernfuncties\"],\"9Xigls\":[\"In behandeling\"],\"9YPBHv\":[\"Webhook verwijderen mislukt\"],\"9cDpsw\":[\"Toestemmingen\"],\"9eF5oV\":[\"Welkom terug\"],\"9h7RDh\":[\"Aanbieding\"],\"9lFfqv\":[\"/maand\"],\"9s9O5h\":[\"Fout bij verwijderen werkruimte\"],\"9u5BOr\":[\"Leden | \",[\"0\"]],\"9wdpwp\":[\"Facturatieportaal\"],\"9x4DAL\":[[\"0\"],\" niet gevonden\"],\"9y1RcT\":[\"We zijn net begonnen.\"],\"A23Y7X\":[\"Deelnemen aan workspace | kan.bn\"],\"A42Dqn\":[\"Aangepaste branding\"],\"A5hiCy\":[\"Maak sjabloon\"],\"A8jqN7\":[\"Kan feedback niet verzenden\"],\"ABCjd9\":[\"Publiceren\"],\"ADEin1\":[\"Instellingen | Facturering\"],\"ALhEZV\":[\"Kan leden uitnodigen\"],\"ANyn0x\":[\"Alles wat je nodig hebt, voor altijd gratis. Onbeperkt borden, onbeperkt lijsten, onbeperkt kaarten. Upgrade wanneer je maar wilt.\"],\"ARvBT/\":[\"jaarlijks gefactureerd\"],\"ASjvm9\":[\"Werkruimte-URL\"],\"AUYALh\":[\"Binnenkort beschikbaar\"],\"AX4ktp\":[\"Content creatie\"],\"AZI/wb\":[\"Labels & filters\"],\"AdxYds\":[\"Je GitHub-account is ontkoppeld.\"],\"AeXO77\":[\"Account\"],\"Alp2ti\":[\"Neem contact op met sales\"],\"Ax/hYa\":[\"Workspace-beschrijving mag niet meer dan 280 tekens bevatten\"],\"B3xxao\":[\"Kaart toevoegen\"],\"BBUDfW\":[\"Urgent\"],\"BEVzjL\":[\"Import mislukt\"],\"BJbLe4\":[\"We gebruiken de <0>AGPL-3.0-licentie.\"],\"BMkVQ3\":[\"heeft checklist <0>\",[\"0\"],\" verwijderd\"],\"BOqTi5\":[\"heeft de kaart verplaatst van <0>\",[\"0\"],\" naar <1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Kaart dupliceren\"],\"BZkYSt\":[\"heeft \",[\"0\"],\" labels verwijderd: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Weet je zeker dat je de werkruimte \",[\"0\"],\" wilt verwijderen?\"],\"Bhgd0l\":[\"Neem contact met ons op\"],\"BzEFor\":[\"of\"],\"C56tim\":[\"Kan vervaldatum niet bijwerken\"],\"C6gv54\":[\"Het board is gedearchiveerd.\"],\"CAL6E9\":[\"Teams\"],\"CB/NpV\":[\"Hoge prioriteit\"],\"CHZ1jC\":[\"heeft checklistitem <0>\",[\"0\"],\" verwijderd\"],\"CJ3zUq\":[\"Voer een geldige naam in\"],\"CJWDTP\":[\"Je Trello-account is losgekoppeld.\"],\"CJukzS\":[[\"0\"],\" labels\"],\"CTqTgr\":[\"Sneltoetsen\"],\"CYWHT+\":[\"Fout bij uploaden van profielafbeelding\"],\"Cb5YSG\":[\"You were added to\"],\"Cd4sTD\":[\"Het beste voor individuen en solo-makers die aan de slag gaan\"],\"Ci/KUX\":[\"Instellingen | Werkruimte\"],\"CkVV1t\":[\"Fout bij bijwerken van werkruimtebeschrijving\"],\"Cmudpi\":[\"Kan workspace verwijderen\"],\"CozWO1\":[\"Workspace-naam\"],\"CujNX4\":[\"heeft een bijlage toegevoegd <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"Systeem\"],\"D0esZz\":[\"Activiteitenlogboek\"],\"D3C4Yx\":[\"Huidig wachtwoord is verplicht\"],\"D7/JvJ\":[\"Pas de vierkante uitsnede aan zodat deze bij je avatar past.\"],\"D9ROdV\":[\"Uitnodigingslinks\"],\"DAV3uK\":[\"Toestemmingen bijgewerkt\"],\"DBC3t5\":[\"Zondag\"],\"DFjdv0\":[\"Sjabloon verwijderen\"],\"DMeWZD\":[\"Weet je zeker dat je deze \",[\"0\"],\" wilt verwijderen?\"],\"DPfwMq\":[\"Klaar\"],\"DSGzV+\":[\"Werkruimte-gebruikersnaam\"],\"DahTzR\":[\"Kan checklist niet verwijderen\"],\"DbZgsJ\":[\"Sjabloon maken\"],\"DtXlZq\":[\"Kan checklist niet bijwerken\"],\"Dz63YI\":[\"Er is een fout opgetreden bij het loskoppelen van je GitHub-account.\"],\"E0t3jO\":[\"heeft checklist-item <0>\",[\"0\"],\" toegevoegd\"],\"E6wBCJ\":[\"Prijzen per gebruiker\"],\"E8zYtd\":[\"heeft <0>\",[\"0\"],\" van de kaart verwijderd\"],\"ECJKc4\":[\"API-sleutel aangemaakt\"],\"EEHmPC\":[\"Lanceringaanbieding: onbeperkt leden met Pro\"],\"EH8IL3\":[\"Checklists\"],\"EII/X8\":[\"Alle Teams-functies +\"],\"ERpq2P\":[\"Geen resultaten gevonden voor \\\"\",[\"debouncedQuery\"],\"\\\".\"],\"ESClHO\":[\"Prioritaire e-mailondersteuning\"],\"EYpSRU\":[\"You were added to a workspace\"],\"Eg99Sc\":[\"Er zijn momenteel geen authenticatiemethoden beschikbaar\"],\"Eit43O\":[\"heeft de vervaldatum ingesteld\"],\"EkH9pt\":[\"Bijwerken\"],\"EvArWh\":[\"Werk naadloos samen met je team.\"],\"F/FPk/\":[\"Instellingen | Rechten\"],\"F/vB2g\":[\"Ideeën om deze pagina te verbeteren...\"],\"F0YmUY\":[\"Kopieer kaartlink\"],\"F3bW6y\":[\"Platform\"],\"F4KRmY\":[\"€8/maand\"],\"F4PLG4\":[\"Workspace-beschrijving bijgewerkt\"],\"F6m23G\":[\"Bestandsuploads\"],\"F6pfE9\":[\"Actief\"],\"F8DaWi\":[\"Alleen bekijken\"],\"FEr96N\":[\"Thema\"],\"FdtSNC\":[\"Maak werkruimte\"],\"FmN5me\":[\"Resolutie\"],\"FmfJjN\":[\"Bekijk en beheer je API-sleutels.\"],\"Fpci8b\":[\"Weet je zeker dat je deze checklist wilt verwijderen?\"],\"G1Gw0v\":[\"Nieuwe sjabloon\"],\"GAD3Dx\":[\"Aangepast domein\"],\"GDvlUT\":[\"Rol\"],\"GKeVeM\":[\"Your role was changed\"],\"GRAGsB\":[\"Jouw werkruimte\"],\"GYv20o\":[\"Kan machtigingen niet bijwerken\"],\"GdWB+V\":[\"Webhook succesvol aangemaakt\"],\"GnRmu4\":[\"Checklistnaam\"],\"GnSSGm\":[\"Je werkruimtebeschrijving is bijgewerkt.\"],\"GoDLB9\":[\"Je account is verwijderd.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Uitgebreide roadmap\"],\"Gxxi5J\":[\"Checklist toevoegen\"],\"H5G+qG\":[\"Wat is het verschil tussen Kan en Trello?\"],\"HBI6nY\":[\"Hulp nodig?\"],\"HO+uOC\":[\"Triëren\"],\"HQVm6e\":[\"Deze URL is al in gebruik\"],\"HVIzNO\":[\"Kan lijsten bekijken\"],\"HYV6Lq\":[\"Uitnodiging accepteren mislukt. Probeer het later opnieuw of neem contact op met klantenservice.\"],\"HbXReU\":[\"No notifications yet\"],\"HcT8J4\":[\"Je GitHub-account is gekoppeld.\"],\"HeFWjW\":[\"Volgende stappen\"],\"Hf1cEZ\":[\"Webhook-URL is verplicht\"],\"Hg1qE9\":[\"Je werkruimte-slug is bijgewerkt.\"],\"I+AROe\":[\"Kan kaarten bewerken\"],\"I0gAKM\":[\"Kan lijst niet bijwerken\"],\"IDvohQ\":[\"heeft een checklistitem als onvolledig gemarkeerd\"],\"IFgUX6\":[\"Kan leden verwijderen\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Upgrade naar Pro\"],\"Iqh0Uv\":[\"Gepland\"],\"IqjpYe\":[\"E-mailzichtbaarheid\"],\"IrZaAn\":[\"Wachtwoord gewijzigd\"],\"It4/FS\":[\"Board dearchiveren\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Ga verder met \"],\"J4+OTA\":[\"Verplaats naar lijst\"],\"J5nbej\":[\"Kritiek\"],\"J5pbP6\":[\"Kan rollen en rechten van leden bewerken\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JBaoDB\":[[\"overflow\"],\" more viewers\"],\"JCdzgZ\":[\"Functieverzoek\"],\"JUce1S\":[\"Toegewezen aan\"],\"JbXXUW\":[\"Houd er rekening mee dat deze actie onomkeerbaar is.\"],\"JcCDm9\":[\"Sjabloon aangemaakt\"],\"Jgaz7E\":[\"Toestemmingen gereset\"],\"JjEJSy\":[\"Stel je werkruimte in\"],\"JnWJXY\":[\"magische link\"],\"JxhWxU\":[\"in\"],\"JyXBgS\":[\"docs\"],\"K3iLeO\":[\"Bekijk wat onze gebruikers over Kan zeggen\"],\"K4xHKu\":[\"New comment on a card\"],\"K7k9u3\":[\"Kan kaart niet verplaatsen\"],\"KAsRdK\":[\"Ga naar leden\"],\"KEim/+\":[\"heeft een bijlage verwijderd\"],\"KFJgmZ\":[\"Weergavenaam moet minimaal 3 tekens lang zijn\"],\"KLJ4eD\":[\"Uitnodigingslink gekopieerd\"],\"KM6m8p\":[\"Team\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Geavanceerde beheerdersinstellingen\"],\"KiVc+q\":[\"Fulltime\"],\"KuSt9W\":[\"Hoe host ik zelf?\"],\"L5WQLg\":[\"Token is vereist\"],\"L5ZPjz\":[\"heeft een checklistitem bijgewerkt\"],\"LTGE7Y\":[\"Workspace succesvol aangemaakt. Je kunt later upgraden in de instellingen.\"],\"LeM5RY\":[\"Kan overschrijvingen niet wissen\"],\"LoUCpj\":[\"Fout bij bijwerken van werkruimtenaam\"],\"LqWW5F\":[\"Je weergavenaam is bijgewerkt.\"],\"LrcnbT\":[\"Host Kan op je eigen infrastructuur. Ideaal voor organisaties die volledige controle over hun data nodig hebben.\"],\"Lt+ZP3\":[\"heeft een checklistitem voltooid\"],\"M9p3Vw\":[\"Onbeperkt activiteitenlogboek\"],\"MCIXdZ\":[\"Verbind je GitHub-account om projecten te importeren.\"],\"MFKlMB\":[\"Uitnodigen\"],\"MHrjPM\":[\"Titel\"],\"MI5OBT\":[\"URL mag alleen letters, cijfers en koppeltekens bevatten\"],\"MK16u2\":[\"Geen datums\"],\"MKAScN\":[\"Kan borden bekijken\"],\"MN6YzG\":[\"Werkruimte-slug bijgewerkt\"],\"MWrbWq\":[\"Instellingen | Account\"],\"MdN5zD\":[\"Je moet een beheerder zijn om werkruimte-rechten te beheren.\"],\"MdwUGG\":[\"Bespaar tijd met herbruikbare bordsjablonen.\"],\"MeO/vH\":[\"Dit resulteert in de permanente verwijdering van alle gegevens die aan deze workspace zijn gekoppeld.\"],\"MlyjJu\":[\"Weergavenaam mag niet meer dan 280 tekens bevatten\"],\"MxQXhL\":[\"Kan workspace niet aanmaken\"],\"N/bcWA\":[\"Inloggen | kan.bn\"],\"N3380t\":[\"Kan boards aanmaken\"],\"N7aud6\":[\"Intelligent zoeken\"],\"NH54UR\":[\"heeft checklistitem hernoemd naar <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"Het board is gearchiveerd.\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"NnH3pK\":[\"Test\"],\"NoNwIX\":[\"Inactief\"],\"NypLoL\":[\"heeft een checklist hernoemd\"],\"O0li0W\":[\"Voer je huidige wachtwoord in en kies een nieuw veilig wachtwoord.\"],\"O1wAlQ\":[\"Gast\"],\"O3oNi5\":[\"E-mail\"],\"O83K21\":[\"heeft een checklist-item toegevoegd\"],\"O9jVbx\":[\"Lage prioriteit\"],\"OAYToL\":[\"Dit verwijdert alle aangepaste lidrechten in deze workspace. Leden erven alleen rechten van hun rollen.\"],\"OIA0ad\":[\"Werkruimtenaam bijgewerkt\"],\"OTxjpR\":[\"jouw-werkruimte\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"GitHub loskoppelen\"],\"Oi+J+N\":[\"Kies een abonnement om te beginnen. Alle betaalde abonnementen hebben een gratis proefperiode van 14 dagen.\"],\"OkTY4+\":[\"Geheim mag niet meer dan 512 tekens bevatten\"],\"Oo4E6p\":[\"Kan kaart niet dupliceren\"],\"OpNhRn\":[\"Geen creditcard vereist\"],\"OtjenF\":[\"Voer een geldig e-mailadres in\"],\"OvoEq7\":[\"Lid\"],\"OwneeH\":[\"Aangepaste workspace-gebruikersnaam\"],\"Ozt2vv\":[\"Je wachtwoord is gewijzigd.\"],\"P6dJdq\":[\"Overschrijvingen gewist\"],\"P8Cunr\":[\"Standaard gebruikersnaam\"],\"PCIlOO\":[\"Lid toevoegen\"],\"PELbXB\":[\"Je GitHub-account is gekoppeld.\"],\"PRjvDT\":[\"Weet je zeker dat je deze opmerking wilt verwijderen?\"],\"PRofO0\":[\"YouTube-video bewerken\"],\"PTzsxH\":[\"Zichtbaarheid van board bijgewerkt\"],\"PVT7q7\":[\"GitHub verbonden\"],\"PZCqeW\":[\"Probeer het later opnieuw.\"],\"Pat4r8\":[\"Basis roadmap\"],\"PpZkda\":[\"Functies\"],\"PyYD/v\":[\"heeft <0>\",[\"0\"],\" aan de kaart toegewezen\"],\"Q60WUZ\":[\"Kan afrekenen niet starten\"],\"Q9pQaX\":[\"Nog geen rollen gevonden voor deze workspace.\"],\"QD8opX\":[\"Bord\"],\"QHhZeE\":[\"Sjabloon succesvol aangemaakt\"],\"QNtP5M\":[\"Template gebruiken\"],\"Qh7QmR\":[\"Verwijderd uit favorieten\"],\"QnzD50\":[\"On-premise\"],\"QtACvI\":[\"Maak label\"],\"Qtzfdk\":[\"Pro-abonnement ∞\"],\"R+w/Va\":[\"Facturering\"],\"R1c3Mq\":[\"Bordnaam is verplicht\"],\"R275Pz\":[\"Je hebt onbeperkt aantal plaatsen met je Pro Plan. Er zijn geen extra kosten voor nieuwe leden!\"],\"R3FsF4\":[\"Download mislukt\"],\"R41XLH\":[\"Webhook bijwerken mislukt\"],\"R6pB8R\":[\"Star op Github\"],\"RHZu7R\":[\"Geliefd bij teams wereldwijd\"],\"RJA+sg\":[\"Nieuw ticket\"],\"RRn9jf\":[\"Klik op de link die we naar \",[\"magicLinkRecipient\"],\" hebben gestuurd om in te loggen.\"],\"RSGOS1\":[\"Kan lijsten verwijderen\"],\"RfgJqw\":[\"heeft de deadline bijgewerkt\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Feedback versturen\"],\"RtlIYB\":[\"Je staat op het punt je wachtwoord te wijzigen.\"],\"RzxgOE\":[\"Rollen en machtigingen\"],\"SFnH1j\":[\"Waarom een open source Trello maken?\"],\"SMaFdc\":[\"Uitschrijven\"],\"SNfg0e\":[\"Kan workspace bekijken\"],\"SPLN9O\":[\"Beheer je eigen data\"],\"SRvxId\":[\"HMAC-geheim voor handtekeningverificatie\"],\"STSYcd\":[\"Kan opmerkingen verwijderen\"],\"SUXBxp\":[\"Engineering\"],\"SUvm1Y\":[\"Geschikt voor individuen die net beginnen en alleen de basisbehoeften hebben.\"],\"SWEskc\":[\"URL moet minimaal 3 tekens lang zijn\"],\"Sb2gYF\":[\"Nieuwe lijst\"],\"ScJ9fj\":[\"Privacybeleid\"],\"Se/UIp\":[\"Te doen\"],\"SiPp29\":[\"Webhook aanmaken\"],\"SkCNhl\":[\"Zoek borden en kaarten...\"],\"SlfejT\":[\"Fout\"],\"T/pF0Z\":[\"Verwijderen uit favorieten\"],\"T21jY/\":[\"heeft een label aan de kaart toegevoegd\"],\"T7DJ2k\":[\"Kan opmerking niet toevoegen\"],\"T7LJic\":[\"heeft de kaart naar een andere lijst verplaatst\"],\"T7Mywq\":[\"Kan bord niet bijwerken\"],\"TCOMOO\":[\"Rechten bewerken\"],\"TCt/8K\":[\"Beperkte API-toegang\"],\"TFv5tM\":[\"Kan rol niet bijwerken\"],\"TH3Irz\":[\"Toestemming\"],\"TKFUnX\":[\"Account verwijderd\"],\"TX0bT7\":[\"Geen webhooks geconfigureerd. Voeg een webhook toe om meldingen te ontvangen.\"],\"TXO5TM\":[\"Geen sneltoetsen geregistreerd.\"],\"TYli1B\":[\"Kan opmerkingen bewerken\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Code review\"],\"TdfEV7\":[\"Gearchiveerd\"],\"TjREUS\":[\"Nieuwe API-sleutel\"],\"TmvrjU\":[\"Board-URL moet minimaal 3 tekens lang zijn\"],\"TvY/XA\":[\"Documentatie\"],\"Tz0i8g\":[\"Instellingen\"],\"TztLaN\":[\"Kan lijst niet aanmaken\"],\"U2+rn0\":[\"Webhooknaam is verplicht\"],\"U3pytU\":[\"Beheerder\"],\"U5dMR6\":[\"Bekijk workspace\"],\"UCLeG0\":[\"Servicevoorwaarden\"],\"UGCIzB\":[\"Label toevoegen / bewerken\"],\"UQbwrz\":[\"Alle systemen operationeel\"],\"URAE3q\":[\"Gepauzeerd\"],\"USVCGU\":[\"Fout bij deactiveren uitnodigingslink\"],\"UbRKMZ\":[\"In behandeling\"],\"UbYdrA\":[\"Betalingsfrequentie\"],\"UeDFpo\":[\"Hoe wordt het project gefinancierd?\"],\"UirJfL\":[\"Aangepaste SLA\"],\"UlhdTP\":[\"Workspace verwijderd\"],\"Un80BR\":[\"OSS Friends\"],\"UoSI+i\":[\"Het beste voor kleine en groeiende teams die samenwerking nodig hebben\"],\"UveK6V\":[\"Ga naar app\"],\"Uworke\":[\"Parttime\"],\"UxKoFf\":[\"Navigatie\"],\"V1KOLq\":[\"E-mailmeldingen voor vermeldingen\"],\"V3MPSQ\":[\"heeft de titel bijgewerkt\"],\"V8YRD4\":[\"Viewing now: \",[\"0\"]],\"V8YWP3\":[\"Voer een aangepaste titel in\"],\"VHS0aJ\":[\"Alle aangepaste rechten wissen?\"],\"VKoDQD\":[\"Maak nieuwe \",[\"0\"]],\"VUZDlr\":[\"Getuigenissen\"],\"VXk54Y\":[\"heeft de kaart aan zichzelf toegewezen\"],\"VbyRUy\":[\"Reacties\"],\"VhMDMg\":[\"Wachtwoord wijzigen\"],\"Vt50G1\":[\"Basis kanban\"],\"W/Elkg\":[\"Gemiddelde prioriteit\"],\"W/nQk1\":[\"Gratis abonnement\"],\"W1ewR0\":[\"Kan link niet kopiëren\"],\"W5r8Qh\":[\"heeft een checklistitem verwijderd\"],\"W8oT+L\":[\"Video-informatie ophalen mislukt\"],\"WHHLh9\":[\"Kan bijlage niet verwijderen\"],\"WI4eGo\":[\"Hoe krijg ik een aangepaste URL?\"],\"WQPDcG\":[\"Kan checklistitem niet bijwerken\"],\"WRkpB1\":[\"Registratie uitgeschakeld\"],\"WRsbHO\":[\"Je Trello-account is gekoppeld.\"],\"WYDptz\":[\"Abonnement vereist\"],\"WYwN1G\":[\"Nieuwe import\"],\"WbTDwg\":[\"Bezig\"],\"Weq9zb\":[\"Algemeen\"],\"WmPhYW\":[\"Er is een fout opgetreden bij het loskoppelen van je Trello-account.\"],\"WnEwDO\":[\"Heb je al een account? <0><1>Inloggen\"],\"Ws+3X+\":[\"Onbeperkt seats en geavanceerde functies voor groeiende teams.\"],\"Ws1I0u\":[\"A card was updated\"],\"Wy6pcF\":[\"Kan zichtbaarheid van bord niet bijwerken\"],\"X0N0PA\":[\" (bewerkt)\"],\"XDRXbZ\":[\"Workspace-beschrijving moet minimaal 3 tekens lang zijn\"],\"XEoGkQ\":[\"Ga naar homepage\"],\"XILg0L\":[\"Ongeldig e-mailadres\"],\"XJOV1Y\":[\"Activiteit\"],\"XNxYxq\":[\"Bordsjablonen\"],\"XTKtey\":[\"Maak lijst\"],\"XXbgHS\":[\"Aangenomen\"],\"XYLcNv\":[\"Ondersteuning\"],\"XicmhT\":[\"Vervaldatum\"],\"Xid3K6\":[\"Board-URL mag alleen letters, cijfers en koppeltekens bevatten\"],\"Xjj/kS\":[\"Kanban opnieuw uitgevonden\"],\"XpcjLO\":[\"Kan bord-URL niet bijwerken\"],\"Y8yzGg\":[\"Start gratis. Upgrade naarmate je team groeit. Geen verborgen kosten, geen contracten.\"],\"YBBifR\":[\"Trello loskoppelen\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Kan checklistitem niet opnieuw ordenen\"],\"YRk79X\":[\"Geavanceerde beveiliging, compliance en toegewijde ondersteuning voor grote organisaties.\"],\"YVT40D\":[\"heeft label <0>\",[\"0\"],\" verwijderd\"],\"YaZDYI\":[\"Fout bij upgraden van abonnement\"],\"YcyP2z\":[\"Kan sjabloon niet aanmaken\"],\"YdIn4I\":[\"You were removed from a workspace\"],\"Yf9FAx\":[\"Ze kunnen geen toegang meer krijgen tot deze workspace.\"],\"YhvWXb\":[\"Bordanalyse\"],\"YirHq7\":[\"Feedback\"],\"YkfDoz\":[\"Jaarlijks\"],\"YoyKbT\":[\"Deze API-sleutel wordt slechts één keer getoond. Bewaar deze op een veilige locatie.\"],\"Ypy5pZ\":[\"Weet je zeker dat je de webhook \\\"\",[\"webhookName\"],\"\\\" wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.\"],\"YtUfwW\":[\"Inloggen met \",[\"0\"],\" mislukt. Probeer het opnieuw.\"],\"Yx0Ud8\":[\"Aangevraagd\"],\"Z3FXyt\":[\"Laden...\"],\"Z3krJD\":[\"Sta werkruimteleden toe elkaars e-mailadressen te zien\"],\"Z6r9z1\":[\"Kan kaart niet verwijderen\"],\"ZAs2NN\":[\"Alle Pro-functies +\"],\"ZDGm40\":[\"Account verwijderen\"],\"ZDIydz\":[\"Aan de slag\"],\"ZDPJBc\":[\"Aangepaste gebruikersnamen vereisen een upgrade naar een Pro-abonnement\"],\"ZDo4HN\":[\"Brainstormen\"],\"ZH7TVS\":[\"Kaarttitel\"],\"ZL1A+p\":[\"Bijlage uploaden mislukt. Probeer het opnieuw.\"],\"ZT4Khw\":[\"Weet je zeker dat je deze kaart wilt verwijderen?\"],\"ZU5IYI\":[\"Onbeperkt aantal borden, onbeperkt aantal lijsten, onbeperkt aantal kaarten. Geen creditcard vereist.\"],\"ZXSPJt\":[\"Er is een onverwachte fout opgetreden. Probeer het later opnieuw.\"],\"ZqDqbi\":[\"Organiseer en vind kaarten snel met krachtige filtertools.\"],\"Zz1qkk\":[\"Onbeperkt aantal kaarten\"],\"a3LDKx\":[\"Beveiliging\"],\"aHCEmh\":[\"Prijzen\"],\"aHRWVI\":[\"heeft de vervaldatum verwijderd\"],\"aJ4pMe\":[\"Veelgestelde vragen\"],\"aKJHG+\":[\"Board archiveren\"],\"aW3TOw\":[\"E-mailmeldingen\"],\"aWDhU5\":[\"Kanban is beter met een team. Perfect voor kleine en groeiende teams die willen samenwerken.\"],\"aWlSc/\":[\"Maak nieuwe lijst\"],\"abUZlY\":[\"Voeg details toe...\"],\"aelko+\":[\"Je kunt een aangepaste werkruimte-URL krijgen, zoals <0>kan.bn/kan, door naar je <1>werkruimte-instellingen te gaan en een pro werkruimte-abonnement aan te schaffen. Alle abonnementen helpen de ontwikkeling van het project te financieren!\"],\"agPptk\":[\"Gemiddeld\"],\"aiHZVP\":[\"Bekijk documentatie\"],\"b/LfJo\":[\"e-mail\"],\"b3Thhd\":[\"Upload mislukt\"],\"b5FKyH\":[\"heeft label <0>\",[\"0\"],\" toegevoegd\"],\"b9XOHo\":[\"Maak \",[\"0\"]],\"bD8I7O\":[\"Voltooid\"],\"bDI6VI\":[[\"0\"],\" is verwijderd uit je favorieten.\"],\"bFREhu\":[\"Einde van lijst\"],\"bJZm1W\":[\"Aanvragers\"],\"bJtM0P\":[\"Deze workspace-URL is gereserveerd\"],\"bKzM8L\":[\"Toegewezen accountmanager\"],\"bZSICm\":[\"Kan checklistitem niet toevoegen\"],\"bcIybO\":[\"Workspace-naam is verplicht\"],\"bdztP2\":[\"Onderzoek\"],\"be30i9\":[\"€0\"],\"bfZE+Y\":[\"De rol van het lid is bijgewerkt.\"],\"bff61F\":[\"Teamabonnement\"],\"bfgr/e\":[\"Vraag\"],\"bmXKoX\":[\"heeft \",[\"0\"],\" labels toegevoegd: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Fout bij verwijderen account\"],\"c/IAuR\":[\"Belangrijk\"],\"c3b0B0\":[\"Aan de slag\"],\"c4nMcR\":[\"Jouw avatar\"],\"c9AJhn\":[\"Deelnemen aan workspace\"],\"cAgBMh\":[\"Volledige controle en eigenaarschap:\"],\"cFQEU/\":[\"Sneltoetsen openen\"],\"cOh+MI\":[\"Screening\"],\"cWXW+7\":[\"Webhook toevoegen\"],\"cWcxrL\":[\"Nieuwe checklist\"],\"cWtfn1\":[\"Upgrade naar Pro ($29/maand)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Workspace-beschrijving\"],\"cji2nM\":[\"Fout bij aanmaken uitnodigingslink\"],\"cnGeoo\":[\"Verwijderen\"],\"cp1rsD\":[\"Uitnodigingslink deactiveren\"],\"csFbe+\":[\"Ga naar sjablonen\"],\"curoK5\":[\"Nieuwe werkruimte\"],\"d+F6q9\":[\"Aangemaakt\"],\"d33Usy\":[\"Maak checklist\"],\"dEgA5A\":[\"Annuleren\"],\"dUh9QW\":[\"Planning\"],\"ddrz1m\":[\"Achterstallig\"],\"delOXn\":[\"Kan labels niet bijwerken\"],\"dgr4Kq\":[\"Label bewerken\"],\"dmKdk0\":[\"Zodra je je workspace verwijdert, is er geen weg terug. Deze actie kan niet ongedaan worden gemaakt.\"],\"dsLT3m\":[\"Maak kaart\"],\"dtQIWT\":[\"Samenwerking\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Deze workspace-URL is al in gebruik\"],\"e1v+J3\":[\"Geheim (optioneel)\"],\"e4hPSt\":[\"Terugzetten naar rolstandaarden\"],\"e6wIqm\":[\"You were mentioned in a card\"],\"eEQyz+\":[\"Volg alle kaartwijzigingen met gedetailleerde activiteitengeschiedenis.\"],\"ePK91l\":[\"Bewerken\"],\"eZCGbT\":[\"Ja, we bieden een gratis plan voor altijd aan voor individueel gebruik. Geen beperkingen, geen paywalls, geen limieten.\"],\"edWbV6\":[\"Link gekopieerd\"],\"ekCRTP\":[\"Afgewezen\"],\"en3oy5\":[\"Functie\"],\"euc6Ns\":[\"Dupliceren\"],\"eus61c\":[\"Test verzenden\"],\"evg7+A\":[\"Je borden zijn geïmporteerd.\"],\"evj0lK\":[\"Bieden jullie een gratis abonnement aan?\"],\"f8fH8W\":[\"Ontwerp\"],\"f8lDFq\":[\"heeft de kaart gemaakt\"],\"fDQ7hA\":[\"Labels kopiëren\"],\"fEY2vP\":[\"Kaart niet gevonden\"],\"fQCrjt\":[\"De zichtbaarheid van je bord is ingesteld op \",[\"0\"],\".\"],\"fR9laE\":[\"Voer je huidige wachtwoord in\"],\"fSf2ee\":[\"Bekijk onze roadmap.\"],\"fW5sSv\":[\"Webhook bewerken\"],\"fYVH36\":[\"Kan opmerking niet bijwerken\"],\"fcWrnU\":[\"Uitloggen\"],\"fuwKpE\":[\"Probeer het opnieuw.\"],\"fvLNDy\":[\"Er zijn nog geen lijsten aangemaakt\"],\"fzGyWs\":[\"Pas de lettergrootte van de applicatie aan.\"],\"fziA2d\":[\"Onbeperkt reacties\"],\"g2xBxu\":[\"Je Trello-borden importeren in Kan is eenvoudig. Je kunt onze stapsgewijze handleiding <0>hier volgen.\"],\"g9NChz\":[\"Accountmanager\"],\"gGx5tM\":[\"Bewerken\"],\"gKmoow\":[\"Deze URL is gereserveerd\"],\"gL/7jw\":[\"Voeg beschrijving toe... (typ '/' om commando's te openen of '@' om te vermelden)\"],\"gQ/02p\":[\"Fout bij loskoppelen van GitHub\"],\"gUX7b+\":[\"Het open source <0/> alternatief voor Trello\"],\"gZxH/p\":[\"heeft de vervaldatum gewijzigd naar <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"Workspace-naam mag niet meer dan 64 tekens bevatten\"],\"gkxGkF\":[\"14 dagen gratis proefperiode · Wissel van abonnement of annuleer op elk moment\"],\"gkzAEM\":[\"Ga verder met \",[\"0\"]],\"goklcJ\":[\"Interviewen\"],\"gpfJ3v\":[\"Gratis, voor altijd\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"Board-URL mag niet langer zijn dan 60 tekens\"],\"h16FyT\":[\"Lijsten\"],\"h2FKMV\":[\"Je hebt geen toestemming\"],\"h2ztFt\":[\"Alle gratis functies +\"],\"h4VV67\":[\"heeft een checklist toegevoegd\"],\"h7MgpO\":[\"Sneltoetsen\"],\"h8DugX\":[\"Labels\"],\"hAMddS\":[\"heeft zichzelf van de kaart verwijderd\"],\"hB02vO\":[\"Leden beheren\"],\"hXMFoN\":[\"Geen lijsten\"],\"hYzsXr\":[\"Instellingen | Integraties\"],\"hty0d5\":[\"Maandag\"],\"i0ZMQl\":[\"Board gearchiveerd\"],\"i30J2U\":[\"Geen projecten gevonden\"],\"i5rE2/\":[\"URL mag niet langer zijn dan 64 tekens\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Terug\"],\"iHcdea\":[\"Verloopt volgende week\"],\"iLbjv+\":[\"Kan workspace bewerken\"],\"iQmbPb\":[\"Licentie\"],\"iSLIjg\":[\"Verbinden\"],\"iTylMl\":[\"Sjablonen\"],\"iVIGZb\":[\"Bijlage geüpload\"],\"isRobC\":[\"Nieuw\"],\"itgYbC\":[\"Test webhook succesvol verzonden!\"],\"iwr7AP\":[\"Ideeën\"],\"iy1wb+\":[\"Instellingen | API\"],\"j0o6ml\":[\"Jouw werkruimtebeschrijving\"],\"j1+HPc\":[\"Er is een fout opgetreden bij het verbinden van je GitHub-account.\"],\"j2+d/o\":[\"API-referentie\"],\"j77sVH\":[\"You were assigned to\"],\"j9IZZ0\":[\"Aangepaste workspace-URL\"],\"jDRt4n\":[\"Wil je je uitschrijven?\"],\"jEw0Mr\":[\"Voer een geldige URL in\"],\"jIuWsV\":[\"Webhooknaam mag niet langer zijn dan 255 tekens\"],\"jL82rC\":[\"Aangepaste rechten wissen\"],\"jNuzV/\":[\"Kan kaarten verwijderen\"],\"jQ6I8X\":[\"Rol bijgewerkt\"],\"jZBHkN\":[\"Werkruimtenaam moet minimaal 3 tekens lang zijn\"],\"jfC/xh\":[\"Contact\"],\"jl3aEJ\":[\"heeft checklistitem <0>\",[\"0\"],\" als onvolledig gemarkeerd\"],\"jlB2RY\":[\"Het huidige wachtwoord dat je hebt ingevoerd is onjuist.\"],\"jwI32v\":[\"Bord niet gevonden\"],\"k7rCa/\":[\"Groot\"],\"kECVpo\":[\"Weet je zeker dat je dit label wilt verwijderen?\"],\"kQwvU8\":[\"heeft een label van de kaart verwijderd\"],\"kSxwQL\":[\"Je kunt teamleden uitnodigen door op de knop \\\"Uitnodigen\\\" in de rechterbovenhoek van de <0>ledenpagina te klikken en hun e-mailadres in te voeren. Ze ontvangen een e-mail met een link om lid te worden van de werkruimte.\"],\"kYu0eF\":[\"Workspace verwijderen\"],\"kfOGMr\":[\"Quick win\"],\"klpSmb\":[\"Workspace-URL bewerken\"],\"kp6L3T\":[\"Deze workspace-gebruikersnaam is al in gebruik\"],\"kryGs+\":[\"Kaart\"],\"kuoc68\":[\"€10/maand\"],\"kxEs5t\":[\"Trello-imports\"],\"l2PIAy\":[\"Zelf hosten met Github\"],\"l31EoQ\":[\"Vind antwoorden op veelgestelde vragen over Kan. Kun je niet vinden wat je zoekt? Neem gerust <0>contact met ons op.\"],\"l3s5ri\":[\"Importeren\"],\"l4asa1\":[\"Dit bord is privé of bestaat niet\"],\"lGjicL\":[\", of bekijk onze\"],\"lKAvEd\":[\"Fout bij loskoppelen Trello\"],\"lXvXNI\":[\"Uitnodigingslink kopiëren mislukt\"],\"lYT7pQ\":[\"Lijst verwijderen\"],\"lkz85l\":[\"Het belangrijkste verschil tussen Kan en Trello is dat Kan open source is, waardoor iedereen onze code kan bekijken, aanpassen en eraan kan bijdragen. Ons cloudaanbod biedt ook geen beperkingen op functies voor individueel gebruik, terwijl Trello basisfuncties zoals het aantal borden dat je kunt maken achter een betaalmuur plaatst.\"],\"lo8xBK\":[\"Weet je zeker dat je \",[\"entityLabel\"],\" wilt verwijderen?\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"lsgnzd\":[\"Fout bij upgraden naar Pro\"],\"lyqwgn\":[\"Label toevoegen\"],\"m2nk0i\":[\"Eenvoudige prijzen\"],\"mErq7F\":[\"Registreren\"],\"mHhffx\":[\"Kan checklist niet aanmaken\"],\"mTGd3+\":[\"heeft een checklist verwijderd\"],\"mTwGOf\":[\"Deze uitnodigingslink is ongeldig of verlopen.\"],\"mU+M00\":[[\"0\"],\" is toegevoegd aan je favorieten.\"],\"mVZH9V\":[\"Toen Trello in 2011 werd gelanceerd, blies het iedereen omver met zijn zorgvuldig ontworpen eenvoud, maar door de jaren heen verloor het zijn magie en groeide het uit tot iets dat meer leek op \\\"Jira Lite\\\". Dit project is onze poging om de oorspronkelijke magie van Trello's eenvoud te heroveren, in open source.\"],\"mZGPxt\":[\"Uitnodigingslink gekopieerd naar klembord\"],\"mchgzf\":[\"Je bent succesvol geregistreerd.\"],\"mgXgHu\":[\"Ga naar borden\"],\"mrhyIB\":[\"Perfect voor kleine en groeiende teams die willen samenwerken.\"],\"mwBdZ2\":[\"Dit resulteert in de permanente verwijdering van alle gegevens die aan je account zijn gekoppeld.\"],\"mx8+1u\":[\"Onbeperkt leden\"],\"n+xLOH\":[\"Klantenondersteuning\"],\"n1GRql\":[\"Nieuw label\"],\"n1ekoW\":[\"Inloggen\"],\"n6EWYz\":[\"Wordt gebruikt om webhook-payloads te ondertekenen voor verificatie. Laat leeg om het bestaande geheim te behouden.\"],\"n9V+ps\":[\"Voer je naam in\"],\"nKBUeF\":[\"De kaart is gedupliceerd.\"],\"nOhz3x\":[\"Uitloggen\"],\"nYNMZZ\":[\"Positie in lijst (0 = eerste, leeg laten voor het einde)\"],\"nabda1\":[\"Kaart verwijderen\"],\"nbfdhU\":[\"Integraties\"],\"ngBZOd\":[\"Voeg opmerking toe... (typ '/' om commando's te openen of '@' om te vermelden)\"],\"nhMhRr\":[\"Bedankt voor je feedback!\"],\"njJFtc\":[\"Reactie verwijderen\"],\"nk7caK\":[\"Verbind Trello\"],\"nol/Fb\":[\"Hoe nodig ik teamleden uit?\"],\"notwF1\":[\"Sjabloonnaam mag niet meer dan 100 tekens bevatten\"],\"nq7q3Z\":[\"API-sleutelnaam mag niet langer zijn dan 30 tekens\"],\"nqdIhs\":[\"Aangepaste bordsjablonen\"],\"nryrgW\":[\"Alle aangepaste rechten van leden zijn teruggezet naar de standaardinstellingen van hun rol.\"],\"o+JCfN\":[\"Vertrouwd door snelle teams<0/>over de hele wereld\"],\"o4e/70\":[\"Selecteer minimaal één gebeurtenis\"],\"o4sQAg\":[\"Webhook aanmaken mislukt\"],\"o7J4JM\":[\"Filter\"],\"o8adVG\":[\"10 MB bestandsuploads\"],\"o9WLwO\":[\"Kan kaart niet bijwerken\"],\"oVBq1w\":[\"per gebruiker/maand\"],\"oW13KZ\":[\"Ga vandaag gratis aan de slag\"],\"odFCYX\":[\"Ongeldige uitnodiging\"],\"okpxfB\":[\"Maak nieuwe sleutel\"],\"onllUU\":[\"Mark all as read\"],\"oyRjD/\":[\"Pro-abonnement\"],\"p/hk9N\":[\"Je bent succesvol ingelogd.\"],\"pBsoKL\":[\"Toevoegen aan favorieten\"],\"pFGfsR\":[\"Bekijk enkele van onze favoriete open source-projecten.\"],\"pFKC6A\":[\"API-sleutelnaam\"],\"pL78ec\":[\"Toegevoegd aan favorieten\"],\"pM1sn/\":[\"New notification\"],\"pVctI7\":[\"On-premise implementatieoptie\"],\"pXVFJy\":[\"Kan boards verwijderen\"],\"pa9o5D\":[\"Bijsnijden van je avatar\"],\"pfa8F0\":[\"Weergavenaam\"],\"pmUArF\":[\"Workspace\"],\"pnrmSP\":[\"Nieuwe kaart\"],\"ppaRWv\":[\"Zelf hosten\"],\"pvnfJD\":[\"Donker\"],\"q+lt9D\":[\"Fout bij verwijderen label\"],\"q3il6U\":[\"Lettergrootte\"],\"qPP4lD\":[\"Leden uitnodigen vereist een Team-abonnement. Je wordt doorgestuurd om je workspace te upgraden.\"],\"qQXocp\":[\"Kan workspace-instellingen beheren\"],\"qaS+1/\":[\"Het beste voor teams die onbeperkt willen schalen\"],\"qfUS/w\":[\"Open source vrienden\"],\"qkjvgj\":[\"Je werkruimte is verwijderd.\"],\"qlAIQ1\":[\"Op afstand\"],\"qtE5nt\":[\"Voeg een item toe...\"],\"qzdST2\":[\"Zichtbaarheid van board\"],\"r6BgwX\":[\"Wachtwoord is vereist om in te loggen.\"],\"rD6UIt\":[\"Ga aan de slag op Cloud\"],\"rF8SEQ\":[\"Reactie bewerken\"],\"rQRXo8\":[\"Voer nieuw geheim in om bij te werken\"],\"rQXTmd\":[\"Kaart-URL gekopieerd naar klembord\"],\"rRM7r0\":[\"Importeer je Trello-borden en ga meteen aan de slag.\"],\"rYUZIe\":[\"Selecteer bron\"],\"raHesj\":[\"Je bent uitgeschreven!\"],\"rarRW/\":[\"Fout bij uitnodigen lid\"],\"ri1hHe\":[\"Verloopt volgende maand\"],\"rmN315\":[\"Leuk\"],\"rs7L54\":[\"heeft een lid aan de kaart toegevoegd\"],\"rtbVvN\":[\"Kan lijsten bewerken\"],\"s+MGs7\":[\"Bronnen\"],\"s6iE/c\":[\"Registratie is momenteel uitgeschakeld. Probeer het later opnieuw.\"],\"sBhOFG\":[\"Eenvoudig, visueel taakbeheer dat gewoon werkt. Sleep kaarten, werk samen met je team en krijg meer gedaan.\"],\"sDLCvT\":[\"Verbind je favoriete tools om je workflow te stroomlijnen.\"],\"sDuhfK\":[\"Lanceringaanbieding: onbeperkt aantal plaatsen voor slechts €29/maand met Pro\"],\"sU2uWc\":[\"Kaart gedupliceerd\"],\"sUZo7y\":[\"Registreren | kan.bn\"],\"sVBn4K\":[\"Fout bij bijwerken van weergavenaam\"],\"sY2lzr\":[\"Geen download-URL beschikbaar voor deze bijlage.\"],\"sbNNyi\":[\"Nieuwe webhook\"],\"snMaH4\":[\"Webhook verwijderen\"],\"t+R8+P\":[\"Uitvoering\"],\"t/YqKh\":[\"Verwijderen\"],\"t0dTPm\":[\"Configureer webhooks om meldingen te ontvangen wanneer kaarten worden aangemaakt, bijgewerkt, verplaatst of verwijderd.\"],\"t2nDzl\":[\"Bekijk en beheer je facturering en abonnement.\"],\"t6FvJH\":[\"Kan opmerkingen toevoegen\"],\"tGwwnq\":[\"heeft de beschrijving bijgewerkt\"],\"tHcbLF\":[\"Kan boards bewerken\"],\"tIdipJ\":[\"Bord-URL bewerken\"],\"tMYIu7\":[\"Activiteitenlogboeken\"],\"tOZp9v\":[\"Configureerbare gebruikersrollen en rechten\"],\"tTbref\":[\"Wachtwoord is vereist om je aan te melden.\"],\"tYN21H\":[\"Gebruiker is al lid van deze workspace\"],\"tbNcu4\":[\"Board gedearchiveerd\"],\"tca56/\":[\"Je bestand is succesvol geüpload.\"],\"tfDRzk\":[\"Opslaan\"],\"tlhgDC\":[\"Geen gearchiveerde boards\"],\"tmlJN1\":[\"Voer een geldige YouTube-URL in\"],\"tmpW+w\":[\"Bord verwijderen\"],\"tst44n\":[\"Gebeurtenissen\"],\"tyHiOa\":[\"Probeer het later opnieuw of neem contact op met klantenservice.\"],\"u2+JIh\":[\"Aangepaste URL's vereisen een upgrade naar een Pro-abonnement\"],\"u8JHrO\":[\"Filters wissen\"],\"uAQUqI\":[\"Status\"],\"uEGGDs\":[\"Mijn webhook\"],\"uOqaMC\":[\"Je bent uitgenodigd om lid te worden van een werkruimte.\"],\"uP4V6I\":[\"Gratis voor iedereen\"],\"uXGLuq\":[\"Maak API-sleutel\"],\"uZg2+w\":[\"Geef je workspace een boost voor slechts €29/maand. Dit krijg je:\"],\"uck1tz\":[\"heeft een lid van de kaart verwijderd\"],\"usVytm\":[\"Zodra je je account verwijdert, is er geen weg terug. Deze actie kan niet ongedaan worden gemaakt.\"],\"uvH2xS\":[\"Leden kopiëren\"],\"v+Wp++\":[\"Open source\"],\"v1kQyJ\":[\"Webhooks\"],\"v3YoMA\":[\"Senior\"],\"vAR/I8\":[\"Draai op je eigen infrastructuur\"],\"vAj6xG\":[\"Je kunt zelf hosten door de instructies in onze <0>repo te volgen.\"],\"vSJd18\":[\"Video\"],\"vUr5JT\":[\"Nog geen account? <0><1>Registreren\"],\"vXIe7J\":[\"Taal\"],\"vXemf6\":[\"Bug\"],\"va/3u1\":[\"Bepaal wie je borden kan bekijken en bewerken.\"],\"vbskQn\":[\"API-sleutelnaam is verplicht\"],\"veIDCY\":[\"Start 14 dagen gratis proefperiode\"],\"vfRdCZ\":[\"Kan machtigingen niet resetten\"],\"vgdzLf\":[\"Maak nog een\"],\"vifyyw\":[\"Juridisch\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"De rechten van dit lid zijn teruggezet naar de standaardinstellingen van hun rol.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"maandelijkse facturering\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Lange termijn\"],\"vwGkYB\":[\"Wachtwoord moet minimaal 8 tekens bevatten\"],\"wIb7Ng\":[\"Softwareontwikkeling\"],\"wK4OTM\":[\"Titel (optioneel)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Selecteer een bestand om te uploaden.\"],\"wY+6Ye\":[\"Deze bord-URL is al in gebruik\"],\"wakO3W\":[\"heeft checklist <0>\",[\"0\"],\" toegevoegd\"],\"wewm3j\":[\"Bordnaam mag niet meer dan 100 tekens bevatten\"],\"wgNoIs\":[\"Alles selecteren\"],\"wlQNTg\":[\"Leden\"],\"wqkcin\":[\"Kan reacties bekijken\"],\"wqxglO\":[\"Leren\"],\"wruKPE\":[\"Ondersteun de ontwikkeling van het project\"],\"wsy94z\":[\"Het beste voor grote organisaties met geavanceerde behoeften\"],\"wtxjAY\":[\"Workspace-leden\"],\"x0kMO/\":[\"Fout bij bijwerken van werkruimte-URL\"],\"x8GeCD\":[\"Weergavenaam bijgewerkt\"],\"xEbBrW\":[\"Welke licentie gebruik je?\"],\"xGVfLh\":[\"Doorgaan\"],\"xLTZVf\":[\"Eerste dag van de week\"],\"xMn+V9\":[\"Importeren vanuit Trello\"],\"xRPn3U\":[\"Voer je e-mailadres in\"],\"xvcYhz\":[\"Wis alle aangepaste ledenrechten zodat alle leden alleen rechten erven van hun standaard rolrechten.\"],\"y3aU20\":[\"Wijzigingen opslaan\"],\"yD3ZSw\":[\"Wijzig je taalvoorkeuren.\"],\"yV7o5I\":[\"Hoe importeer ik mijn Trello-borden?\"],\"yb/fjw\":[\"Goedkeuring\"],\"yhLUU8\":[\"Fout bij verbinden met GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Project importeren (1)\"],\"other\":[\"Projecten importeren (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Sluiten\"],\"zC8Whw\":[\"Ga aan de slag door een nieuwe lijst te maken\"],\"zERArS\":[\"heeft de titel bijgewerkt naar <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Maak uitnodigingslink\"],\"zMlxCA\":[\"1 gebruiker\"],\"zMquA7\":[\"Kies een abonnement\"],\"zQPhSa\":[\"Converteer naar link\"],\"zQX5Dj\":[\"Lijstnaam\"],\"zYRVNp\":[\"Selecteer een lijst\"],\"zkWmBh\":[\"Jaarlijks\"],\"zl1b97\":[\"Kan kaart niet aanmaken\"],\"zoEbXq\":[\"Kan kaarten bekijken\"],\"zt/6cS\":[\"Het beste voor kleine teams die willen samenwerken en sneller vooruit willen komen.\"],\"zto8aj\":[\"Trello losgekoppeld\"],\"zwBp5t\":[\"Privé\"],\"zwTiVn\":[\"heeft een bijlage verwijderd <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Meer informatie\"],\"zxKs+y\":[\"Verloopt morgen\"],\"zzDlyQ\":[\"Succes\"]}")as Messages; \ No newline at end of file diff --git a/apps/web/src/locales/pl/messages.json b/apps/web/src/locales/pl/messages.json index 86f6e4b9b..6c7a22862 100644 --- a/apps/web/src/locales/pl/messages.json +++ b/apps/web/src/locales/pl/messages.json @@ -3,23 +3,40 @@ "message": " (edited)", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 153]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 153 + ] + ], "translation": " (edytowano)" }, "lGjicL": { "message": ", or see our", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 102]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 102 + ] + ], "translation": ", lub zobacz nasze" }, "J/hVSQ": { "message": "{0}", "placeholders": { - "0": ["isTemplate ? \"Templates\" : \"Boards\""] + "0": [ + "isTemplate ? \"Templates\" : \"Boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/index.tsx", 53]], + "origin": [ + [ + "src/views/boards/index.tsx", + 53 + ] + ], "translation": "{0}" }, "JArWcF": { @@ -29,74 +46,146 @@ "card?.title ?? t`Card`", "isTemplate ? \"Templates\" : \"Boards\"" ], - "1": ["board?.name ?? t`Board`", "workspace.name ?? t`Workspace`"] + "1": [ + "board?.name ?? t`Board`", + "workspace.name ?? t`Workspace`" + ] }, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 48], - ["src/views/card/index.tsx", 317] + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/card/index.tsx", + 364 + ] ], "translation": "{0} | {1}" }, "mU+M00": { "message": "{0} has been added to your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 56]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 56 + ] + ], "translation": "{0} został dodany do ulubionych." }, "bDI6VI": { "message": "{0} has been removed from your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 57]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 57 + ] + ], "translation": "{0} został usunięty z ulubionych." }, "CJukzS": { "message": "{0} labels", "placeholders": { - "0": ["labelPublicIds.length"] + "0": [ + "labelPublicIds.length" + ] }, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 455]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 455 + ] + ], "translation": "{0} etykiety" }, "9x4DAL": { "message": "{0} not found", "placeholders": { - "0": ["isTemplate ? \"Template\" : \"Board\""] + "0": [ + "isTemplate ? \"Template\" : \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/index.tsx", 557]], + "origin": [ + [ + "src/views/board/index.tsx", + 561 + ] + ], "translation": "{0} nie znaleziono" }, "0xWkkH": { "message": "{boardCount, plural, one {Import board (1)} other {Import boards ({boardCount})}}", "placeholders": { - "boardCount": ["boardCount"] + "boardCount": [ + "boardCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 489]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 489 + ] + ], "translation": "{boardCount, plural, one {Importuj tablicę (1)} few {Importuj tablice ({boardCount})} many {Importuj tablic ({boardCount})} other {Importuj tablice ({boardCount})}}" }, + "JBaoDB": { + "message": "{overflow} more viewers", + "placeholders": { + "overflow": [ + "overflow" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 70 + ] + ], + "translation": "" + }, "yndBF+": { "message": "{projectCount, plural, one {Import project (1)} other {Import projects ({projectCount})}}", "placeholders": { - "projectCount": ["projectCount"] + "projectCount": [ + "projectCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 341]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 341 + ] + ], "translation": "{projectCount, plural, one {Importuj projekt (1)} few {Importuj projekty ({projectCount})} many {Importuj projektów ({projectCount})} other {Importuj projekty ({projectCount})}}" }, "9lFfqv": { "message": "/month", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 207]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 207 + ] + ], "translation": "/miesiąc" }, "be30i9": { @@ -104,8 +193,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 30], - ["src/views/pricing/components/PricingTiers.tsx", 30] + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ] ], "translation": "$0" }, @@ -114,8 +209,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 158], - ["src/views/members/components/InviteMemberForm.tsx", 170] + [ + "src/views/members/components/InviteMemberForm.tsx", + 158 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] ], "translation": "$10/miesiąc" }, @@ -123,7 +224,12 @@ "message": "$8/month", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 170]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] + ], "translation": "$8/miesiąc" }, "zMlxCA": { @@ -131,9 +237,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 82], - ["src/views/pricing/components/Pricing.tsx", 36], - ["src/views/pricing/components/PricingTiers.tsx", 35] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 82 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 36 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 35 + ] ], "translation": "1 użytkownik" }, @@ -141,7 +256,12 @@ "message": "10mb file uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 90]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 90 + ] + ], "translation": "10mb przesyłania plików" }, "gkxGkF": { @@ -149,9 +269,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 66], - ["src/views/pricing/components/PricingTiers.tsx", 88], - ["src/views/pricing/components/PricingTiers.tsx", 263] + [ + "src/views/pricing/components/PricingTiers.tsx", + 66 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 88 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 263 + ] ], "translation": "14 dni bezpłatnego okresu próbnego · Zmień plan lub anuluj w dowolnym momencie" }, @@ -159,21 +288,48 @@ "message": "404 - Page Not Found | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 11]], + "origin": [ + [ + "src/pages/404.tsx", + 11 + ] + ], "translation": "404 - Strona nie znaleziona | kan.bn" }, + "Ws1I0u": { + "message": "A card was updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 54 + ] + ], + "translation": "" + }, "/rn4RE": { "message": "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 71]], + "origin": [ + [ + "src/views/home/index.tsx", + 71 + ] + ], "translation": "Potężna, elastyczna aplikacja kanban, która pomaga organizować pracę, śledzić postępy i osiągać rezultaty — wszystko w jednym miejscu." }, "AeXO77": { "message": "Account", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 41]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 41 + ] + ], "translation": "Konto" }, "TKFUnX": { @@ -181,7 +337,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 27 + ] ], "translation": "Konto usunięte" }, @@ -190,7 +349,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 283] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 283 + ] ], "translation": "Opiekun konta" }, @@ -198,7 +360,12 @@ "message": "Actions", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 56]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 56 + ] + ], "translation": "Akcje" }, "F6pfE9": { @@ -206,9 +373,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 26], - ["src/views/settings/components/NewWebhookModal.tsx", 293], - ["src/views/settings/components/WebhookList.tsx", 106] + [ + "src/views/boards/index.tsx", + 26 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 293 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] ], "translation": "Aktywna" }, @@ -217,8 +393,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 455], - ["src/views/public/board/CardModal.tsx", 200] + [ + "src/views/card/index.tsx", + 502 + ], + [ + "src/views/public/board/CardModal.tsx", + 200 + ] ], "translation": "Aktywność" }, @@ -227,7 +409,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 148] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 148 + ] ], "translation": "Dziennik aktywności" }, @@ -235,35 +420,60 @@ "message": "Activity logs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 110]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 110 + ] + ], "translation": "Dzienniki aktywności" }, "UGCIzB": { "message": "Add / edit label", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 50]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 50 + ] + ], "translation": "Dodaj / edytuj etykietę" }, "B3xxao": { "message": "Add a card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 136]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 136 + ] + ], "translation": "Dodaj kartę" }, "qtE5nt": { "message": "Add an item...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 141]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 141 + ] + ], "translation": "Dodaj element..." }, "Gxxi5J": { "message": "Add checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 65]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 65 + ] + ], "translation": "Dodaj checklistę" }, "ngBZOd": { @@ -271,8 +481,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/Comment.tsx", 185], - ["src/views/card/components/NewCommentForm.tsx", 68] + [ + "src/views/card/components/Comment.tsx", + 185 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 68 + ] ], "translation": "Dodaj komentarz... (wpisz '/' aby otworzyć polecenia lub '@', aby wspomnieć)" }, @@ -280,14 +496,24 @@ "message": "Add description... (type '/' to open commands or '@' to mention)", "placeholders": {}, "comments": [], - "origin": [["src/components/Editor.tsx", 482]], + "origin": [ + [ + "src/components/Editor.tsx", + 482 + ] + ], "translation": "Dodaj opis... (wpisz '/' aby otworzyć polecenia lub '@', aby wspomnieć)" }, "abUZlY": { "message": "Add details...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 189 + ] + ], "translation": "Dodaj szczegóły..." }, "lyqwgn": { @@ -295,8 +521,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/LabelSelector.tsx", 114], - ["src/views/card/components/LabelSelector.tsx", 119] + [ + "src/views/card/components/LabelSelector.tsx", + 114 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 119 + ] ], "translation": "Dodaj etykietę" }, @@ -305,8 +537,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 135], - ["src/views/members/components/InviteMemberForm.tsx", 257] + [ + "src/views/card/components/MemberSelector.tsx", + 135 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 257 + ] ], "translation": "Dodaj członka" }, @@ -314,126 +552,222 @@ "message": "Add to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 122]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 122 + ] + ], "translation": "Dodaj do ulubionych" }, "cWXW+7": { "message": "Add webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 36 + ] + ], "translation": "Dodaj webhook" }, "bmXKoX": { "message": "added {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 102]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 102 + ] + ], "translation": "dodano {0} etykiety: <0>{labelList}" }, "h4VV67": { "message": "added a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 132]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 132 + ] + ], "translation": "dodano checklistę" }, "O83K21": { "message": "added a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 135]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 135 + ] + ], "translation": "dodano element checklisty" }, "T21jY/": { "message": "added a label to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 128]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 128 + ] + ], "translation": "dodano etykietę do karty" }, "rs7L54": { "message": "added a member to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 130]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 130 + ] + ], "translation": "dodano członka do karty" }, "5y6qY8": { "message": "added an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 140]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 140 + ] + ], "translation": "dodano załącznik" }, "CujNX4": { "message": "added an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 278]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 278 + ] + ], "translation": "dodano załącznik <0>{0}" }, "wakO3W": { "message": "added checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 208]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 208 + ] + ], "translation": "dodano checklistę <0>{0}" }, "E0t3jO": { "message": "added checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 232]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 232 + ] + ], "translation": "dodano element checklisty <0>{0}" }, "b5FKyH": { "message": "added label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 192]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 192 + ] + ], "translation": "dodano etykietę <0>{0}" }, "pL78ec": { "message": "Added to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 53]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 53 + ] + ], "translation": "Dodano do ulubionych" }, "14Xi3Z": { "message": "Adding a new member will cost an additional {price} ({billingType}) per seat.", "placeholders": { - "price": ["price"], - "billingType": ["billingType"] + "price": [ + "price" + ], + "billingType": [ + "billingType" + ] }, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 327]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 327 + ] + ], "translation": "Dodanie nowego członka będzie kosztować dodatkowo {price} ({billingType}) za miejsce." }, "D7/JvJ": { "message": "Adjust the square crop to fit your avatar.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 256]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 256 + ] + ], "translation": "Dopasuj kwadratowy kadr do swojego awatara." }, "U3pytU": { "message": "Admin", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 201]], + "origin": [ + [ + "src/views/members/index.tsx", + 201 + ] + ], "translation": "Administrator" }, "3pIq39": { @@ -441,19 +775,39 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 264], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 265], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 266], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 267], - ["src/views/pricing/components/Pricing.tsx", 55] - ], - "translation": "Role administratora" - }, + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 264 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 265 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 266 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 267 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 55 + ] + ], + "translation": "Role administratora" + }, "Kec+/t": { "message": "Advanced admin controls", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 103]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 103 + ] + ], "translation": "Zaawansowane opcje administratora" }, "/jd3aj": { @@ -461,7 +815,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 268] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 268 + ] ], "translation": "Zaawansowane role administratora" }, @@ -469,42 +826,72 @@ "message": "Advanced security, compliance, and dedicated support for large organizations.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 97 + ] + ], "translation": "Zaawansowane zabezpieczenia, zgodność i dedykowane wsparcie dla dużych organizacji." }, "h2ztFt": { "message": "All Free features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 56]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 56 + ] + ], "translation": "Wszystkie funkcje wersji Free +" }, "nryrgW": { "message": "All member permission overrides have been reset to their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 26 + ] + ], "translation": "Wszystkie nadpisania uprawnień członków zostały zresetowane do domyślnych ustawień ról." }, "ZAs2NN": { "message": "All Pro features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 101]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 101 + ] + ], "translation": "Wszystkie funkcje wersji Pro +" }, "UQbwrz": { "message": "All systems operational", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 18]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 18 + ] + ], "translation": "Wszystkie systemy działają prawidłowo" }, "EII/X8": { "message": "All Teams features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 79]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 79 + ] + ], "translation": "Wszystkie funkcje wersji Teams +" }, "Z3krJD": { @@ -523,28 +910,48 @@ "message": "Already have an account? <0><1>Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 90]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 90 + ] + ], "translation": "Masz już konto? <0><1>Zaloguj się" }, "j1+HPc": { "message": "An error occurred while connecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 107]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 107 + ] + ], "translation": "Wystąpił błąd podczas łączenia konta GitHub." }, "Dz63YI": { "message": "An error occurred while disconnecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 130]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 130 + ] + ], "translation": "Wystąpił błąd podczas odłączania konta GitHub." }, "WmPhYW": { "message": "An error occurred while disconnecting your Trello account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 87]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 87 + ] + ], "translation": "Wystąpił błąd podczas odłączania konta Trello." }, "ZXSPJt": { @@ -552,7 +959,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 90] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 90 + ] ], "translation": "Wystąpił nieoczekiwany błąd. Spróbuj ponownie później." }, @@ -560,14 +970,24 @@ "message": "Annual", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 63]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 63 + ] + ], "translation": "Rocznie" }, "3bqt9U": { "message": "Anyone with this link can join your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 311]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 311 + ] + ], "translation": "Każdy, kto ma ten link, może dołączyć do twojego workspace" }, "OZtEcz": { @@ -575,8 +995,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 65], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 237] + [ + "src/components/SettingsLayout.tsx", + 65 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 237 + ] ], "translation": "API" }, @@ -584,119 +1010,196 @@ "message": "API key created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 91]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 91 + ] + ], "translation": "Utworzono klucz API" }, "pFKC6A": { "message": "API key name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 161]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 161 + ] + ], "translation": "Nazwa klucza API" }, "nq7q3Z": { "message": "API key name cannot exceed 30 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 25 + ] + ], "translation": "Nazwa klucza API nie może przekraczać 30 znaków" }, "vbskQn": { "message": "API key name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 24 + ] + ], "translation": "Nazwa klucza API jest wymagana" }, "5h8ooz": { "message": "API keys", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 22]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 22 + ] + ], "translation": "Klucze API" }, "j2+d/o": { "message": "API Reference", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 31]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 31 + ] + ], "translation": "Dokumentacja API" }, "bJZm1W": { "message": "Applicants", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 75]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 75 + ] + ], "translation": "Kandydaci" }, "yb/fjw": { "message": "Approval", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 46]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 46 + ] + ], "translation": "Zatwierdzenie" }, "aKJHG+": { "message": "Archive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Zarchiwizuj tablicę" }, "TdfEV7": { "message": "Archived", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 27]], + "origin": [ + [ + "src/views/boards/index.tsx", + 27 + ] + ], "translation": "Zarchiwizowana" }, "lo8xBK": { "message": "Are you sure want to remove {entityLabel}?", "placeholders": { - "entityLabel": ["entityLabel"] + "entityLabel": [ + "entityLabel" + ] }, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 47] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 47 + ] ], "translation": "Czy na pewno chcesz usunąć {entityLabel}?" }, "Ypy5pZ": { "message": "Are you sure you want to delete the webhook \"{webhookName}\"? This action cannot be undone.", "placeholders": { - "webhookName": ["webhookName"] + "webhookName": [ + "webhookName" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 60 + ] ], "translation": "Czy na pewno chcesz usunąć webhook \"{webhookName}\"? Tej operacji nie można cofnąć." }, "BhDZlc": { "message": "Are you sure you want to delete the workspace {0}?", "placeholders": { - "0": ["workspace.name"] + "0": [ + "workspace.name" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 62] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 62 + ] ], "translation": "Czy na pewno chcesz usunąć workspace {0}?" }, "DMeWZD": { "message": "Are you sure you want to delete this {0}?", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/DeleteBoardConfirmation.tsx", 36]], + "origin": [ + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 36 + ] + ], "translation": "Czy na pewno chcesz usunąć ten/ta {0}?" }, "ZT4Khw": { "message": "Are you sure you want to delete this card?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 75]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 75 + ] + ], "translation": "Czy na pewno chcesz usunąć tę kartę?" }, "Fpci8b": { @@ -704,7 +1207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 56] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 56 + ] ], "translation": "Czy na pewno chcesz usunąć tę checklistę?" }, @@ -712,14 +1218,24 @@ "message": "Are you sure you want to delete this comment?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 66]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 66 + ] + ], "translation": "Czy na pewno chcesz usunąć ten komentarz?" }, "kECVpo": { "message": "Are you sure you want to delete this label?", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 41]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 41 + ] + ], "translation": "Czy na pewno chcesz usunąć tę etykietę?" }, "74F7N/": { @@ -727,17 +1243,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 54] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 54 + ] ], "translation": "Czy na pewno chcesz usunąć swoje konto?" }, "PyYD/v": { "message": "assigned <0>{0} to the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 172]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 172 + ] + ], "translation": "przypisano <0>{0} do karty" }, "JUce1S": { @@ -745,7 +1271,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 199] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 199 + ] ], "translation": "Przypisane osoby" }, @@ -753,91 +1282,156 @@ "message": "Attachment uploaded", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 45]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 45 + ] + ], "translation": "Załącznik przesłany" }, "1rWxEw": { "message": "Awaiting Customer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 59]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 59 + ] + ], "translation": "Oczekiwanie na klienta" }, "iH8pgl": { "message": "Back", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 275]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 275 + ] + ], "translation": "Wstecz" }, "KNKCTb": { "message": "Backlog", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Backlog" }, "Vt50G1": { "message": "Basic Kanban", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 16]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 16 + ] + ], "translation": "Podstawowy Kanban" }, "Pat4r8": { "message": "Basic Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 28]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 28 + ] + ], "translation": "Podstawowy Roadmap" }, "Cd4sTD": { "message": "Best for individuals and solo creators getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 32]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 32 + ] + ], "translation": "Najlepsze dla osób indywidualnych i twórców rozpoczynających pracę" }, "wsy94z": { "message": "Best for large organizations with advanced needs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 98 + ] + ], "translation": "Najlepsze dla dużych organizacji z zaawansowanymi potrzebami" }, "UoSI+i": { "message": "Best for small and growing teams that need collaboration", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 53]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 53 + ] + ], "translation": "Najlepsze dla małych i rozwijających się zespołów wymagających współpracy" }, "zt/6cS": { "message": "Best for small teams who want to collaborate and move faster together.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 86]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 86 + ] + ], "translation": "Najlepszy dla małych zespołów, które chcą współpracować i działać szybciej razem." }, "qaS+1/": { "message": "Best for teams that want to scale without limits", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 76]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 76 + ] + ], "translation": "Najlepsze dla zespołów, które chcą się rozwijać bez ograniczeń" }, "ARvBT/": { "message": "billed annually", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "rozliczane rocznie" }, "+VoTOr": { "message": "billed monthly", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "rozliczane miesięcznie" }, "R+w/Va": { @@ -845,9 +1439,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 58], - ["src/views/boards/components/TemplateBoards.tsx", 68], - ["src/views/settings/BillingSettings.tsx", 39] + [ + "src/components/SettingsLayout.tsx", + 58 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 68 + ], + [ + "src/views/settings/BillingSettings.tsx", + 39 + ] ], "translation": "Rozliczenia" }, @@ -855,14 +1458,24 @@ "message": "Billing portal", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 49 + ] + ], "translation": "Portal rozliczeniowy" }, "4RoY9J": { "message": "Blog Post", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Post na blogu" }, "QD8opX": { @@ -870,9 +1483,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/card/index.tsx", 317], - ["src/views/public/board/index.tsx", 125] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/card/index.tsx", + 364 + ], + [ + "src/views/public/board/index.tsx", + 125 + ] ], "translation": "Tablica" }, @@ -881,8 +1503,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 314], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 85] + [ + "src/components/NewWorkspaceForm.tsx", + 314 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 85 + ] ], "translation": "Analiza tablicy" }, @@ -890,28 +1518,48 @@ "message": "Board archived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Tablica zarchiwizowana" }, "wewm3j": { "message": "Board name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 23 + ] + ], "translation": "Nazwa tablicy nie może przekraczać 100 znaków" }, "R1c3Mq": { "message": "Board name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 22 + ] + ], "translation": "Nazwa tablicy jest wymagana" }, "jwI32v": { "message": "Board not found", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 181]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 181 + ] + ], "translation": "Nie znaleziono tablicy" }, "XNxYxq": { @@ -919,7 +1567,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 116] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 116 + ] ], "translation": "Szablony tablic" }, @@ -927,21 +1578,36 @@ "message": "Board unarchived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Tablica przywrócona z archiwum" }, "Xid3K6": { "message": "Board URL can only contain letters, numbers, and hyphens", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 46]], - "translation": "Adres URL tablicy może zawierać tylko litery, cyfry i myślniki" - }, - "gv5kbo": { + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 46 + ] + ], + "translation": "Adres URL tablicy może zawierać tylko litery, cyfry i myślniki" + }, + "gv5kbo": { "message": "Board URL cannot exceed 60 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 44]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 44 + ] + ], "translation": "Adres URL tablicy nie może przekraczać 60 znaków" }, "8+BY11": { @@ -949,8 +1615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 82], - ["src/views/public/board/index.tsx", 79] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 82 + ], + [ + "src/views/public/board/index.tsx", + 79 + ] ], "translation": "Adres URL tablicy skopiowany do schowka" }, @@ -958,7 +1630,12 @@ "message": "Board URL must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 42]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 42 + ] + ], "translation": "Adres URL tablicy musi mieć co najmniej 3 znaki" }, "qzdST2": { @@ -966,8 +1643,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 85], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 132] + [ + "src/views/home/components/Features.tsx", + 85 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 132 + ] ], "translation": "Widoczność tablicy" }, @@ -975,7 +1658,12 @@ "message": "Board visibility updated", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 49]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 49 + ] + ], "translation": "Zaktualizowano widoczność tablicy" }, "8TveY+": { @@ -983,8 +1671,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 99], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 73] + [ + "src/components/SideNavigation.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 73 + ] ], "translation": "Tablice" }, @@ -992,28 +1686,48 @@ "message": "Boards you archive will appear here.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Zarchiwizowane tablice pojawią się tutaj." }, "ZDo4HN": { "message": "Brainstorming", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 42]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 42 + ] + ], "translation": "Burza mózgów" }, "vXemf6": { "message": "Bug", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 24]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ] + ], "translation": "Błąd" }, "/asTmx": { "message": "Bug Report", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 64]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 64 + ] + ], "translation": "Zgłoszenie błędu" }, "t6FvJH": { @@ -1021,8 +1735,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 146], - ["src/views/settings/components/RolePermissions.tsx", 35] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 146 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 35 + ] ], "translation": "Może dodawać komentarze" }, @@ -1031,8 +1751,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 131], - ["src/views/settings/components/RolePermissions.tsx", 20] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 131 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 20 + ] ], "translation": "Może tworzyć tablice" }, @@ -1041,8 +1767,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 141], - ["src/views/settings/components/RolePermissions.tsx", 30] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 141 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 30 + ] ], "translation": "Może tworzyć karty" }, @@ -1051,8 +1783,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 136], - ["src/views/settings/components/RolePermissions.tsx", 25] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 136 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 25 + ] ], "translation": "Może tworzyć listy" }, @@ -1061,8 +1799,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 133], - ["src/views/settings/components/RolePermissions.tsx", 22] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 133 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 22 + ] ], "translation": "Może usuwać tablice" }, @@ -1071,8 +1815,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 143], - ["src/views/settings/components/RolePermissions.tsx", 32] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 143 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 32 + ] ], "translation": "Może usuwać karty" }, @@ -1081,8 +1831,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 148], - ["src/views/settings/components/RolePermissions.tsx", 37] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 148 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 37 + ] ], "translation": "Może usuwać komentarze" }, @@ -1091,8 +1847,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 138], - ["src/views/settings/components/RolePermissions.tsx", 27] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 138 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 27 + ] ], "translation": "Może usuwać listy" }, @@ -1101,8 +1863,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 127], - ["src/views/settings/components/RolePermissions.tsx", 16] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 127 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 16 + ] ], "translation": "Może usuwać przestrzeń roboczą" }, @@ -1111,8 +1879,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 132], - ["src/views/settings/components/RolePermissions.tsx", 21] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 132 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 21 + ] ], "translation": "Może edytować tablice" }, @@ -1121,8 +1895,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 142], - ["src/views/settings/components/RolePermissions.tsx", 31] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 142 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 31 + ] ], "translation": "Może edytować karty" }, @@ -1131,8 +1911,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 147], - ["src/views/settings/components/RolePermissions.tsx", 36] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 147 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 36 + ] ], "translation": "Może edytować komentarze" }, @@ -1141,8 +1927,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 137], - ["src/views/settings/components/RolePermissions.tsx", 26] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 137 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 26 + ] ], "translation": "Może edytować listy" }, @@ -1151,8 +1943,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 152], - ["src/views/settings/components/RolePermissions.tsx", 41] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 152 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 41 + ] ], "translation": "Może edytować role i uprawnienia członków" }, @@ -1161,8 +1959,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 126], - ["src/views/settings/components/RolePermissions.tsx", 15] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 126 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 15 + ] ], "translation": "Może edytować przestrzeń roboczą" }, @@ -1171,8 +1975,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 151], - ["src/views/settings/components/RolePermissions.tsx", 40] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 151 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 40 + ] ], "translation": "Może zapraszać członków" }, @@ -1181,8 +1991,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 128], - ["src/views/settings/components/RolePermissions.tsx", 17] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 128 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 17 + ] ], "translation": "Może zarządzać ustawieniami przestrzeni roboczej" }, @@ -1191,8 +2007,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 153], - ["src/views/settings/components/RolePermissions.tsx", 42] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 153 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 42 + ] ], "translation": "Może usuwać członków" }, @@ -1201,8 +2023,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 130], - ["src/views/settings/components/RolePermissions.tsx", 19] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 130 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 19 + ] ], "translation": "Może wyświetlać tablice" }, @@ -1211,8 +2039,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 140], - ["src/views/settings/components/RolePermissions.tsx", 29] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 140 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 29 + ] ], "translation": "Może wyświetlać karty" }, @@ -1221,8 +2055,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 145], - ["src/views/settings/components/RolePermissions.tsx", 34] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 145 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 34 + ] ], "translation": "Może wyświetlać komentarze" }, @@ -1231,8 +2071,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 135], - ["src/views/settings/components/RolePermissions.tsx", 24] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 135 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 24 + ] ], "translation": "Może wyświetlać listy" }, @@ -1241,8 +2087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 150], - ["src/views/settings/components/RolePermissions.tsx", 39] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 150 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 39 + ] ], "translation": "Może wyświetlać członków" }, @@ -1251,8 +2103,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 125], - ["src/views/settings/components/RolePermissions.tsx", 14] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 125 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 14 + ] ], "translation": "Może wyświetlać przestrzeń roboczą" }, @@ -1261,26 +2119,74 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 49], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 176], - ["src/views/board/components/CardContextDuplicateModal.tsx", 267], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 44], - ["src/views/card/components/Comment.tsx", 195], - ["src/views/card/components/DeleteCardConfirmation.tsx", 86], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 64], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 77], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 55], - ["src/views/onboarding/select-plan/index.tsx", 209], - ["src/views/settings/components/Avatar.tsx", 287], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 168], + [ + "src/components/DeleteLabelConfirmation.tsx", + 49 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 176 + ], + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 267 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 44 + ], + [ + "src/views/card/components/Comment.tsx", + 195 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 86 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 64 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 77 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 55 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 209 + ], + [ + "src/views/settings/components/Avatar.tsx", + 287 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 168 + ], [ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 40 ], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 88], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 108] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 88 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 66 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 98 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 108 + ] ], "translation": "Anuluj" }, @@ -1288,7 +2194,12 @@ "message": "Card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 317]], + "origin": [ + [ + "src/views/card/index.tsx", + 364 + ] + ], "translation": "Karta" }, "sU2uWc": { @@ -1296,7 +2207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 67] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 67 + ] ], "translation": "Karta zduplikowana" }, @@ -1305,8 +2219,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 363], - ["src/views/card/index.tsx", 400] + [ + "src/views/card/index.tsx", + 410 + ], + [ + "src/views/card/index.tsx", + 447 + ] ], "translation": "Nie znaleziono karty" }, @@ -1314,17 +2234,43 @@ "message": "Card title", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 321]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 321 + ] + ], "translation": "Tytuł karty" }, + "4630Pc": { + "message": "Card updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 53 + ] + ], + "translation": "" + }, "rQXTmd": { "message": "Card URL copied to clipboard", "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 308], - ["src/views/card/components/Dropdown.tsx", 44], - ["src/views/public/board/CardModal.tsx", 38] + [ + "src/views/board/index.tsx", + 312 + ], + [ + "src/views/card/components/Dropdown.tsx", + 44 + ], + [ + "src/views/public/board/CardModal.tsx", + 38 + ] ], "translation": "Adres URL karty skopiowany do schowka" }, @@ -1333,10 +2279,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 88], - ["src/views/settings/AccountSettings.tsx", 98], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 109], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 178] + [ + "src/views/settings/AccountSettings.tsx", + 88 + ], + [ + "src/views/settings/AccountSettings.tsx", + 98 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 109 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 178 + ] ], "translation": "Zmień hasło" }, @@ -1344,25 +2302,43 @@ "message": "Change the application font size.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 63]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 63 + ] + ], "translation": "Zmień rozmiar czcionki aplikacji." }, "yD3ZSw": { "message": "Change your language preferences.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 53 + ] + ], "translation": "Zmień preferencje językowe." }, "gZxH/p": { "message": "changed the due date to <0>{formattedDate}", "placeholders": { - "formattedDate": ["formattedDate"] + "formattedDate": [ + "formattedDate" + ] }, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 303], - ["src/views/card/components/ActivityList.tsx", 317] + [ + "src/views/card/components/ActivityList.tsx", + 303 + ], + [ + "src/views/card/components/ActivityList.tsx", + 317 + ] ], "translation": "zmienił termin na <0>{formattedDate}" }, @@ -1370,7 +2346,12 @@ "message": "Check out some of our favorite open source projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 61]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 61 + ] + ], "translation": "Sprawdź niektóre z naszych ulubionych projektów open source." }, "5IXWmO": { @@ -1378,8 +2359,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 43], - ["src/views/auth/signup/index.tsx", 71] + [ + "src/views/auth/login/index.tsx", + 43 + ], + [ + "src/views/auth/signup/index.tsx", + 71 + ] ], "translation": "Sprawdź swoją skrzynkę odbiorczą" }, @@ -1387,7 +2374,12 @@ "message": "Checklist name", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 119]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 119 + ] + ], "translation": "Nazwa checklisty" }, "EH8IL3": { @@ -1395,8 +2387,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 108], - ["src/views/pricing/components/PricingTiers.tsx", 39] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 108 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 39 + ] ], "translation": "Checklisty" }, @@ -1404,7 +2402,12 @@ "message": "Choose a plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 122]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 122 + ] + ], "translation": "Wybierz plan" }, "VHS0aJ": { @@ -1423,7 +2426,12 @@ "message": "Clear any custom member permissions so that all members only inherit permissions from their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 67]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 67 + ] + ], "translation": "Wyczyść wszelkie niestandardowe uprawnienia członka, aby wszyscy członkowie dziedziczyli uprawnienia tylko z domyślnych ról." }, "jL82rC": { @@ -1435,7 +2443,10 @@ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 48 ], - ["src/views/settings/PermissionsSettings.tsx", 80] + [ + "src/views/settings/PermissionsSettings.tsx", + 80 + ] ], "translation": "Wyczyść niestandardowe uprawnienia" }, @@ -1443,18 +2454,31 @@ "message": "Clear filters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 227]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 227 + ] + ], "translation": "Wyczyść filtry" }, "RRn9jf": { "message": "Click on the link we've sent to {magicLinkRecipient} to sign in.", "placeholders": { - "magicLinkRecipient": ["magicLinkRecipient"] + "magicLinkRecipient": [ + "magicLinkRecipient" + ] }, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 48], - ["src/views/auth/signup/index.tsx", 76] + [ + "src/views/auth/login/index.tsx", + 48 + ], + [ + "src/views/auth/signup/index.tsx", + 76 + ] ], "translation": "Kliknij w link, który wysłaliśmy do {magicLinkRecipient}, aby się zalogować." }, @@ -1463,9 +2487,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 354], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 172], - ["src/views/settings/components/NewApiKeyModal.tsx", 136] + [ + "src/views/card/index.tsx", + 401 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 172 + ], + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 136 + ] ], "translation": "Zamknij" }, @@ -1473,14 +2506,24 @@ "message": "Code Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Code review" }, "EvArWh": { "message": "Collaborate seamlessly with your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 91 + ] + ], "translation": "Współpracuj płynnie ze swoim zespołem." }, "dtQIWT": { @@ -1488,7 +2531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 309] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 309 + ] ], "translation": "Współpraca" }, @@ -1497,9 +2543,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 317], - ["src/views/home/components/Features.tsx", 67], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 88] + [ + "src/components/NewWorkspaceForm.tsx", + 317 + ], + [ + "src/views/home/components/Features.tsx", + 67 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 88 + ] ], "translation": "Wkrótce dostępne" }, @@ -1508,8 +2563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 105], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 156] + [ + "src/views/home/components/Features.tsx", + 105 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 156 + ] ], "translation": "Komentarze" }, @@ -1517,65 +2578,112 @@ "message": "Company", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 95 + ] + ], "translation": "Firma" }, "bD8I7O": { "message": "Complete", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 94]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 94 + ] + ], "translation": "Ukończ" }, "cAgBMh": { "message": "Complete control and ownership:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 70]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 70 + ] + ], "translation": "Pełna kontrola i własność:" }, "Lt+ZP3": { "message": "completed a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 137]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 137 + ] + ], "translation": "ukończono element listy kontrolnej" }, "29sSki": { "message": "completed checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 249]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 249 + ] + ], "translation": "ukończono element listy kontrolnej <0>{0}" }, "tOZp9v": { "message": "Configurable user roles and permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 82]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 82 + ] + ], "translation": "Konfigurowalne role i uprawnienia użytkowników" }, "t0dTPm": { "message": "Configure webhooks to receive notifications when cards are created, updated, moved, or deleted.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 31]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 31 + ] + ], "translation": "Skonfiguruj webhooki, aby otrzymywać powiadomienia o tworzeniu, aktualizacji, przenoszeniu lub usuwaniu kart." }, "/f3t6v": { "message": "Configure which actions are allowed for each workspace role. These permissions apply to all members with that role.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 56]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 56 + ] + ], "translation": "Skonfiguruj, które działania są dozwolone dla każdej roli w przestrzeni roboczej. Te uprawnienia dotyczą wszystkich członków z tą rolą." }, "86XI28": { "message": "Confirm your email preferences:", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 81]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 81 + ] + ], "translation": "Potwierdź swoje preferencje dotyczące e-maili:" }, "479pdJ": { @@ -1583,7 +2691,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 150] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 150 + ] ], "translation": "Potwierdź nowe hasło" }, @@ -1591,42 +2702,72 @@ "message": "Connect", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Połącz" }, "3jod3l": { "message": "Connect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 212]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 212 + ] + ], "translation": "Połącz z GitHub" }, "nk7caK": { "message": "Connect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 162]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 162 + ] + ], "translation": "Połącz Trello" }, "sDLCvT": { "message": "Connect your favorite tools to streamline your workflow.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 122]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 122 + ] + ], "translation": "Połącz swoje ulubione narzędzia, aby usprawnić pracę." }, "MCIXdZ": { "message": "Connect your GitHub account to import projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 191]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 191 + ] + ], "translation": "Połącz swoje konto GitHub, aby zaimportować projekty." }, "5eZwRW": { "message": "Connect your Trello account to import boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 149]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 149 + ] + ], "translation": "Połącz swoje konto Trello, aby zaimportować tablice." }, "jfC/xh": { @@ -1634,8 +2775,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 38], - ["src/views/home/components/Header.tsx", 42] + [ + "src/views/home/components/Footer.tsx", + 38 + ], + [ + "src/views/home/components/Header.tsx", + 42 + ] ], "translation": "Kontakt" }, @@ -1643,7 +2790,12 @@ "message": "Contact Sales", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 95]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 95 + ] + ], "translation": "Kontakt z działem sprzedaży" }, "Bhgd0l": { @@ -1651,9 +2803,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 96], - ["src/views/pricing/components/PricingTiers.tsx", 96] + [ + "src/components/FeedbackModal.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ] ], "translation": "Skontaktuj się z nami" }, @@ -1661,7 +2822,12 @@ "message": "Content Creation", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 40]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 40 + ] + ], "translation": "Tworzenie treści" }, "xGVfLh": { @@ -1669,8 +2835,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 212], - ["src/views/onboarding/workspace-details/index.tsx", 291] + [ + "src/views/onboarding/select-plan/index.tsx", + 212 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 291 + ] ], "translation": "Kontynuuj" }, @@ -1678,44 +2850,76 @@ "message": "Continue with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "Kontynuuj przez " }, "gkzAEM": { "message": "Continue with {0}", "placeholders": { - "0": ["key === \"oidc\" ? oidcProviderName : provider.name"] + "0": [ + "key === \"oidc\" ? oidcProviderName : provider.name" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 355]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 355 + ] + ], "translation": "Kontynuuj przez {0}" }, "va/3u1": { "message": "Control who can view and edit your boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 86 + ] + ], "translation": "Kontroluj, kto może wyświetlać i edytować twoje tablice." }, "zQPhSa": { "message": "Convert to link", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 47]], + "origin": [ + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 47 + ] + ], "translation": "Konwertuj na link" }, "5RkSzq": { "message": "Copy board link", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugButton.tsx", 87]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 87 + ] + ], "translation": "Kopiuj link do tablicy" }, "F0YmUY": { "message": "Copy card link", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 58]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 58 + ] + ], "translation": "Kopiuj link do karty" }, "0utuU6": { @@ -1723,7 +2927,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 257] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 257 + ] ], "translation": "Kopiuj listy kontrolne" }, @@ -1732,7 +2939,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 221] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 221 + ] ], "translation": "Kopiuj etykiety" }, @@ -1740,7 +2950,12 @@ "message": "Copy link to card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 62]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 62 + ] + ], "translation": "Kopiuj link do karty" }, "uvH2xS": { @@ -1748,7 +2963,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 239] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 239 + ] ], "translation": "Kopiuj członków" }, @@ -1757,17 +2975,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 305] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 305 + ] ], "translation": "Funkcje podstawowe" }, "b9XOHo": { "message": "Create {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 166]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 166 + ] + ], "translation": "Utwórz {0}" }, "vgdzLf": { @@ -1775,9 +3003,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 213], - ["src/views/board/components/NewCardForm.tsx", 520], - ["src/views/board/components/NewListForm.tsx", 141] + [ + "src/components/LabelForm.tsx", + 213 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 520 + ], + [ + "src/views/board/components/NewListForm.tsx", + 141 + ] ], "translation": "Utwórz kolejną" }, @@ -1785,53 +3022,91 @@ "message": "Create API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 175]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 175 + ] + ], "translation": "Utwórz klucz API" }, "dsLT3m": { "message": "Create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 530]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 530 + ] + ], "translation": "Utwórz kartę" }, "d33Usy": { "message": "Create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 135]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 135 + ] + ], "translation": "Utwórz checklistę" }, "zKY5xi": { "message": "Create invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 349]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 349 + ] + ], "translation": "Utwórz link zaproszenia" }, "QtACvI": { "message": "Create label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Utwórz etykietę" }, "XTKtey": { "message": "Create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 153]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 153 + ] + ], "translation": "Utwórz listę" }, "VKoDQD": { "message": "Create new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], "origin": [ - ["src/views/boards/components/BoardsList.tsx", 80], - ["src/views/boards/index.tsx", 41] + [ + "src/views/boards/components/BoardsList.tsx", + 80 + ], + [ + "src/views/boards/index.tsx", + 41 + ] ], "translation": "Utwórz nową {0}" }, @@ -1839,7 +3114,12 @@ "message": "Create new key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 30 + ] + ], "translation": "Utwórz nowy klucz" }, "0+0/3e": { @@ -1847,8 +3127,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewCardForm.tsx", 417], - ["src/views/card/components/LabelSelector.tsx", 101] + [ + "src/views/board/components/NewCardForm.tsx", + 417 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 101 + ] ], "translation": "Utwórz nową etykietę" }, @@ -1857,8 +3143,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 92], - ["src/views/board/index.tsx", 671] + [ + "src/views/board/index.tsx", + 94 + ], + [ + "src/views/board/index.tsx", + 676 + ] ], "translation": "Utwórz nową listę" }, @@ -1866,14 +3158,24 @@ "message": "Create template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 132]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 132 + ] + ], "translation": "Utwórz szablon" }, "SiPp29": { "message": "Create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Utwórz webhook" }, "FdtSNC": { @@ -1881,8 +3183,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 352], - ["src/components/WorkspaceMenu.tsx", 160] + [ + "src/components/NewWorkspaceForm.tsx", + 352 + ], + [ + "src/components/WorkspaceMenu.tsx", + 160 + ] ], "translation": "Utwórz workspace" }, @@ -1890,14 +3198,24 @@ "message": "Created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 236]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 236 + ] + ], "translation": "Utworzono" }, "f8lDFq": { "message": "created the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 124]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 124 + ] + ], "translation": "utworzył(a) kartę" }, "J5nbej": { @@ -1905,9 +3223,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Krytyczne" }, @@ -1915,7 +3242,12 @@ "message": "Crop your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 253]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 253 + ] + ], "translation": "Przytnij swój avatar" }, "D3C4Yx": { @@ -1923,7 +3255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 19] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 19 + ] ], "translation": "Wymagane jest obecne hasło" }, @@ -1931,7 +3266,12 @@ "message": "Custom board templates", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 38 + ] + ], "translation": "Niestandardowe szablony tablic" }, "A42Dqn": { @@ -1939,8 +3279,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 172], - ["src/views/pricing/components/PricingTiers.tsx", 83] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 172 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 83 + ] ], "translation": "Niestandardowy branding" }, @@ -1948,28 +3294,48 @@ "message": "Custom domain", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 74]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 74 + ] + ], "translation": "Własna domena" }, "2M84k3": { "message": "Custom permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 64]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 64 + ] + ], "translation": "Niestandardowe uprawnienia" }, "UirJfL": { "message": "Custom SLA", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 105]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 105 + ] + ], "translation": "Niestandardowy SLA" }, "u2+JIh": { "message": "Custom URLs require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 283]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 283 + ] + ], "translation": "Własne adresy URL wymagają przejścia na plan Pro" }, "7RpHg/": { @@ -1977,8 +3343,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 100], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 101] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 101 + ] ], "translation": "Niestandardowa nazwa użytkownika" }, @@ -1986,7 +3358,12 @@ "message": "Custom usernames require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 220]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 220 + ] + ], "translation": "Niestandardowe nazwy użytkownika wymagają uaktualnienia do planu Pro" }, "j9IZZ0": { @@ -1994,8 +3371,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 307], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 78] + [ + "src/components/NewWorkspaceForm.tsx", + 307 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 78 + ] ], "translation": "Niestandardowy adres URL workspace" }, @@ -2003,35 +3386,60 @@ "message": "Custom workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 81]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 81 + ] + ], "translation": "Niestandardowa nazwa użytkownika workspace" }, "n+xLOH": { "message": "Customer Support", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 54]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 54 + ] + ], "translation": "Obsługa klienta" }, "pvnfJD": { "message": "Dark", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 158]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 158 + ] + ], "translation": "Ciemny" }, "cp1rsD": { "message": "Deactivate invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 348]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 348 + ] + ], "translation": "Dezaktywuj link zaproszenia" }, "bKzM8L": { "message": "Dedicated account manager", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 104]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 104 + ] + ], "translation": "Dedykowany opiekun konta" }, "P8Cunr": { @@ -2039,8 +3447,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 98], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 99] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 98 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 99 + ] ], "translation": "Domyślna nazwa użytkownika" }, @@ -2049,15 +3463,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 51], - ["src/components/LabelForm.tsx", 228], - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 52], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 47], - ["src/views/card/components/DeleteCardConfirmation.tsx", 92], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 67], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 83], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 73], - ["src/views/settings/components/WebhookList.tsx", 140] + [ + "src/components/DeleteLabelConfirmation.tsx", + 51 + ], + [ + "src/components/LabelForm.tsx", + 228 + ], + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 52 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 47 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 92 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 67 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 83 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 73 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 140 + ] ], "translation": "Usuń" }, @@ -2066,9 +3507,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 70], - ["src/views/settings/AccountSettings.tsx", 80], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 96] + [ + "src/views/settings/AccountSettings.tsx", + 70 + ], + [ + "src/views/settings/AccountSettings.tsx", + 80 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 96 + ] ], "translation": "Usuń konto" }, @@ -2076,7 +3526,12 @@ "message": "Delete board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Usuń tablicę" }, "nabda1": { @@ -2084,8 +3539,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMenu.tsx", 74], - ["src/views/card/components/Dropdown.tsx", 76] + [ + "src/views/board/components/CardContextMenu.tsx", + 74 + ], + [ + "src/views/card/components/Dropdown.tsx", + 76 + ] ], "translation": "Usuń kartę" }, @@ -2093,21 +3554,36 @@ "message": "Delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 120]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 120 + ] + ], "translation": "Usuń komentarz" }, "lYT7pQ": { "message": "Delete list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 147]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 147 + ] + ], "translation": "Usuń listę" }, "DFjdv0": { "message": "Delete template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Usuń szablon" }, "snMaH4": { @@ -2115,7 +3591,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 46] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 46 + ] ], "translation": "Usuń webhook" }, @@ -2124,9 +3603,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 106], - ["src/views/settings/WorkspaceSettings.tsx", 125], - ["src/views/settings/WorkspaceSettings.tsx", 136] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 106 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 125 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 136 + ] ], "translation": "Usuń workspace" }, @@ -2134,116 +3622,200 @@ "message": "deleted a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 134]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 134 + ] + ], "translation": "usunięto checklistę" }, "W5r8Qh": { "message": "deleted a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 139]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 139 + ] + ], "translation": "usunięto element checklisty" }, "BMkVQ3": { "message": "deleted checklist <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 224]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 224 + ] + ], "translation": "usunięto checklistę <0>{0}" }, "CHZ1jC": { "message": "deleted checklist item <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 267]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 267 + ] + ], "translation": "usunięto element checklisty <0>{0}" }, "f8fH8W": { "message": "Design", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 45]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 45 + ] + ], "translation": "Design" }, "Odv3J6": { "message": "Disconnect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 223]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 223 + ] + ], "translation": "Odłącz GitHub" }, "YBBifR": { "message": "Disconnect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 177]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 177 + ] + ], "translation": "Odłącz Trello" }, "1sRmLC": { "message": "Discuss and collaborate on cards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 106]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 106 + ] + ], "translation": "Dyskutuj i współpracuj nad kartami." }, "pfa8F0": { "message": "Display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 36 + ] + ], "translation": "Nazwa wyświetlana" }, "MlyjJu": { "message": "Display name cannot exceed 280 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 22]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 22 + ] + ], "translation": "Nazwa wyświetlana nie może przekraczać 280 znaków" }, "KFJgmZ": { "message": "Display name must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 19 + ] + ], "translation": "Nazwa wyświetlana musi mieć co najmniej 3 znaki" }, "x8GeCD": { "message": "Display name updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 41]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 41 + ] + ], "translation": "Nazwa wyświetlana została zaktualizowana" }, "evj0lK": { "message": "Do you offer a free plan?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 83]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 83 + ] + ], "translation": "Czy oferujecie darmowy plan?" }, "jDRt4n": { "message": "Do you want to unsubscribe?", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 78]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 78 + ] + ], "translation": "Czy chcesz zrezygnować z subskrypcji?" }, "JyXBgS": { "message": "docs", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 109]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 109 + ] + ], "translation": "dokumentacja" }, "TbjyhA": { "message": "Docs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 20]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 20 + ] + ], "translation": "Dokumentacja" }, "TvY/XA": { @@ -2251,12 +3823,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 209], - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36], - ["src/views/home/components/Footer.tsx", 78], - ["src/views/home/components/Header.tsx", 36] + [ + "src/components/UserMenu.tsx", + 209 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ], + [ + "src/views/home/components/Footer.tsx", + 78 + ], + [ + "src/views/home/components/Header.tsx", + 36 + ] ], "translation": "Dokumentacja" }, @@ -2264,7 +3854,12 @@ "message": "Don't have an account? <0><1>Sign up", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 63]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 63 + ] + ], "translation": "Nie masz konta? <0><1>Zarejestruj się" }, "DPfwMq": { @@ -2272,15 +3867,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 36], - ["src/views/board/components/CardContextLabelsModal.tsx", 48], - ["src/views/board/components/CardContextMembersModal.tsx", 68], - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 48], - ["src/views/boards/components/TemplateBoards.tsx", 61] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 36 + ], + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 48 + ], + [ + "src/views/board/components/CardContextMembersModal.tsx", + 68 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 48 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 61 + ] ], "translation": "Gotowe" }, @@ -2288,7 +3910,12 @@ "message": "Download failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 142]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 142 + ] + ], "translation": "Pobieranie nie powiodło się" }, "XicmhT": { @@ -2296,9 +3923,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/Filters.tsx", 171], - ["src/views/board/components/NewCardForm.tsx", 472], - ["src/views/card/index.tsx", 153] + [ + "src/views/board/components/Filters.tsx", + 171 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 472 + ], + [ + "src/views/card/index.tsx", + 155 + ] ], "translation": "Termin wykonania" }, @@ -2306,28 +3942,48 @@ "message": "Due next month", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 132]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 132 + ] + ], "translation": "Termin w przyszłym miesiącu" }, "iHcdea": { "message": "Due next week", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 127]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 127 + ] + ], "translation": "Termin w przyszłym tygodniu" }, "1iShX0": { "message": "Due today", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 117]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 117 + ] + ], "translation": "Termin dzisiaj" }, "zxKs+y": { "message": "Due tomorrow", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 122]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 122 + ] + ], "translation": "Termin jutro" }, "euc6Ns": { @@ -2335,7 +3991,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Duplikuj" }, @@ -2344,8 +4003,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 111], - ["src/views/board/components/CardContextMenu.tsx", 68] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 111 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 68 + ] ], "translation": "Duplikuj kartę" }, @@ -2354,7 +4019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Duplikowanie…" }, @@ -2363,8 +4031,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 42], - ["src/views/settings/components/WebhookList.tsx", 132] + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 42 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 132 + ] ], "translation": "Edytuj" }, @@ -2373,8 +4047,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/BoardDropdown.tsx", 102], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 116] + [ + "src/views/board/components/BoardDropdown.tsx", + 102 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 116 + ] ], "translation": "Edytuj URL tablicy" }, @@ -2382,14 +4062,24 @@ "message": "Edit comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 111]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 111 + ] + ], "translation": "Edytuj komentarz" }, "dgr4Kq": { "message": "Edit label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Edytuj etykietę" }, "TCOMOO": { @@ -2397,8 +4087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 162], - ["src/views/members/index.tsx", 224] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 162 + ], + [ + "src/views/members/index.tsx", + 224 + ] ], "translation": "Edytuj uprawnienia" }, @@ -2406,35 +4102,60 @@ "message": "Edit webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Edytuj webhook" }, "klpSmb": { "message": "Edit workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 162]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 162 + ] + ], "translation": "Edytuj URL przestrzeni roboczej" }, "PRofO0": { "message": "Edit YouTube Video", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 108]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 108 + ] + ], "translation": "Edytuj film na YouTube" }, "gGx5tM": { "message": "Editing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 44]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 44 + ] + ], "translation": "Edycja" }, "b/LfJo": { "message": "email", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "email" }, "O3oNi5": { @@ -2442,8 +4163,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 272], - ["src/views/settings/AccountSettings.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 272 + ], + [ + "src/views/settings/AccountSettings.tsx", + 43 + ] ], "translation": "E-mail" }, @@ -2452,7 +4179,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 191] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 191 + ] ], "translation": "Powiadomienia e-mail" }, @@ -2460,14 +4190,24 @@ "message": "Email notifications for mentions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 60]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 60 + ] + ], "translation": "Powiadomienia e-mail o wzmiankach" }, "IqjpYe": { "message": "Email visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 100 + ] + ], "translation": "Widoczność e-maila" }, "bFREhu": { @@ -2475,7 +4215,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 200] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 200 + ] ], "translation": "Koniec listy" }, @@ -2483,7 +4226,12 @@ "message": "Engineering", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Inżynieria" }, "0+ewPp": { @@ -2491,9 +4239,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Ulepszenie" }, @@ -2501,14 +4258,24 @@ "message": "Enter a custom title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 131]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 131 + ] + ], "translation": "Wprowadź własny tytuł" }, "rQRXo8": { "message": "Enter new secret to update", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "Wprowadź nowy sekret, aby zaktualizować" }, "fR9laE": { @@ -2516,7 +4283,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 122] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 122 + ] ], "translation": "Wprowadź swoje obecne hasło" }, @@ -2525,7 +4295,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 111] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 111 + ] ], "translation": "Wprowadź swoje obecne hasło i wybierz nowe, bezpieczne hasło." }, @@ -2533,14 +4306,24 @@ "message": "Enter your email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 402]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 402 + ] + ], "translation": "Wprowadź swój adres e-mail" }, "n9V+ps": { "message": "Enter your name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 390]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 390 + ] + ], "translation": "Wprowadź swoje imię i nazwisko" }, "0StR7t": { @@ -2548,7 +4331,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 136] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 136 + ] ], "translation": "Wprowadź nowe hasło" }, @@ -2556,7 +4342,12 @@ "message": "Enter your password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 416]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 416 + ] + ], "translation": "Wprowadź hasło" }, "GpB8YV": { @@ -2564,8 +4355,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 334], - ["src/views/pricing/components/PricingTiers.tsx", 92] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 334 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 92 + ] ], "translation": "Enterprise" }, @@ -2574,9 +4371,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 77], - ["src/views/boards/components/NewBoardForm.tsx", 92], - ["src/views/members/components/InviteMemberForm.tsx", 215] + [ + "src/views/boards/components/NewBoardForm.tsx", + 77 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 92 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 215 + ] ], "translation": "Błąd" }, @@ -2585,7 +4391,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 89] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 89 + ] ], "translation": "Błąd podczas zmiany hasła" }, @@ -2593,21 +4402,36 @@ "message": "Error connecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 106]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 106 + ] + ], "translation": "Błąd podczas łączenia z GitHub" }, "cji2nM": { "message": "Error creating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 128]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 128 + ] + ], "translation": "Błąd podczas tworzenia linku zaproszenia" }, "USVCGU": { "message": "Error deactivating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 144]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 144 + ] + ], "translation": "Błąd podczas dezaktywacji linku zaproszenia" }, "bqAQaT": { @@ -2615,7 +4439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 39] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 39 + ] ], "translation": "Błąd podczas usuwania konta" }, @@ -2623,7 +4450,12 @@ "message": "Error deleting label", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 25]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 25 + ] + ], "translation": "Błąd podczas usuwania etykiety" }, "9s9O5h": { @@ -2631,7 +4463,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 45] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 45 + ] ], "translation": "Błąd podczas usuwania przestrzeni roboczej" }, @@ -2639,14 +4474,24 @@ "message": "Error disconnecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 129]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 129 + ] + ], "translation": "Błąd podczas odłączania GitHub" }, "lKAvEd": { "message": "Error disconnecting Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 86 + ] + ], "translation": "Błąd podczas odłączania Trello" }, "rarRW/": { @@ -2654,8 +4499,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 97], - ["src/views/members/components/InviteMemberForm.tsx", 103] + [ + "src/views/members/components/InviteMemberForm.tsx", + 97 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 103 + ] ], "translation": "Błąd podczas zapraszania członka" }, @@ -2663,7 +4514,12 @@ "message": "Error updating display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 54]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 54 + ] + ], "translation": "Błąd podczas aktualizacji wyświetlanej nazwy" }, "CkVV1t": { @@ -2671,7 +4527,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 63 + ] ], "translation": "Błąd podczas aktualizacji opisu przestrzeni roboczej" }, @@ -2680,7 +4539,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 58] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 58 + ] ], "translation": "Błąd podczas aktualizacji nazwy przestrzeni roboczej" }, @@ -2689,7 +4551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 75] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 75 + ] ], "translation": "Błąd podczas aktualizacji adresu URL przestrzeni roboczej" }, @@ -2698,8 +4563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 240 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 43 + ] ], "translation": "Błąd podczas aktualizacji subskrypcji" }, @@ -2707,7 +4578,12 @@ "message": "Error upgrading to Pro", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 146]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 146 + ] + ], "translation": "Błąd podczas aktualizacji do wersji Pro", "obsolete": true }, @@ -2716,8 +4592,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/Avatar.tsx", 69], - ["src/views/settings/components/Avatar.tsx", 199] + [ + "src/views/settings/components/Avatar.tsx", + 69 + ], + [ + "src/views/settings/components/Avatar.tsx", + 199 + ] ], "translation": "Błąd podczas przesyłania zdjęcia profilowego" }, @@ -2726,8 +4608,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 245], - ["src/views/settings/components/WebhookList.tsx", 224] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 245 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 224 + ] ], "translation": "Zdarzenia" }, @@ -2735,42 +4623,72 @@ "message": "Everything in the free plan, plus:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 52 + ] + ], "translation": "Wszystko z darmowego planu oraz:" }, "ANyn0x": { "message": "Everything you need, free forever. Unlimited boards, unlimited lists, unlimited cards. Upgrade any time.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 33]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 33 + ] + ], "translation": "Wszystko, czego potrzebujesz, za darmo na zawsze. Nielimitowane tablice, nielimitowane listy, nielimitowane karty. Możesz uaktualnić w dowolnym momencie." }, "t+R8+P": { "message": "Execution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 91]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 91 + ] + ], "translation": "Wykonanie" }, "GwNIE2": { "message": "Extended Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 34]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 34 + ] + ], "translation": "Rozszerzona mapa drogowa" }, "HYV6Lq": { "message": "Failed to accept invitation. Please try again later, or contact customer support.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 41]], + "origin": [ + [ + "src/views/invite/index.tsx", + 41 + ] + ], "translation": "Nie udało się zaakceptować zaproszenia. Spróbuj ponownie później lub skontaktuj się z obsługą klienta." }, "lXvXNI": { "message": "Failed to copy invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 216]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 216 + ] + ], "translation": "Nie udało się skopiować linku do zaproszenia" }, "53QYh8": { @@ -2778,8 +4696,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 78], - ["src/views/boards/components/NewBoardForm.tsx", 93] + [ + "src/views/boards/components/NewBoardForm.tsx", + 78 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 93 + ] ], "translation": "Nie udało się utworzyć tablicy" }, @@ -2787,7 +4711,12 @@ "message": "Failed to create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 109]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 109 + ] + ], "translation": "Nie udało się utworzyć webhooka" }, "9YPBHv": { @@ -2795,7 +4724,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 28 + ] ], "translation": "Nie udało się usunąć webhooka" }, @@ -2803,16 +4735,28 @@ "message": "Failed to fetch video information", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 82]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 82 + ] + ], "translation": "Nie udało się pobrać informacji o wideo" }, "YtUfwW": { "message": "Failed to login with {0}. Please try again.", "placeholders": { - "0": ["provider.at(0)?.toUpperCase() + provider.slice(1)"] + "0": [ + "provider.at(0)?.toUpperCase() + provider.slice(1)" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 291]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 291 + ] + ], "translation": "Nie udało się zalogować przez {0}. Spróbuj ponownie." }, "5ntVtp": { @@ -2820,8 +4764,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 143], - ["src/views/settings/components/WebhookList.tsx", 184] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 143 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 184 + ] ], "translation": "Nie udało się przetestować webhooka" }, @@ -2829,21 +4779,36 @@ "message": "Failed to update webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 123]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 123 + ] + ], "translation": "Nie udało się zaktualizować webhooka" }, "ZL1A+p": { "message": "Failed to upload attachment. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 52]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 52 + ] + ], "translation": "Nie udało się przesłać załącznika. Spróbuj ponownie." }, "/lDBHm": { "message": "FAQ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 41 + ] + ], "translation": "FAQ" }, "aJ4pMe": { @@ -2851,8 +4816,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Faqs.tsx", 143], - ["src/views/home/components/Footer.tsx", 52] + [ + "src/views/home/components/Faqs.tsx", + 143 + ], + [ + "src/views/home/components/Footer.tsx", + 52 + ] ], "translation": "FAQ" }, @@ -2861,9 +4832,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Funkcja" }, @@ -2871,7 +4851,12 @@ "message": "Feature Request", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 65]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 65 + ] + ], "translation": "Prośba o funkcję" }, "PpZkda": { @@ -2879,10 +4864,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 132], - ["src/views/home/components/Footer.tsx", 50], - ["src/views/home/components/Header.tsx", 17], - ["src/views/home/components/Header.tsx", 33] + [ + "src/views/home/components/Features.tsx", + 132 + ], + [ + "src/views/home/components/Footer.tsx", + 50 + ], + [ + "src/views/home/components/Header.tsx", + 17 + ], + [ + "src/views/home/components/Header.tsx", + 33 + ] ], "translation": "Funkcje" }, @@ -2891,8 +4888,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 59], - ["src/components/UserMenu.tsx", 217] + [ + "src/components/FeedbackModal.tsx", + 59 + ], + [ + "src/components/UserMenu.tsx", + 217 + ] ], "translation": "Opinia" }, @@ -2900,42 +4903,72 @@ "message": "Feedback sent", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 33]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 33 + ] + ], "translation": "Opinia została wysłana" }, "F6m23G": { "message": "File uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 89]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 89 + ] + ], "translation": "Przesyłanie plików" }, "o7J4JM": { "message": "Filter", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 221]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 221 + ] + ], "translation": "Filtruj" }, "l31EoQ": { "message": "Find answers to common questions about Kan. Can't find what you're looking for? Feel free to <0>contact us.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 150]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 150 + ] + ], "translation": "Znajdź odpowiedzi na najczęstsze pytania dotyczące Kan. Nie możesz znaleźć tego, czego szukasz? Śmiało <0>skontaktuj się z nami." }, "q3il6U": { "message": "Font size", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 60]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 60 + ] + ], "translation": "Rozmiar czcionki" }, "+3TYXa": { "message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 41 + ] + ], "translation": "Aby zapewnić długoterminową stabilność, wiemy, że wszystkie dobre projekty open source potrzebują źródła finansowania. Naszym jest płatna chmura dla przestrzeni roboczych z wieloma użytkownikami oraz dla niestandardowych slugów przestrzeni roboczych. Nie ma obowiązku korzystania z tej opcji – możesz samodzielnie hostować oprogramowanie na własnej infrastrukturze bez żadnych opłat." }, "2POOFK": { @@ -2943,12 +4976,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 77], - ["src/views/onboarding/select-plan/index.tsx", 78], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 331], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/PricingTiers.tsx", 26] + [ + "src/views/onboarding/select-plan/index.tsx", + 77 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 78 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 331 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 26 + ] ], "translation": "Darmowe" }, @@ -2956,7 +5007,12 @@ "message": "Free for everyone", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 31]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 31 + ] + ], "translation": "Darmowe dla wszystkich" }, "W/nQk1": { @@ -2964,8 +5020,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 333], - ["src/views/members/index.tsx", 293] + [ + "src/views/members/components/InviteMemberForm.tsx", + 333 + ], + [ + "src/views/members/index.tsx", + 293 + ] ], "translation": "Plan darmowy" }, @@ -2973,7 +5035,12 @@ "message": "Free, forever", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 34]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 34 + ] + ], "translation": "Darmowe, na zawsze" }, "6uBU1F": { @@ -2981,9 +5048,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 239], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 240], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 241] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 239 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 240 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 241 + ] ], "translation": "Pełny dostęp do API" }, @@ -2991,21 +5067,36 @@ "message": "Full-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Pełny etat" }, "rmN315": { "message": "Fun", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Zabawa" }, "Weq9zb": { "message": "General", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 54]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 54 + ] + ], "translation": "Ogólne" }, "ZDIydz": { @@ -3013,12 +5104,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 71], - ["src/views/home/components/Cta.tsx", 61], - ["src/views/home/components/Header.tsx", 106], - ["src/views/pricing/components/PricingTiers.tsx", 29], - ["src/views/pricing/components/PricingTiers.tsx", 50], - ["src/views/pricing/components/PricingTiers.tsx", 73] + [ + "src/views/auth/signup/index.tsx", + 71 + ], + [ + "src/views/home/components/Cta.tsx", + 61 + ], + [ + "src/views/home/components/Header.tsx", + 106 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 29 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 50 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 73 + ] ], "translation": "Rozpocznij" }, @@ -3027,53 +5136,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 31], - ["src/views/pricing/components/Pricing.tsx", 49] + [ + "src/views/pricing/components/Pricing.tsx", + 31 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 49 + ] ], "translation": "Rozpocznij" }, "6FsGbN": { "message": "Get started by creating a new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Rozpocznij, tworząc nowy {0}" }, "zC8Whw": { "message": "Get started by creating a new list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 656]], + "origin": [ + [ + "src/views/board/index.tsx", + 661 + ] + ], "translation": "Rozpocznij, tworząc nową listę" }, "oW13KZ": { "message": "Get started for free today", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 54]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 54 + ] + ], "translation": "Rozpocznij za darmo już dziś" }, "+OhFss": { "message": "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 92]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 92 + ] + ], "translation": "Rozpocznij za darmo, bez limitów użytkowania. Aby współpracować, przejdź na plan dopasowany do wielkości Twojego zespołu." }, "rD6UIt": { "message": "Get started on Cloud", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 75]], + "origin": [ + [ + "src/views/home/index.tsx", + 75 + ] + ], "translation": "Rozpocznij w chmurze" }, "7hktsm": { "message": "Getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 25 + ] + ], "translation": "Pierwsze kroki" }, "RkXlPZ": { @@ -3081,8 +5228,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 37], - ["src/views/settings/IntegrationsSettings.tsx", 186] + [ + "src/views/home/components/Footer.tsx", + 37 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 186 + ] ], "translation": "GitHub" }, @@ -3090,21 +5243,36 @@ "message": "GitHub connected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 99]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 99 + ] + ], "translation": "GitHub połączony" }, "/bBVaD": { "message": "GitHub disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 122]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 122 + ] + ], "translation": "GitHub odłączony" }, "7eMo+U": { "message": "Go Home", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 113]], + "origin": [ + [ + "src/views/invite/index.tsx", + 113 + ] + ], "translation": "Przejdź do strony głównej" }, "UveK6V": { @@ -3112,8 +5280,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Header.tsx", 100], - ["src/views/invite/index.tsx", 144] + [ + "src/views/home/components/Header.tsx", + 100 + ], + [ + "src/views/invite/index.tsx", + 144 + ] ], "translation": "Przejdź do aplikacji" }, @@ -3122,8 +5296,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 107], - ["src/pages/404.tsx", 44] + [ + "src/components/SideNavigation.tsx", + 108 + ], + [ + "src/pages/404.tsx", + 44 + ] ], "translation": "Przejdź do tablic" }, @@ -3131,35 +5311,60 @@ "message": "Go to homepage", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 38]], + "origin": [ + [ + "src/pages/404.tsx", + 38 + ] + ], "translation": "Przejdź do strony głównej" }, "KAsRdK": { "message": "Go to members", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 131]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 132 + ] + ], "translation": "Przejdź do członków" }, "1WuwiM": { "message": "Go to settings", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 143]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 144 + ] + ], "translation": "Przejdź do ustawień" }, "csFbe+": { "message": "Go to templates", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 119]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 120 + ] + ], "translation": "Przejdź do szablonów" }, "SUvm1Y": { "message": "Good for individuals starting out who just need the essentials.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 79]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 79 + ] + ], "translation": "Dobry dla osób zaczynających, które potrzebują tylko podstaw." }, "cdyS7J": { @@ -3167,9 +5372,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 257], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 258], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 259] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 257 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 258 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 259 + ] ], "translation": "Google SSO" }, @@ -3178,7 +5392,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 260] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 260 + ] ], "translation": "Google SSO + SAML" }, @@ -3186,77 +5403,132 @@ "message": "Guest", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 203]], + "origin": [ + [ + "src/views/members/index.tsx", + 203 + ] + ], "translation": "Gość" }, "CB/NpV": { "message": "High Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Wysoki priorytet" }, "XXbgHS": { "message": "Hired", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 80]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 80 + ] + ], "translation": "Zatrudniony" }, "SRvxId": { "message": "HMAC secret for signature verification", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "Sekret HMAC do weryfikacji podpisu" }, "LrcnbT": { "message": "Host Kan on your own infrastructure. Ideal for organisations that need complete control over their data.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 69]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 69 + ] + ], "translation": "Hostuj Kan na własnej infrastrukturze. Idealne dla organizacji, które potrzebują pełnej kontroli nad swoimi danymi." }, "WI4eGo": { "message": "How do I get a custom URL?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 64]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 64 + ] + ], "translation": "Jak uzyskać własny adres URL?" }, "yV7o5I": { "message": "How do I import my Trello boards?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 46]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 46 + ] + ], "translation": "Jak zaimportować moje tablice Trello?" }, "nol/Fb": { "message": "How do I invite team members?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 108]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 108 + ] + ], "translation": "Jak zaprosić członków zespołu?" }, "KuSt9W": { "message": "How do I self-host?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 124]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 124 + ] + ], "translation": "Jak samodzielnie hostować?" }, "UeDFpo": { "message": "How is the project funded?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 38]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 38 + ] + ], "translation": "Jak finansowany jest projekt?" }, "6S8zjx": { "message": "https://www.youtube.com/watch?v=...", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 151]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 151 + ] + ], "translation": "https://www.youtube.com/watch?v=..." }, "2liqDZ": { @@ -3264,7 +5536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 82] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 82 + ] ], "translation": "Potwierdzam, że wszystkie dane mojego konta zostaną trwale usunięte i chcę kontynuować." }, @@ -3273,7 +5548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 92] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 92 + ] ], "translation": "Potwierdzam, że wszystkie dane przestrzeni roboczej zostaną trwale usunięte i chcę kontynuować." }, @@ -3281,21 +5559,36 @@ "message": "Ideas", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 88]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 88 + ] + ], "translation": "Pomysły" }, "F/vB2g": { "message": "Ideas to improve this page...", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 75]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 75 + ] + ], "translation": "Pomysły na ulepszenie tej strony..." }, "l3s5ri": { "message": "Import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 73]], + "origin": [ + [ + "src/views/boards/index.tsx", + 73 + ] + ], "translation": "Importuj" }, "2MPcep": { @@ -3303,8 +5596,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 229], - ["src/views/boards/components/ImportBoardsForm.tsx", 381] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 229 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 381 + ] ], "translation": "Import zakończony" }, @@ -3313,8 +5612,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 242], - ["src/views/boards/components/ImportBoardsForm.tsx", 394] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 242 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 394 + ] ], "translation": "Import nie powiódł się" }, @@ -3322,28 +5627,48 @@ "message": "Import your Trello boards and hit the ground running.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 96]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 96 + ] + ], "translation": "Zaimportuj swoje tablice Trello i zacznij działać od razu." }, "c/IAuR": { "message": "Important", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Ważne" }, "xMn+V9": { "message": "Importing from Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 27]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 27 + ] + ], "translation": "Importowanie z Trello" }, "g2xBxu": { "message": "Importing your Trello boards into Kan is easy. You can follow our step-by-step guide <0>here.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 49]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 49 + ] + ], "translation": "Importowanie tablic Trello do Kan jest proste. Możesz skorzystać z naszego przewodnika krok po kroku <0>tutaj." }, "02i3WU": { @@ -3351,7 +5676,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 313] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 313 + ] ], "translation": "Importy" }, @@ -3359,7 +5687,12 @@ "message": "in", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 167]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 167 + ] + ], "translation": "w" }, "WbTDwg": { @@ -3367,11 +5700,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 58] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 58 + ] ], "translation": "W trakcie" }, @@ -3379,14 +5727,24 @@ "message": "Inactive", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 106]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] + ], "translation": "Nieaktywny" }, "6mbe4b": { "message": "Individuals", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 28]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 28 + ] + ], "translation": "Osoby" }, "nbfdhU": { @@ -3394,8 +5752,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 77], - ["src/views/home/components/Features.tsx", 121] + [ + "src/components/SettingsLayout.tsx", + 77 + ], + [ + "src/views/home/components/Features.tsx", + 121 + ] ], "translation": "Integracje" }, @@ -3404,7 +5768,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 140] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 140 + ] ], "translation": "Inteligentne wyszukiwanie" }, @@ -3412,42 +5779,72 @@ "message": "Interviewing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 77]], - "translation": "Rozmowa kwalifikacyjna" - }, - "XILg0L": { + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 77 + ] + ], + "translation": "Rozmowa kwalifikacyjna" + }, + "XILg0L": { "message": "Invalid email address", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 51]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 51 + ] + ], "translation": "Nieprawidłowy adres e-mail" }, "odFCYX": { "message": "Invalid invitation", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 105]], + "origin": [ + [ + "src/views/invite/index.tsx", + 105 + ] + ], "translation": "Nieprawidłowe zaproszenie" }, "MFKlMB": { "message": "Invite", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 306]], + "origin": [ + [ + "src/views/members/index.tsx", + 306 + ] + ], "translation": "Zaproś" }, "KLJ4eD": { "message": "Invite link copied", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 209]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 209 + ] + ], "translation": "Link do zaproszenia skopiowany" }, "mZGPxt": { "message": "Invite link copied to clipboard", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 210]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 210 + ] + ], "translation": "Link do zaproszenia skopiowany do schowka" }, "D9ROdV": { @@ -3455,8 +5852,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 207], - ["src/views/pricing/components/PricingTiers.tsx", 58] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 207 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 58 + ] ], "translation": "Linki do zaproszeń" }, @@ -3464,7 +5867,12 @@ "message": "Invite links require a Team or Pro subscription. Please upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 123]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 123 + ] + ], "translation": "Linki do zaproszeń wymagają subskrypcji Team lub Pro. Zaktualizuj swój workspace." }, "+djOzj": { @@ -3472,8 +5880,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 115], - ["src/views/members/components/InviteMemberForm.tsx", 367] + [ + "src/views/card/components/MemberSelector.tsx", + 115 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 367 + ] ], "translation": "Zaproś członka" }, @@ -3481,7 +5895,12 @@ "message": "Inviting members requires a Team Plan. You'll be redirected to upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 336]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 336 + ] + ], "translation": "Zapraszanie członków wymaga planu Team. Zostaniesz przekierowany(-a) do aktualizacji workspace." }, "c9AJhn": { @@ -3489,8 +5908,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/invite/index.tsx", 79], - ["src/views/invite/index.tsx", 129] + [ + "src/views/invite/index.tsx", + 79 + ], + [ + "src/views/invite/index.tsx", + 129 + ] ], "translation": "Dołącz do workspace" }, @@ -3498,28 +5923,48 @@ "message": "Join workspace | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 91]], + "origin": [ + [ + "src/views/invite/index.tsx", + 91 + ] + ], "translation": "Dołącz do workspace | kan.bn" }, "wM8xd8": { "message": "Junior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Junior" }, "aWDhU5": { "message": "Kanban is better with a team. Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 51]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 51 + ] + ], "translation": "Kanban jest lepszy w zespole. Idealny dla małych i rozwijających się zespołów, które chcą współpracować." }, "Xjj/kS": { "message": "Kanban reimagined", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 136]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 136 + ] + ], "translation": "Nowe spojrzenie na Kanban" }, "JbXXUW": { @@ -3527,8 +5972,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 57], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 67] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 57 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 67 + ] ], "translation": "Pamiętaj, że tej akcji nie można cofnąć." }, @@ -3536,7 +5987,12 @@ "message": "Keyboard Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 321]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 321 + ] + ], "translation": "Skróty klawiaturowe" }, "h8DugX": { @@ -3544,10 +6000,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextLabelsModal.tsx", 31], - ["src/views/board/components/Filters.tsx", 155], - ["src/views/board/components/NewCardForm.tsx", 421], - ["src/views/card/index.tsx", 133] + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 31 + ], + [ + "src/views/board/components/Filters.tsx", + 155 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 421 + ], + [ + "src/views/card/index.tsx", + 135 + ] ], "translation": "Etykiety" }, @@ -3556,7 +6024,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 124] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 124 + ] ], "translation": "Etykiety i filtry" }, @@ -3564,21 +6035,36 @@ "message": "Labels & Filters", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 100]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 100 + ] + ], "translation": "Etykiety i filtry" }, "vXIe7J": { "message": "Language", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 50]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 50 + ] + ], "translation": "Język" }, "k7rCa/": { "message": "Large", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 9]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 9 + ] + ], "translation": "Duży" }, "8Is1ih": { @@ -3586,9 +6072,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 300], - ["src/views/pricing/components/PricingTiers.tsx", 159], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 71] + [ + "src/components/NewWorkspaceForm.tsx", + 300 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 159 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 71 + ] ], "translation": "Oferta na start" }, @@ -3596,49 +6091,84 @@ "message": "Launch offer: Get unlimited members with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 276]], + "origin": [ + [ + "src/views/members/index.tsx", + 276 + ] + ], "translation": "Oferta na start: nielimitowana liczba członków z Pro" }, "sDuhfK": { "message": "Launch offer: unlimited seats for just $29/month with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 98 + ] + ], "translation": "Oferta na start: nielimitowane miejsca za jedyne 29 $/mies. z Pro" }, "zwWKhA": { "message": "Learn more", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 110]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 110 + ] + ], "translation": "Dowiedz się więcej" }, "wqxglO": { "message": "Learning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Nauka" }, "vifyyw": { "message": "Legal", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 131]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 131 + ] + ], "translation": "Prawne" }, "iQmbPb": { "message": "License", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 45]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 45 + ] + ], "translation": "Licencja" }, "1njn7W": { "message": "Light", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 172]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 172 + ] + ], "translation": "Jasny" }, "TCt/8K": { @@ -3646,7 +6176,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 238] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 238 + ] ], "translation": "Ograniczony dostęp do API" }, @@ -3655,11 +6188,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 80], - ["src/views/board/index.tsx", 306], - ["src/views/card/components/Dropdown.tsx", 42], - ["src/views/public/board/CardModal.tsx", 36], - ["src/views/public/board/index.tsx", 77] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 80 + ], + [ + "src/views/board/index.tsx", + 310 + ], + [ + "src/views/card/components/Dropdown.tsx", + 42 + ], + [ + "src/views/public/board/CardModal.tsx", + 36 + ], + [ + "src/views/public/board/index.tsx", + 77 + ] ], "translation": "Link skopiowany" }, @@ -3668,8 +6216,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 117], - ["src/views/card/index.tsx", 124] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 117 + ], + [ + "src/views/card/index.tsx", + 126 + ] ], "translation": "Lista" }, @@ -3677,21 +6231,36 @@ "message": "List name", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 129]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 129 + ] + ], "translation": "Nazwa listy" }, "h16FyT": { "message": "Lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 163]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 163 + ] + ], "translation": "Listy" }, "1rVAfU": { "message": "Load more activities", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Załaduj więcej aktywności" }, "0qyZ4b": { @@ -3699,7 +6268,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 180] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 180 + ] ], "translation": "Ładowanie uprawnień..." }, @@ -3707,56 +6279,96 @@ "message": "Loading...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Ładowanie..." }, "N/bcWA": { "message": "Login | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 33]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 33 + ] + ], "translation": "Logowanie | kan.bn" }, "nOhz3x": { "message": "Logout", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 227]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 227 + ] + ], "translation": "Wyloguj się" }, "vuxdLS": { "message": "Long-term", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Długoterminowy" }, "RHZu7R": { "message": "Loved by teams worldwide", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 236]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 236 + ] + ], "translation": "Doceniany przez zespoły na całym świecie" }, "O9jVbx": { "message": "Low Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Niski priorytet" }, "JnWJXY": { "message": "magic link", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "magic link" }, "DbZgsJ": { "message": "Make template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 91]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 91 + ] + ], "translation": "Utwórz szablon" }, "hB02vO": { @@ -3764,46 +6376,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMembersModal.tsx", 51], - ["src/views/board/components/CardContextMenu.tsx", 38] + [ + "src/views/board/components/CardContextMembersModal.tsx", + 51 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 38 + ] ], "translation": "Zarządzaj członkami" }, + "onllUU": { + "message": "Mark all as read", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 155 + ] + ], + "translation": "" + }, "IDvohQ": { "message": "marked a checklist item as incomplete", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 138]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 138 + ] + ], "translation": "oznaczył(a) element listy kontrolnej jako nieukończony" }, "jl3aEJ": { "message": "marked checklist item <0>{0} as incomplete", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 258]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 258 + ] + ], "translation": "oznaczył(a) element listy kontrolnej <0>{0} jako nieukończony" }, "vo2a+a": { "message": "Marketing", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Marketing" }, "agPptk": { "message": "Medium", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 8]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 8 + ] + ], "translation": "Średni" }, "W/Elkg": { "message": "Medium Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Średni priorytet" }, "OvoEq7": { @@ -3811,9 +6468,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 55], - ["src/views/card/components/ActivityList.tsx", 88], - ["src/views/members/index.tsx", 202] + [ + "src/views/card/components/ActivityList.tsx", + 55 + ], + [ + "src/views/card/components/ActivityList.tsx", + 88 + ], + [ + "src/views/members/index.tsx", + 202 + ] ], "translation": "Członek" }, @@ -3822,22 +6488,47 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 123], - ["src/views/board/components/Filters.tsx", 147], - ["src/views/board/components/NewCardForm.tsx", 379], - ["src/views/card/index.tsx", 143], - ["src/views/members/index.tsx", 263], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 81] + [ + "src/components/SideNavigation.tsx", + 124 + ], + [ + "src/views/board/components/Filters.tsx", + 147 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 379 + ], + [ + "src/views/card/index.tsx", + 145 + ], + [ + "src/views/members/index.tsx", + 263 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 81 + ] ], "translation": "Członkowie" }, "9u5BOr": { "message": "Members | {0}", "placeholders": { - "0": ["workspace.name ?? t`Workspace`"] + "0": [ + "workspace.name ?? t`Workspace`" + ] }, "comments": [], - "origin": [["src/views/members/index.tsx", 258]], + "origin": [ + [ + "src/views/members/index.tsx", + 258 + ] + ], "translation": "Członkowie | {0}" }, "/bZzdR": { @@ -3845,7 +6536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 183] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 183 + ] ], "translation": "Wzmianki" }, @@ -3854,7 +6548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 53 + ] ], "translation": "Poniedziałek" }, @@ -3863,9 +6560,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 62], - ["src/views/pricing/components/Pricing.tsx", 14], - ["src/views/pricing/index.tsx", 20] + [ + "src/views/onboarding/select-plan/index.tsx", + 62 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 14 + ], + [ + "src/views/pricing/index.tsx", + 20 + ] ], "translation": "Miesięcznie" }, @@ -3873,45 +6579,79 @@ "message": "monthly billing", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 159]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 159 + ] + ], "translation": "rozliczenie miesięczne" }, "51UCsN": { "message": "Move to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 44]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 44 + ] + ], "translation": "Przenieś do innej listy" }, "J4+OTA": { "message": "Move to list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 70]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 70 + ] + ], "translation": "Przenieś do listy" }, "BOqTi5": { "message": "moved the card from <0>{0} to<1>{1}", "placeholders": { - "0": ["truncate(fromList)"], - "1": ["truncate(toList)"] + "0": [ + "truncate(fromList)" + ], + "1": [ + "truncate(toList)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 160]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 160 + ] + ], "translation": "przeniósł(-ęła) kartę z <0>{0} do<1>{1}" }, "T7LJic": { "message": "moved the card to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 127]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 127 + ] + ], "translation": "przeniósł(-ęła) kartę do innej listy" }, "uEGGDs": { "message": "My webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 209]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 209 + ] + ], "translation": "Mój webhook" }, "6YtxFj": { @@ -3919,11 +6659,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 135], - ["src/views/board/components/NewTemplateForm.tsx", 118], - ["src/views/boards/components/NewBoardForm.tsx", 134], - ["src/views/settings/components/NewWebhookModal.tsx", 205], - ["src/views/settings/components/WebhookList.tsx", 212] + [ + "src/components/LabelForm.tsx", + 135 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 118 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 134 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 205 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 212 + ] ], "translation": "Nazwa" }, @@ -3931,14 +6686,24 @@ "message": "Navigation", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 55]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 55 + ] + ], "translation": "Nawigacja" }, "HBI6nY": { "message": "Need help?", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 95]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 95 + ] + ], "translation": "Potrzebujesz pomocy?" }, "isRobC": { @@ -3946,53 +6711,115 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 95], - ["src/views/home/components/Features.tsx", 73] + [ + "src/views/boards/index.tsx", + 95 + ], + [ + "src/views/home/components/Features.tsx", + 73 + ] ], "translation": "Nowy" }, "6WSYbN": { "message": "New {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 120]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 120 + ] + ], "translation": "Nowy {0}" }, "TjREUS": { "message": "New API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 147]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 147 + ] + ], "translation": "Nowy klucz API" }, "pnrmSP": { "message": "New card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 304]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 304 + ] + ], "translation": "Nowa karta" }, "cWcxrL": { "message": "New checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 103]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 103 + ] + ], "translation": "Nowa lista kontrolna" }, + "7Qqqyu": { + "message": "New comment on", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 49 + ] + ], + "translation": "" + }, + "K4xHKu": { + "message": "New comment on a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 50 + ] + ], + "translation": "" + }, "WYwN1G": { "message": "New import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 513]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 513 + ] + ], "translation": "Nowy import" }, "n1GRql": { "message": "New label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Nowa etykieta" }, "Sb2gYF": { @@ -4000,17 +6827,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewListForm.tsx", 113], - ["src/views/board/index.tsx", 620] + [ + "src/views/board/components/NewListForm.tsx", + 113 + ], + [ + "src/views/board/index.tsx", + 624 + ] ], "translation": "Nowa lista" }, + "pM1sn/": { + "message": "New notification", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 56 + ] + ], + "translation": "" + }, "+MdEsf": { "message": "New password is required", "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 23] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 23 + ] ], "translation": "Wymagane jest nowe hasło" }, @@ -4019,7 +6867,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 31] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 31 + ] ], "translation": "Nowe hasło musi się różnić od obecnego" }, @@ -4027,151 +6878,292 @@ "message": "New template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 104]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 104 + ] + ], "translation": "Nowy szablon" }, "RJA+sg": { "message": "New Ticket", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 56]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 56 + ] + ], "translation": "Nowe zgłoszenie" }, "sbNNyi": { "message": "New webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Nowy webhook" }, "curoK5": { "message": "New workspace", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 208]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 208 + ] + ], "translation": "Nowy workspace" }, "5ACX4z": { "message": "Newsletter", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Newsletter" }, "HeFWjW": { "message": "Next Steps", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 93]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 93 + ] + ], "translation": "Następne kroki" }, "/glL9Q": { "message": "No {0}", "placeholders": { - "0": ["isTemplate ? \"templates\" : \"boards\""] + "0": [ + "isTemplate ? \"templates\" : \"boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "Brak {0}" }, "tlhgDC": { "message": "No archived boards", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "Brak zarchiwizowanych tablic" }, "Eg99Sc": { "message": "No authentication methods are currently available", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 369]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 369 + ] + ], "translation": "Obecnie nie są dostępne żadne metody uwierzytelniania" }, "2Bu8xj": { "message": "No boards found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 432]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 432 + ] + ], "translation": "Nie znaleziono żadnych tablic" }, "OpNhRn": { "message": "No credit card required", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 85]], + "origin": [ + [ + "src/views/home/index.tsx", + 85 + ] + ], "translation": "Nie wymaga karty kredytowej" }, "MK16u2": { "message": "No dates", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 137]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 137 + ] + ], "translation": "Brak dat" }, "sY2lzr": { "message": "No download URL available for this attachment.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 143]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 143 + ] + ], "translation": "Brak dostępnego adresu URL do pobrania tego załącznika." }, "TXO5TM": { "message": "No keyboard shortcuts registered.", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 334]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 334 + ] + ], "translation": "Nie zarejestrowano skrótów klawiaturowych." }, "hXMFoN": { "message": "No lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 652]], + "origin": [ + [ + "src/views/board/index.tsx", + 657 + ] + ], "translation": "Brak list" }, "fvLNDy": { "message": "No lists have been created yet", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 657]], + "origin": [ + [ + "src/views/board/index.tsx", + 662 + ] + ], "translation": "Nie utworzono jeszcze żadnych list" }, + "HbXReU": { + "message": "No notifications yet", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 192 + ] + ], + "translation": "" + }, "i30J2U": { "message": "No projects found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 283]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 283 + ] + ], "translation": "Nie znaleziono projektów" }, "ERpq2P": { "message": "No results found for \"{debouncedQuery}\".", "placeholders": { - "debouncedQuery": ["debouncedQuery"] + "debouncedQuery": [ + "debouncedQuery" + ] }, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 183]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 183 + ] + ], "translation": "Nie znaleziono wyników dla „{debouncedQuery}”." }, "Q9pQaX": { "message": "No roles found for this workspace yet.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 110]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 110 + ] + ], "translation": "Nie znaleziono jeszcze żadnych ról dla tego workspace'a." }, "TX0bT7": { "message": "No webhooks configured. Add a webhook to receive notifications.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 194]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 194 + ] + ], "translation": "Brak skonfigurowanych webhooków. Dodaj webhook, aby otrzymywać powiadomienia." }, + "iDNBZe": { + "message": "Notifications", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 119 + ], + [ + "src/components/NotificationBell.tsx", + 131 + ], + [ + "src/components/NotificationBell.tsx", + 147 + ] + ], + "translation": "" + }, "9h7RDh": { "message": "Offer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 78]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 78 + ] + ], "translation": "Oferta" }, "QnzD50": { @@ -4179,7 +7171,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 245] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 245 + ] ], "translation": "On-premise" }, @@ -4187,42 +7182,72 @@ "message": "On-premise deployment option", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 106]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 106 + ] + ], "translation": "Opcja wdrożenia on-premise" }, "gukxZ5": { "message": "Onboarding", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 79]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 79 + ] + ], "translation": "Onboarding" }, "usVytm": { "message": "Once you delete your account, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 73]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 73 + ] + ], "translation": "Po usunięciu konta nie będzie można tego cofnąć. Tej operacji nie da się odwrócić." }, "dmKdk0": { "message": "Once you delete your workspace, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 128]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 128 + ] + ], "translation": "Po usunięciu workspace'a nie będzie można tego cofnąć. Tej operacji nie da się odwrócić." }, "69b7aE": { "message": "Open command menu", "placeholders": {}, "comments": [], - "origin": [["src/components/WorkspaceMenu.tsx", 34]], + "origin": [ + [ + "src/components/WorkspaceMenu.tsx", + 34 + ] + ], "translation": "Otwórz menu poleceń" }, "cFQEU/": { "message": "Open keyboard shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 172]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 172 + ] + ], "translation": "Otwórz skróty klawiaturowe" }, "v+Wp++": { @@ -4230,7 +7255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 229] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 229 + ] ], "translation": "Open source" }, @@ -4238,21 +7266,36 @@ "message": "Open Source Friends", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 58]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 58 + ] + ], "translation": "Przyjaciele Open Source" }, "BzEFor": { "message": "or", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 380]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 380 + ] + ], "translation": "lub" }, "ZqDqbi": { "message": "Organize and find cards quickly with powerful filtering tools.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 101]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 101 + ] + ], "translation": "Organizuj i wyszukuj karty szybko dzięki zaawansowanym narzędziom filtrowania." }, "Un80BR": { @@ -4260,8 +7303,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 39], - ["src/views/oss-friends/index.tsx", 52] + [ + "src/views/home/components/Footer.tsx", + 39 + ], + [ + "src/views/oss-friends/index.tsx", + 52 + ] ], "translation": "OSS Friends" }, @@ -4269,35 +7318,60 @@ "message": "Overdue", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 112]], - "translation": "Zaległe" - }, - "P6dJdq": { + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 112 + ] + ], + "translation": "Zaległe" + }, + "P6dJdq": { "message": "Overrides cleared", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 25 + ] + ], "translation": "Nadpisania usunięte" }, "SPLN9O": { "message": "Own your data", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 73]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 73 + ] + ], "translation": "Zarządzaj swoimi danymi" }, "8F1i42": { "message": "Page not found", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 24]], + "origin": [ + [ + "src/pages/404.tsx", + 24 + ] + ], "translation": "Strona nie znaleziona" }, "Uworke": { "message": "Part-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Niepełny etat" }, "IrZaAn": { @@ -4305,7 +7379,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 69] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 69 + ] ], "translation": "Hasło zostało zmienione" }, @@ -4313,14 +7390,24 @@ "message": "Password is required to login.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 258]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 258 + ] + ], "translation": "Do zalogowania wymagane jest hasło." }, "tTbref": { "message": "Password is required to sign up.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 257]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 257 + ] + ], "translation": "Do rejestracji wymagane jest hasło." }, "vwGkYB": { @@ -4328,7 +7415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 22] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 22 + ] ], "translation": "Hasło musi mieć co najmniej 8 znaków" }, @@ -4337,7 +7427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 27] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 27 + ] ], "translation": "Hasła nie są zgodne" }, @@ -4345,7 +7438,12 @@ "message": "Paused", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "Wstrzymane" }, "UbYdrA": { @@ -4353,8 +7451,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 120] + [ + "src/views/pricing/components/Pricing.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 120 + ] ], "translation": "Częstotliwość płatności" }, @@ -4362,7 +7466,12 @@ "message": "Pending", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "Oczekujące" }, "oVBq1w": { @@ -4370,10 +7479,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 15], - ["src/views/pricing/components/Pricing.tsx", 20], - ["src/views/pricing/index.tsx", 21], - ["src/views/pricing/index.tsx", 26] + [ + "src/views/pricing/components/Pricing.tsx", + 15 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 20 + ], + [ + "src/views/pricing/index.tsx", + 21 + ], + [ + "src/views/pricing/index.tsx", + 26 + ] ], "translation": "za użytkownika/miesiąc" }, @@ -4381,28 +7502,48 @@ "message": "Per-seat pricing", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 83]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 83 + ] + ], "translation": "Cennik per stanowisko" }, "mrhyIB": { "message": "Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 52 + ] + ], "translation": "Idealne dla małych i rozwijających się zespołów, które chcą współpracować." }, "TH3Irz": { "message": "Permission", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 119]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 119 + ] + ], "translation": "Uprawnienie" }, "9cDpsw": { "message": "Permissions", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 53]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 53 + ] + ], "translation": "Uprawnienia" }, "Jgaz7E": { @@ -4410,7 +7551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 80] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 80 + ] ], "translation": "Uprawnienia zresetowane" }, @@ -4419,8 +7563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 34], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 57] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 34 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 57 + ] ], "translation": "Uprawnienia zaktualizowane" }, @@ -4428,14 +7578,24 @@ "message": "Personal Project", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 86]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 86 + ] + ], "translation": "Projekt osobisty" }, "Oi+J+N": { "message": "Pick a plan to get started. All paid plans include a 14-day free trial.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 125]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 125 + ] + ], "translation": "Wybierz plan, aby rozpocząć. Wszystkie płatne plany zawierają 14-dniowy bezpłatny okres próbny." }, "Iqh0Uv": { @@ -4443,8 +7603,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Zaplanowane" }, @@ -4452,7 +7618,12 @@ "message": "Planning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 90]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 90 + ] + ], "translation": "Planowanie" }, "F3bW6y": { @@ -4460,7 +7631,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 317] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 317 + ] ], "translation": "Platforma" }, @@ -4469,7 +7643,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 24] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 24 + ] ], "translation": "Potwierdź nowe hasło" }, @@ -4477,28 +7654,48 @@ "message": "Please enter a valid email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 406]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 406 + ] + ], "translation": "Wprowadź poprawny adres e-mail" }, "CJ3zUq": { "message": "Please enter a valid name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 394]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 394 + ] + ], "translation": "Wprowadź poprawne imię" }, "7b2yuC": { "message": "Please enter a valid password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 421]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 421 + ] + ], "translation": "Wprowadź poprawne hasło" }, "jEw0Mr": { "message": "Please enter a valid URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 24 + ] + ], "translation": "Wprowadź poprawny adres URL" }, "tmlJN1": { @@ -4506,8 +7703,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 58], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 98] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 58 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 98 + ] ], "translation": "Wprowadź poprawny adres URL YouTube" }, @@ -4515,7 +7718,12 @@ "message": "Please select a file to upload.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 70]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 70 + ] + ], "translation": "Wybierz plik do przesłania." }, "tyHiOa": { @@ -4523,56 +7731,206 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 26], - ["src/components/FeedbackModal.tsx", 41], - ["src/components/NewWorkspaceForm.tsx", 123], - ["src/views/board/components/BoardDropdown.tsx", 65], - ["src/views/board/components/NewCardForm.tsx", 186], - ["src/views/board/components/NewListForm.tsx", 79], - ["src/views/board/components/NewTemplateForm.tsx", 61], - ["src/views/board/components/NewTemplateForm.tsx", 77], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 73], - ["src/views/board/components/VisibilityButton.tsx", 57], - ["src/views/board/index.tsx", 218], - ["src/views/board/index.tsx", 274], - ["src/views/boards/components/ImportBoardsForm.tsx", 243], - ["src/views/boards/components/ImportBoardsForm.tsx", 395], - ["src/views/card/components/AttachmentThumbnails.tsx", 74], - ["src/views/card/components/ChecklistItemRow.tsx", 67], - ["src/views/card/components/ChecklistItemRow.tsx", 95], - ["src/views/card/components/ChecklistNameInput.tsx", 47], - ["src/views/card/components/Checklists.tsx", 81], - ["src/views/card/components/Comment.tsx", 93], - ["src/views/card/components/DeleteCardConfirmation.tsx", 52], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 38], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 46], - ["src/views/card/components/DueDateSelector.tsx", 64], - ["src/views/card/components/LabelSelector.tsx", 75], - ["src/views/card/components/ListSelector.tsx", 55], - ["src/views/card/components/MemberSelector.tsx", 82], - ["src/views/card/components/NewChecklistForm.tsx", 71], - ["src/views/card/components/NewChecklistItemForm.tsx", 90], - ["src/views/card/components/NewCommentForm.tsx", 37], - ["src/views/card/index.tsx", 232], - ["src/views/card/index.tsx", 245], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 28], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 42], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 65], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 93], - ["src/views/members/components/InviteMemberForm.tsx", 104], - ["src/views/members/components/InviteMemberForm.tsx", 241], - ["src/views/members/index.tsx", 66], - ["src/views/onboarding/workspace-details/index.tsx", 101], - ["src/views/onboarding/workspace-details/index.tsx", 150], - ["src/views/settings/components/Avatar.tsx", 200], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 40], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 46], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 55], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 44], - ["src/views/settings/PermissionsSettings.tsx", 40] + [ + "src/components/DeleteLabelConfirmation.tsx", + 26 + ], + [ + "src/components/FeedbackModal.tsx", + 41 + ], + [ + "src/components/NewWorkspaceForm.tsx", + 123 + ], + [ + "src/views/board/components/BoardDropdown.tsx", + 65 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 186 + ], + [ + "src/views/board/components/NewListForm.tsx", + 79 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 61 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 77 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 73 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 57 + ], + [ + "src/views/board/index.tsx", + 222 + ], + [ + "src/views/board/index.tsx", + 278 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 243 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 395 + ], + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 74 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 68 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 96 + ], + [ + "src/views/card/components/ChecklistNameInput.tsx", + 47 + ], + [ + "src/views/card/components/Checklists.tsx", + 81 + ], + [ + "src/views/card/components/Comment.tsx", + 93 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 52 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 38 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 46 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 64 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 75 + ], + [ + "src/views/card/components/ListSelector.tsx", + 55 + ], + [ + "src/views/card/components/MemberSelector.tsx", + 82 + ], + [ + "src/views/card/components/NewChecklistForm.tsx", + 71 + ], + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 90 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 37 + ], + [ + "src/views/card/index.tsx", + 274 + ], + [ + "src/views/card/index.tsx", + 287 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 28 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 42 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 65 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 93 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 104 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 241 + ], + [ + "src/views/members/index.tsx", + 66 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 101 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 150 + ], + [ + "src/views/settings/components/Avatar.tsx", + 200 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 40 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 46 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 55 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 64 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 59 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 76 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 44 + ], + [ + "src/views/settings/PermissionsSettings.tsx", + 40 + ] ], "translation": "Spróbuj ponownie później lub skontaktuj się z obsługą klienta." }, @@ -4581,8 +7939,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 129], - ["src/views/members/components/InviteMemberForm.tsx", 145] + [ + "src/views/members/components/InviteMemberForm.tsx", + 129 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 145 + ] ], "translation": "Spróbuj ponownie później." }, @@ -4591,12 +7955,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 76], - ["src/views/board/components/CardContextMoveListModal.tsx", 42], - ["src/views/board/index.tsx", 315], - ["src/views/card/components/Dropdown.tsx", 51], - ["src/views/public/board/CardModal.tsx", 45], - ["src/views/public/board/index.tsx", 86] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 76 + ], + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 42 + ], + [ + "src/views/board/index.tsx", + 319 + ], + [ + "src/views/card/components/Dropdown.tsx", + 51 + ], + [ + "src/views/public/board/CardModal.tsx", + 45 + ], + [ + "src/views/public/board/index.tsx", + 86 + ] ], "translation": "Spróbuj ponownie." }, @@ -4605,7 +7987,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 193] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 193 + ] ], "translation": "Pozycja na liście (0 = pierwsza, puste pole = koniec)" }, @@ -4614,12 +7999,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 51], - ["src/views/home/components/Header.tsx", 18], - ["src/views/home/components/Header.tsx", 34], - ["src/views/pricing/components/Pricing.tsx", 85], - ["src/views/pricing/index.tsx", 34], - ["src/views/pricing/index.tsx", 40] + [ + "src/views/home/components/Footer.tsx", + 51 + ], + [ + "src/views/home/components/Header.tsx", + 18 + ], + [ + "src/views/home/components/Header.tsx", + 34 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 85 + ], + [ + "src/views/pricing/index.tsx", + 34 + ], + [ + "src/views/pricing/index.tsx", + 40 + ] ], "translation": "Cennik" }, @@ -4628,10 +8031,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 275], - ["src/views/pricing/components/Pricing.tsx", 56], - ["src/views/pricing/components/PricingTiers.tsx", 61], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 95] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 275 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 56 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 61 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 95 + ] ], "translation": "Priorytetowe wsparcie e-mailowe" }, @@ -4639,14 +8054,24 @@ "message": "Privacy policy", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 43]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 43 + ] + ], "translation": "Polityka prywatności" }, "zwBp5t": { "message": "Private", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 84]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 84 + ] + ], "translation": "Prywatne" }, "3fPjUY": { @@ -4654,9 +8079,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 333], - ["src/views/pricing/components/PricingTiers.tsx", 70] + [ + "src/views/onboarding/select-plan/index.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 333 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 70 + ] ], "translation": "Pro" }, @@ -4664,84 +8098,156 @@ "message": "Pro Plan", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 290]], + "origin": [ + [ + "src/views/members/index.tsx", + 290 + ] + ], "translation": "Plan Pro" }, "Qtzfdk": { "message": "Pro Plan ∞", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 322]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ] + ], "translation": "Plan Pro ∞" }, "0rPv1T": { "message": "Profile image updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 189]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 189 + ] + ], "translation": "Zaktualizowano zdjęcie profilowe" }, "4XF0BB": { "message": "Profile picture", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 30 + ] + ], "translation": "Zdjęcie profilowe" }, "7d1a0d": { "message": "Public", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 79]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 79 + ] + ], "translation": "Publiczne" }, "ABCjd9": { "message": "Publishing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 47]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 47 + ] + ], "translation": "Publikowanie" }, "bfgr/e": { "message": "Question", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 66 + ] + ], "translation": "Pytanie" }, "1H5u1m": { "message": "Questions?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 147]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 147 + ] + ], "translation": "Pytania?" }, "kfOGMr": { "message": "Quick Win", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Szybka wygrana" }, + "09Tv5j": { + "message": "Reconnecting…", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/ConnectionStatus.tsx", + 30 + ] + ], + "translation": "" + }, "6EWT6T": { "message": "Recruitment", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 73]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 73 + ] + ], "translation": "Rekrutacja" }, "ekCRTP": { "message": "Rejected", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "Odrzucono" }, "qlAIQ1": { "message": "Remote", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Zdalnie" }, "t/YqKh": { @@ -4749,7 +8255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 58] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 58 + ] ], "translation": "Usuń" }, @@ -4757,70 +8266,123 @@ "message": "Remove from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 121]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 121 + ] + ], "translation": "Usuń z ulubionych" }, "99VIgC": { "message": "Remove member", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 233]], + "origin": [ + [ + "src/views/members/index.tsx", + 233 + ] + ], "translation": "Usuń członka" }, "BZkYSt": { "message": "removed {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 116]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 116 + ] + ], "translation": "usunięto {0} etykiety: <0>{labelList}" }, "kQwvU8": { "message": "removed a label from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 129]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 129 + ] + ], "translation": "usunięto etykietę z karty" }, "uck1tz": { "message": "removed a member from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 131]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 131 + ] + ], "translation": "usunięto członka z karty" }, "KEim/+": { "message": "removed an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 141]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 141 + ] + ], "translation": "usunięto załącznik" }, "zwTiVn": { "message": "removed an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 288]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 288 + ] + ], "translation": "usunięto załącznik <0>{0}" }, "Qh7QmR": { "message": "Removed from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 54]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 54 + ] + ], "translation": "Usunięto z ulubionych" }, "YVT40D": { "message": "removed label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 200]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 200 + ] + ], "translation": "usunięto etykietę <0>{0}" }, "aHRWVI": { @@ -4828,8 +8390,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 144], - ["src/views/card/components/ActivityList.tsx", 324] + [ + "src/views/card/components/ActivityList.tsx", + 144 + ], + [ + "src/views/card/components/ActivityList.tsx", + 324 + ] ], "translation": "usunięto termin" }, @@ -4837,25 +8405,44 @@ "message": "renamed a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 133]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 133 + ] + ], "translation": "zmieniono nazwę checklisty" }, "3ZjRJY": { "message": "renamed checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 216]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 216 + ] + ], "translation": "zmieniono nazwę checklisty <0>{0}" }, "NH54UR": { "message": "renamed checklist item to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 240]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 240 + ] + ], "translation": "zmieniono nazwę elementu checklisty na <0>{0}" }, "Yx0Ud8": { @@ -4863,8 +8450,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Zażądano" }, @@ -4872,7 +8465,12 @@ "message": "Research", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 89]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 89 + ] + ], "translation": "Badania" }, "e4hPSt": { @@ -4880,7 +8478,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 245] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 245 + ] ], "translation": "Przywróć domyślne uprawnienia roli" }, @@ -4888,21 +8489,36 @@ "message": "Resolution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 60]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 60 + ] + ], "translation": "Rozwiązanie" }, "s+MGs7": { "message": "Resources", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 114 + ] + ], "translation": "Zasoby" }, "5k0NLb": { "message": "Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 92]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 92 + ] + ], "translation": "Recenzja" }, "/gaSVU": { @@ -4910,10 +8526,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 36], - ["src/views/home/components/Header.tsx", 13], - ["src/views/home/components/Header.tsx", 28], - ["src/views/onboarding/workspace-details/index.tsx", 161] + [ + "src/views/home/components/Footer.tsx", + 36 + ], + [ + "src/views/home/components/Header.tsx", + 13 + ], + [ + "src/views/home/components/Header.tsx", + 28 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] ], "translation": "Mapa drogowa" }, @@ -4921,14 +8549,24 @@ "message": "Role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 328]], + "origin": [ + [ + "src/views/members/index.tsx", + 328 + ] + ], "translation": "Rola" }, "jQ6I8X": { "message": "Role updated", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 58]], + "origin": [ + [ + "src/views/members/index.tsx", + 58 + ] + ], "translation": "Zaktualizowano rolę" }, "RzxgOE": { @@ -4936,7 +8574,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 164] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 164 + ] ], "translation": "Role i uprawnienia" }, @@ -4944,14 +8585,24 @@ "message": "Run on your own infrastructure", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 72]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 72 + ] + ], "translation": "Uruchom na własnej infrastrukturze" }, "YEOVrT": { "message": "SAML SSO", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 102]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 102 + ] + ], "translation": "SAML SSO" }, "+5kO8P": { @@ -4959,7 +8610,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 54 + ] ], "translation": "Sobota" }, @@ -4968,9 +8622,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 183], - ["src/views/card/components/Comment.tsx", 202], - ["src/views/settings/components/Avatar.tsx", 290] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 183 + ], + [ + "src/views/card/components/Comment.tsx", + 202 + ], + [ + "src/views/settings/components/Avatar.tsx", + 290 + ] ], "translation": "Zapisz" }, @@ -4978,42 +8641,72 @@ "message": "Save changes", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Zapisz zmiany" }, "MdwUGG": { "message": "Save time with reusable board templates.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 116]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 116 + ] + ], "translation": "Oszczędzaj czas dzięki szablonom tablic do wielokrotnego użytku." }, "cOh+MI": { "message": "Screening", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 76]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 76 + ] + ], "translation": "Screening" }, "SkCNhl": { "message": "Search boards and cards...", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 104]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 104 + ] + ], "translation": "Wyszukaj tablice i karty..." }, "e1v+J3": { "message": "Secret (optional)", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 229]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 229 + ] + ], "translation": "Sekret (opcjonalnie)" }, "OkTY4+": { "message": "Secret cannot exceed 512 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 28]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 28 + ] + ], "translation": "Sekret nie może przekraczać 512 znaków" }, "a3LDKx": { @@ -5021,7 +8714,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 321] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 321 + ] ], "translation": "Bezpieczeństwo" }, @@ -5029,7 +8725,12 @@ "message": "See what our users are saying about Kan", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 239]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 239 + ] + ], "translation": "Zobacz, co nasi użytkownicy mówią o Kan" }, "zYRVNp": { @@ -5037,7 +8738,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 131] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 131 + ] ], "translation": "Wybierz listę" }, @@ -5046,8 +8750,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 315], - ["src/views/boards/components/ImportBoardsForm.tsx", 464] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 315 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 464 + ] ], "translation": "Zaznacz wszystko" }, @@ -5055,56 +8765,96 @@ "message": "Select at least one event", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 32]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 32 + ] + ], "translation": "Wybierz co najmniej jedno zdarzenie" }, "rYUZIe": { "message": "Select source", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Wybierz źródło" }, "ppaRWv": { "message": "Self Host", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 64]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 64 + ] + ], "translation": "Samodzielny hosting" }, "l2PIAy": { "message": "Self host with Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 81]], + "origin": [ + [ + "src/views/home/index.tsx", + 81 + ] + ], "translation": "Samodzielny hosting z Github" }, "VXk54Y": { "message": "self-assigned the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 169 + ] + ], "translation": "samodzielnie przypisał(a) kartę" }, "RoafuO": { "message": "Send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 116]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 116 + ] + ], "translation": "Prześlij opinię" }, "eus61c": { "message": "Send test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 310]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 310 + ] + ], "translation": "Wyślij test" }, "v3YoMA": { "message": "Senior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Starszy" }, "8AbRER": { @@ -5112,9 +8862,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 20], - ["src/views/board/components/CardContextMenu.tsx", 56], - ["src/views/card/components/DueDateSelector.tsx", 121] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 20 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 56 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 121 + ] ], "translation": "Ustaw termin" }, @@ -5122,14 +8881,24 @@ "message": "set the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 142]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 142 + ] + ], "translation": "ustaw termin" }, "JjEJSy": { "message": "Set up your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 179]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 179 + ] + ], "translation": "Skonfiguruj swoją przestrzeń roboczą" }, "Tz0i8g": { @@ -5137,8 +8906,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 102], - ["src/components/SideNavigation.tsx", 135] + [ + "src/components/SettingsLayout.tsx", + 102 + ], + [ + "src/components/SideNavigation.tsx", + 136 + ] ], "translation": "Ustawienia" }, @@ -5146,70 +8921,120 @@ "message": "Settings | Account", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 26 + ] + ], "translation": "Ustawienia | Konto" }, "iy1wb+": { "message": "Settings | API", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 18]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 18 + ] + ], "translation": "Ustawienia | API" }, "ADEin1": { "message": "Settings | Billing", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 35]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 35 + ] + ], "translation": "Ustawienia | Rozliczenia" }, "hYzsXr": { "message": "Settings | Integrations", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 138]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 138 + ] + ], "translation": "Ustawienia | Integracje" }, "F/FPk/": { "message": "Settings | Permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 49 + ] + ], "translation": "Ustawienia | Uprawnienia" }, "+h2faV": { "message": "Settings | Webhooks", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 24]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 24 + ] + ], "translation": "Ustawienia | Webhooki" }, "Ci/KUX": { "message": "Settings | Workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 59]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 59 + ] + ], "translation": "Ustawienia | Workspace" }, "CTqTgr": { "message": "Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 187]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 187 + ] + ], "translation": "Skróty klawiaturowe" }, "5lWFkC": { "message": "Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 104]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 104 + ] + ], "translation": "Zaloguj się" }, "n1ekoW": { "message": "Sign In", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 154]], + "origin": [ + [ + "src/views/invite/index.tsx", + 154 + ] + ], "translation": "Zaloguj się" }, "fcWrnU": { @@ -5217,8 +9042,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 284], - ["src/views/onboarding/workspace-details/index.tsx", 362] + [ + "src/views/onboarding/select-plan/index.tsx", + 284 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 362 + ] ], "translation": "Wyloguj się" }, @@ -5226,7 +9057,12 @@ "message": "Sign Up", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 162]], + "origin": [ + [ + "src/views/invite/index.tsx", + 162 + ] + ], "translation": "Zarejestruj się" }, "sUZo7y": { @@ -5234,8 +9070,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 36], - ["src/views/auth/signup/index.tsx", 61] + [ + "src/views/auth/signup/index.tsx", + 36 + ], + [ + "src/views/auth/signup/index.tsx", + 61 + ] ], "translation": "Rejestracja | kan.bn" }, @@ -5243,21 +9085,36 @@ "message": "Sign up disabled", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 46]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 46 + ] + ], "translation": "Rejestracja wyłączona" }, "s6iE/c": { "message": "Sign up is currently disabled. Please try again later.", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 49]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 49 + ] + ], "translation": "Rejestracja jest obecnie wyłączona. Spróbuj ponownie później." }, "6FDocz": { "message": "Sign up with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "Zarejestruj się przez " }, "m2nk0i": { @@ -5265,8 +9122,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 89], - ["src/views/pricing/index.tsx", 44] + [ + "src/views/pricing/components/Pricing.tsx", + 89 + ], + [ + "src/views/pricing/index.tsx", + 44 + ] ], "translation": "Prosty cennik" }, @@ -5274,7 +9137,12 @@ "message": "Simple, visual task management that just works. Drag and drop cards, collaborate with your team, and get more done.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 139]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 139 + ] + ], "translation": "Proste, wizualne zarządzanie zadaniami, które po prostu działa. Przeciągaj i upuszczaj karty, współpracuj z zespołem i osiągaj więcej." }, "zEcnBA": { @@ -5282,7 +9150,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 291] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 291 + ] ], "translation": "SLA" }, @@ -5290,28 +9161,48 @@ "message": "Small", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 7]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 7 + ] + ], "translation": "Mały" }, "++rVAm": { "message": "Social Media", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Social Media" }, "wIb7Ng": { "message": "Software Development", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 22 + ] + ], "translation": "Software Development" }, "6sKjjx": { "message": "Solo", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 76]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 76 + ] + ], "translation": "Solo" }, "vnS6Rf": { @@ -5319,7 +9210,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 256] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 256 + ] ], "translation": "SSO" }, @@ -5327,7 +9221,12 @@ "message": "Star on Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 37]], + "origin": [ + [ + "src/views/home/index.tsx", + 37 + ] + ], "translation": "Daj gwiazdkę na Githubie" }, "veIDCY": { @@ -5335,8 +9234,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 359], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 113] + [ + "src/views/members/components/InviteMemberForm.tsx", + 359 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 113 + ] ], "translation": "Rozpocznij 14-dniowy bezpłatny okres próbny" }, @@ -5344,21 +9249,36 @@ "message": "Start free. Upgrade as your team grows. No hidden fees, no contracts.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/index.tsx", 47]], + "origin": [ + [ + "src/views/pricing/index.tsx", + 47 + ] + ], "translation": "Zacznij za darmo. Rozwijaj się wraz z zespołem. Bez ukrytych opłat, bez umów." }, "uAQUqI": { "message": "Status", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 230]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 230 + ] + ], "translation": "Status" }, "WYDptz": { "message": "Subscription Required", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 122]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 122 + ] + ], "translation": "Wymagana subskrypcja" }, "zzDlyQ": { @@ -5366,8 +9286,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/AuthForm.tsx", 215], - ["src/components/AuthForm.tsx", 232] + [ + "src/components/AuthForm.tsx", + 215 + ], + [ + "src/components/AuthForm.tsx", + 232 + ] ], "translation": "Sukces" }, @@ -5376,7 +9302,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 52 + ] ], "translation": "Niedziela" }, @@ -5385,7 +9314,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 59] + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 59 + ] ], "translation": "Ulepsz swoje środowisko pracy za jedyne 29$/miesiąc. Oto co otrzymasz:" }, @@ -5394,8 +9326,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 198], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 325] + [ + "src/components/UserMenu.tsx", + 198 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 325 + ] ], "translation": "Wsparcie" }, @@ -5403,21 +9341,36 @@ "message": "Support the development of the project", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 57]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 57 + ] + ], "translation": "Wesprzyj rozwój projektu" }, "D+NlUC": { "message": "System", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 144]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 144 + ] + ], "translation": "System" }, "KM6m8p": { "message": "Team", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 83]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 83 + ] + ], "translation": "Zespół" }, "bff61F": { @@ -5425,8 +9378,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 322], - ["src/views/members/index.tsx", 292] + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ], + [ + "src/views/members/index.tsx", + 292 + ] ], "translation": "Plan zespołowy" }, @@ -5435,9 +9394,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 332], - ["src/views/pricing/components/Pricing.tsx", 46], - ["src/views/pricing/components/PricingTiers.tsx", 47] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 332 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 46 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 47 + ] ], "translation": "Zespoły" }, @@ -5446,8 +9414,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/board/index.tsx", 566] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/board/index.tsx", + 570 + ] ], "translation": "Szablon" }, @@ -5455,28 +9429,48 @@ "message": "Template created", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 67]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 67 + ] + ], "translation": "Szablon utworzony" }, "QHhZeE": { "message": "Template created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 68]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 68 + ] + ], "translation": "Szablon został pomyślnie utworzony" }, "notwF1": { "message": "Template name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 19]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 19 + ] + ], "translation": "Nazwa szablonu nie może przekraczać 100 znaków" }, "6OTo9n": { "message": "Template name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 18]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 18 + ] + ], "translation": "Nazwa szablonu jest wymagana" }, "iTylMl": { @@ -5484,8 +9478,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 111], - ["src/views/home/components/Features.tsx", 115] + [ + "src/components/SideNavigation.tsx", + 112 + ], + [ + "src/views/home/components/Features.tsx", + 115 + ] ], "translation": "Szablony" }, @@ -5493,14 +9493,24 @@ "message": "Terms of service", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 42]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 42 + ] + ], "translation": "Regulamin" }, "NnH3pK": { "message": "Test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 136]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 136 + ] + ], "translation": "Test" }, "itgYbC": { @@ -5508,8 +9518,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 132], - ["src/views/settings/components/WebhookList.tsx", 174] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 132 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 174 + ] ], "translation": "Webhook testowy został wysłany pomyślnie!" }, @@ -5517,28 +9533,48 @@ "message": "Testimonials", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 232]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 232 + ] + ], "translation": "Referencje" }, "nhMhRr": { "message": "Thank you for your feedback!", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 34]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 34 + ] + ], "translation": "Dziękujemy za Twoją opinię!" }, "NcFrgC": { "message": "The board has been archived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 46]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 46 + ] + ], "translation": "Tablica została zarchiwizowana." }, "C6gv54": { "message": "The board has been unarchived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 47]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 47 + ] + ], "translation": "Tablica została przywrócona z archiwum." }, "nKBUeF": { @@ -5546,7 +9582,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 69] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 69 + ] ], "translation": "Karta została zduplikowana." }, @@ -5555,7 +9594,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 84] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 84 + ] ], "translation": "Wprowadzone obecne hasło jest nieprawidłowe." }, @@ -5563,7 +9605,12 @@ "message": "The main difference between Kan and Trello is that Kan is open source, allowing anyone to view, modify, and contribute to our code. Our cloud offering also offers no restrictions on features for individual use, whereas Trello locks basic features such as the number of boards you can create behind a paywall.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 33]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 33 + ] + ], "translation": "Główna różnica między Kan a Trello polega na tym, że Kan jest open source, co pozwala każdemu przeglądać, modyfikować i współtworzyć nasz kod. Nasza chmura nie nakłada żadnych ograniczeń na funkcje dla użytkowników indywidualnych, podczas gdy Trello blokuje podstawowe funkcje, takie jak liczba tablic, które możesz utworzyć, za paywallem." }, "6tDFBe": { @@ -5571,8 +9618,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 35], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 58] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 35 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 58 + ] ], "translation": "Uprawnienia członka zostały zaktualizowane." }, @@ -5580,37 +9633,64 @@ "message": "The member's role has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 59]], + "origin": [ + [ + "src/views/members/index.tsx", + 59 + ] + ], "translation": "Rola członka została zaktualizowana." }, "gUX7b+": { "message": "The open source <0/> alternative to Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 65]], + "origin": [ + [ + "src/views/home/index.tsx", + 65 + ] + ], "translation": "Open source’owa <0/> alternatywa dla Trello" }, "0xD8Of": { "message": "The page you're looking for doesn't exist or has been moved.", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 29]], + "origin": [ + [ + "src/pages/404.tsx", + 29 + ] + ], "translation": "Strona, której szukasz, nie istnieje lub została przeniesiona." }, "fQCrjt": { "message": "The visibility of your board has been set to {0}.", "placeholders": { - "0": ["isPublic ? \"public\" : \"private\""] + "0": [ + "isPublic ? \"public\" : \"private\"" + ] }, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 50]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 50 + ] + ], "translation": "Widoczność Twojej tablicy została ustawiona na {0}." }, "FEr96N": { "message": "Theme", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 131]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 131 + ] + ], "translation": "Motyw" }, "Yf9FAx": { @@ -5618,7 +9698,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 50] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 50 + ] ], "translation": "Nie będą mogli uzyskać dostępu do tego workspace’a." }, @@ -5627,11 +9710,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 44], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 39], - ["src/views/card/components/DeleteCardConfirmation.tsx", 78], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 59], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 69] + [ + "src/components/DeleteLabelConfirmation.tsx", + 44 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 39 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 78 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 59 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 69 + ] ], "translation": "Tej operacji nie można cofnąć." }, @@ -5639,28 +9737,48 @@ "message": "This API key will only be shown once. Please save it in a secure location.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 129]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 129 + ] + ], "translation": "Ten klucz API zostanie wyświetlony tylko raz. Zapisz go w bezpiecznym miejscu." }, "l4asa1": { "message": "This board is private or does not exist", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 184]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 184 + ] + ], "translation": "Ta tablica jest prywatna lub nie istnieje" }, "wY+6Ye": { "message": "This board URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 136]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 136 + ] + ], "translation": "Ten adres URL tablicy jest już zajęty" }, "mTwGOf": { "message": "This invitation link is invalid or has expired.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 108]], + "origin": [ + [ + "src/views/invite/index.tsx", + 108 + ] + ], "translation": "Ten link z zaproszeniem jest nieprawidłowy lub wygasł." }, "vlxQFL": { @@ -5668,7 +9786,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 81] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 81 + ] ], "translation": "Uprawnienia tego członka zostały zresetowane do domyślnych dla jego roli." }, @@ -5676,14 +9797,24 @@ "message": "This URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 73]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 73 + ] + ], "translation": "Ten adres URL jest już zajęty" }, "gKmoow": { "message": "This URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 75]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 75 + ] + ], "translation": "Ten adres URL jest zarezerwowany" }, "OAYToL": { @@ -5703,7 +9834,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 70] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 70 + ] ], "translation": "Spowoduje to trwałe usunięcie wszystkich danych powiązanych z tym workspace’em." }, @@ -5712,7 +9846,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 60 + ] ], "translation": "Spowoduje to trwałe usunięcie wszystkich danych powiązanych z Twoim kontem." }, @@ -5720,14 +9857,24 @@ "message": "This workspace URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 252]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 252 + ] + ], "translation": "Ten adres URL workspace’a jest już zajęty" }, "bJtM0P": { "message": "This workspace URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 254]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 254 + ] + ], "translation": "Ten adres URL workspace jest zarezerwowany" }, "kp6L3T": { @@ -5735,7 +9882,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 125] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 125 + ] ], "translation": "Ta nazwa użytkownika workspace jest już zajęta" }, @@ -5743,7 +9893,12 @@ "message": "Title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 127]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 127 + ] + ], "translation": "Tytuł" }, "wK4OTM": { @@ -5751,7 +9906,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 180] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 180 + ] ], "translation": "Tytuł (opcjonalnie)" }, @@ -5760,8 +9918,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] ], "translation": "Do zrobienia" }, @@ -5769,21 +9933,36 @@ "message": "Toggle menu", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 114 + ] + ], "translation": "Przełącz menu" }, "L5WQLg": { "message": "Token is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 19]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 19 + ] + ], "translation": "Wymagany jest token" }, "eEQyz+": { "message": "Track all card changes with detailed activity history.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 111 + ] + ], "translation": "Śledź wszystkie zmiany kart z szczegółową historią aktywności." }, "dtbpdR": { @@ -5791,8 +9970,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 218], - ["src/views/settings/IntegrationsSettings.tsx", 142] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 218 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 142 + ] ], "translation": "Trello" }, @@ -5800,56 +9985,96 @@ "message": "Trello disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 79]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 79 + ] + ], "translation": "Trello zostało odłączone" }, "kxEs5t": { "message": "Trello imports", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 95 + ] + ], "translation": "Importy z Trello" }, "HO+uOC": { "message": "Triaging", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 57]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 57 + ] + ], "translation": "Sortowanie zgłoszeń" }, "o+JCfN": { "message": "Trusted by fast-moving teams<0/>around the world", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Logos.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Logos.tsx", + 67 + ] + ], "translation": "Zaufany przez dynamiczne zespoły<0/>na całym świecie" }, "bZSICm": { "message": "Unable to add checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 89]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 89 + ] + ], "translation": "Nie można dodać elementu listy kontrolnej" }, "T7DJ2k": { "message": "Unable to add comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewCommentForm.tsx", 36]], + "origin": [ + [ + "src/views/card/components/NewCommentForm.tsx", + 36 + ] + ], "translation": "Nie można dodać komentarza" }, "2Q871c": { "message": "Unable to add label", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 244]], + "origin": [ + [ + "src/views/card/index.tsx", + 286 + ] + ], "translation": "Nie można dodać etykiety" }, "LeM5RY": { "message": "Unable to clear overrides", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 39]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 39 + ] + ], "translation": "Nie można wyczyścić nadpisań" }, "W1ewR0": { @@ -5857,10 +10082,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 313], - ["src/views/card/components/Dropdown.tsx", 49], - ["src/views/public/board/CardModal.tsx", 43], - ["src/views/public/board/index.tsx", 84] + [ + "src/views/board/index.tsx", + 317 + ], + [ + "src/views/card/components/Dropdown.tsx", + 49 + ], + [ + "src/views/public/board/CardModal.tsx", + 43 + ], + [ + "src/views/public/board/index.tsx", + 84 + ] ], "translation": "Nie można skopiować linku" }, @@ -5868,21 +10105,36 @@ "message": "Unable to create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 183]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 183 + ] + ], "translation": "Nie można utworzyć karty" }, "mHhffx": { "message": "Unable to create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 70]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 70 + ] + ], "translation": "Nie można utworzyć listy kontrolnej" }, "TztLaN": { "message": "Unable to create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 78]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 78 + ] + ], "translation": "Nie można utworzyć listy" }, "YcyP2z": { @@ -5890,8 +10142,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewTemplateForm.tsx", 60], - ["src/views/board/components/NewTemplateForm.tsx", 76] + [ + "src/views/board/components/NewTemplateForm.tsx", + 60 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 76 + ] ], "translation": "Nie można utworzyć szablonu" }, @@ -5900,8 +10158,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 122], - ["src/views/onboarding/workspace-details/index.tsx", 100] + [ + "src/components/NewWorkspaceForm.tsx", + 122 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 100 + ] ], "translation": "Nie można utworzyć workspace" }, @@ -5909,14 +10173,24 @@ "message": "Unable to delete attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 73]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 73 + ] + ], "translation": "Nie można usunąć załącznika" }, "Z6r9z1": { "message": "Unable to delete card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 51]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 51 + ] + ], "translation": "Nie można usunąć karty" }, "DahTzR": { @@ -5924,7 +10198,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 37] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 37 + ] ], "translation": "Nie można usunąć listy kontrolnej" }, @@ -5932,14 +10209,24 @@ "message": "Unable to delete checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 95 + ] + ], "translation": "Nie można usunąć elementu listy kontrolnej" }, "2QGEbi": { "message": "Unable to delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 45]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 45 + ] + ], "translation": "Nie można usunąć komentarza" }, "Oo4E6p": { @@ -5947,7 +10234,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 75] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 75 + ] ], "translation": "Nie można zduplikować karty" }, @@ -5955,7 +10245,12 @@ "message": "Unable to move card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 41]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 41 + ] + ], "translation": "Nie można przenieść karty" }, "8yFGGF": { @@ -5963,7 +10258,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 27] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 27 + ] ], "translation": "Nie można usunąć członka" }, @@ -5971,7 +10269,12 @@ "message": "Unable to reorder checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Checklists.tsx", 80]], + "origin": [ + [ + "src/views/card/components/Checklists.tsx", + 80 + ] + ], "translation": "Nie można zmienić kolejności elementu listy kontrolnej" }, "vfRdCZ": { @@ -5979,7 +10282,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 92] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 92 + ] ], "translation": "Nie można zresetować uprawnień" }, @@ -5987,35 +10293,60 @@ "message": "Unable to send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 40]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 40 + ] + ], "translation": "Nie można wysłać opinii" }, "Q60WUZ": { "message": "Unable to start checkout", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 149]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 149 + ] + ], "translation": "Nie można rozpocząć procesu płatności" }, "T7Mywq": { "message": "Unable to update board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 64]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 64 + ] + ], "translation": "Nie można zaktualizować tablicy" }, "XpcjLO": { "message": "Unable to update board URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 72]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 72 + ] + ], "translation": "Nie można zaktualizować adresu URL tablicy" }, "Wy6pcF": { "message": "Unable to update board visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 56]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 56 + ] + ], "translation": "Nie można zaktualizować widoczności tablicy" }, "o9WLwO": { @@ -6023,8 +10354,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 273], - ["src/views/card/index.tsx", 231] + [ + "src/views/board/index.tsx", + 277 + ], + [ + "src/views/card/index.tsx", + 273 + ] ], "translation": "Nie można zaktualizować karty" }, @@ -6032,35 +10369,60 @@ "message": "Unable to update checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistNameInput.tsx", 46]], + "origin": [ + [ + "src/views/card/components/ChecklistNameInput.tsx", + 46 + ] + ], "translation": "Nie można zaktualizować listy kontrolnej" }, "WQPDcG": { "message": "Unable to update checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 67 + ] + ], "translation": "Nie można zaktualizować elementu listy kontrolnej" }, "fYVH36": { "message": "Unable to update comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 92]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 92 + ] + ], "translation": "Nie można zaktualizować komentarza" }, "C56tim": { "message": "Unable to update due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DueDateSelector.tsx", 63]], + "origin": [ + [ + "src/views/card/components/DueDateSelector.tsx", + 63 + ] + ], "translation": "Nie można zaktualizować terminu" }, "delOXn": { "message": "Unable to update labels", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/LabelSelector.tsx", 74]], + "origin": [ + [ + "src/views/card/components/LabelSelector.tsx", + 74 + ] + ], "translation": "Nie można zaktualizować etykiet" }, "I0gAKM": { @@ -6068,8 +10430,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 217], - ["src/views/card/components/ListSelector.tsx", 54] + [ + "src/views/board/index.tsx", + 221 + ], + [ + "src/views/card/components/ListSelector.tsx", + 54 + ] ], "translation": "Nie można zaktualizować listy" }, @@ -6077,7 +10445,12 @@ "message": "Unable to update members", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/MemberSelector.tsx", 81]], + "origin": [ + [ + "src/views/card/components/MemberSelector.tsx", + 81 + ] + ], "translation": "Nie można zaktualizować członków" }, "GYv20o": { @@ -6085,8 +10458,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 41], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 64] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 41 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 64 + ] ], "translation": "Nie można zaktualizować uprawnień" }, @@ -6094,44 +10473,76 @@ "message": "Unable to update role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 65]], + "origin": [ + [ + "src/views/members/index.tsx", + 65 + ] + ], "translation": "Nie można zaktualizować roli" }, "It4/FS": { "message": "Unarchive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Przywróć tablicę z archiwum" }, "E8zYtd": { "message": "unassigned <0>{0} from the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 183]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 183 + ] + ], "translation": "<0>{0} został(a) odpięty(a) od karty" }, "hAMddS": { "message": "unassigned themselves from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 180]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 180 + ] + ], "translation": "Użytkownik odpiął się od karty" }, "9Xigls": { "message": "Under Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "W trakcie przeglądu" }, "M9p3Vw": { "message": "Unlimited activity log", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 41]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 41 + ] + ], "translation": "Nielimitowany dziennik aktywności" }, "1wCGT0": { @@ -6139,12 +10550,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 74], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 75], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 76], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 77], - ["src/views/pricing/components/Pricing.tsx", 37], - ["src/views/pricing/components/PricingTiers.tsx", 36] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 74 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 75 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 76 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 77 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 37 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 36 + ] ], "translation": "Nielimitowane tablice" }, @@ -6152,7 +10581,12 @@ "message": "Unlimited boards, unlimited lists, unlimited cards. No credit card required.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 57]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 57 + ] + ], "translation": "Nielimitowane tablice, nielimitowane listy, nielimitowane karty. Nie wymaga karty kredytowej." }, "Zz1qkk": { @@ -6160,8 +10594,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 39], - ["src/views/pricing/components/PricingTiers.tsx", 37] + [ + "src/views/pricing/components/Pricing.tsx", + 39 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 37 + ] ], "translation": "Nielimitowane karty" }, @@ -6169,7 +10609,12 @@ "message": "Unlimited comments", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 40]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 40 + ] + ], "translation": "Nielimitowane komentarze" }, "86FLn5": { @@ -6177,10 +10622,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 92], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 93], - ["src/views/pricing/components/PricingTiers.tsx", 59] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 92 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 93 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 59 + ] ], "translation": "Nielimitowane przesyłanie plików" }, @@ -6188,7 +10645,12 @@ "message": "Unlimited lists", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 38 + ] + ], "translation": "Nielimitowane listy" }, "mx8+1u": { @@ -6196,11 +10658,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 297], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 84], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 85], - ["src/views/pricing/components/PricingTiers.tsx", 80], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 68] + [ + "src/components/NewWorkspaceForm.tsx", + 297 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 84 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 85 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 80 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 68 + ] ], "translation": "Nielimitowani członkowie" }, @@ -6208,14 +10685,24 @@ "message": "Unlimited members and a custom workspace username for teams ready to scale.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 94]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 94 + ] + ], "translation": "Nieograniczona liczba członków i niestandardowa nazwa użytkownika przestrzeni roboczej dla zespołów gotowych do rozwoju." }, "Ws+3X+": { "message": "Unlimited seats and advanced features for growing teams.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 75]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 75 + ] + ], "translation": "Nielimitowane miejsca i zaawansowane funkcje dla rozwijających się zespołów." }, "SMaFdc": { @@ -6223,8 +10710,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/pages/unsubscribe/index.tsx", 68], - ["src/pages/unsubscribe/index.tsx", 93] + [ + "src/pages/unsubscribe/index.tsx", + 68 + ], + [ + "src/pages/unsubscribe/index.tsx", + 93 + ] ], "translation": "Anuluj subskrypcję" }, @@ -6233,11 +10726,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugForm.tsx", 175], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 80], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 94], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 89], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 157] + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 175 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 80 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 94 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 89 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 157 + ] ], "translation": "Aktualizuj" }, @@ -6245,44 +10753,76 @@ "message": "Update label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Aktualizuj etykietę" }, "L5ZPjz": { "message": "updated a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 136]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 136 + ] + ], "translation": "zaktualizowano element listy kontrolnej" }, "tGwwnq": { "message": "updated the description", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 126]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 126 + ] + ], "translation": "zaktualizowano opis" }, "RfgJqw": { "message": "updated the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 143]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 143 + ] + ], "translation": "zaktualizowano termin" }, "V3MPSQ": { "message": "updated the title", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 125]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 125 + ] + ], "translation": "zaktualizowano tytuł" }, "zERArS": { "message": "updated the title to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 152]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 152 + ] + ], "translation": "zaktualizowano tytuł na <0>{0}" }, "IelE1h": { @@ -6290,9 +10830,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 55], - ["src/views/settings/WorkspaceSettings.tsx", 118] + [ + "src/components/SideNavigation.tsx", + 242 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 55 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 118 + ] ], "translation": "Ulepsz do Pro" }, @@ -6301,8 +10850,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 337], - ["src/views/onboarding/workspace-details/index.tsx", 243] + [ + "src/components/NewWorkspaceForm.tsx", + 337 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 243 + ] ], "translation": "Ulepsz do Pro (29 $/miesiąc)" }, @@ -6310,7 +10865,12 @@ "message": "Upload failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 51]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 51 + ] + ], "translation": "Przesyłanie nie powiodło się" }, "BBUDfW": { @@ -6318,8 +10878,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 50], - ["src/views/boards/components/TemplateBoards.tsx", 67] + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 67 + ] ], "translation": "Pilne" }, @@ -6328,8 +10894,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 217], - ["src/views/settings/components/WebhookList.tsx", 218] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 217 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 218 + ] ], "translation": "URL" }, @@ -6338,8 +10910,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 38], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 38] + [ + "src/components/NewWorkspaceForm.tsx", + 38 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 38 + ] ], "translation": "URL może zawierać tylko litery, cyfry i myślniki" }, @@ -6347,7 +10925,12 @@ "message": "URL cannot exceed 2048 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 25 + ] + ], "translation": "URL nie może przekraczać 2048 znaków" }, "i5rE2/": { @@ -6355,8 +10938,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 36], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 36] + [ + "src/components/NewWorkspaceForm.tsx", + 36 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 36 + ] ], "translation": "URL nie może przekraczać 64 znaków" }, @@ -6365,8 +10954,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 34], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 34] + [ + "src/components/NewWorkspaceForm.tsx", + 34 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 34 + ] ], "translation": "URL musi mieć co najmniej 3 znaki" }, @@ -6374,112 +10969,208 @@ "message": "Use template", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 154]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 154 + ] + ], "translation": "Użyj szablonu" }, "n6EWYz": { "message": "Used to sign webhook payloads for verification. Leave blank to keep existing secret.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 239]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 239 + ] + ], "translation": "Służy do podpisywania danych webhook w celu weryfikacji. Pozostaw puste, aby zachować istniejący sekret." }, "7PzzBU": { "message": "User", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 322]], + "origin": [ + [ + "src/views/members/index.tsx", + 322 + ] + ], "translation": "Użytkownik" }, "tYN21H": { "message": "User is already a member of this workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 98]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 98 + ] + ], "translation": "Użytkownik jest już członkiem tego workspace" }, "vSJd18": { "message": "Video", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Wideo" }, "FmfJjN": { "message": "View and manage your API keys.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 25 + ] + ], "translation": "Wyświetlaj i zarządzaj swoimi kluczami API." }, "t2nDzl": { "message": "View and manage your billing and subscription.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 42]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 42 + ] + ], "translation": "Zobacz i zarządzaj swoim rozliczeniem oraz subskrypcją." }, "aiHZVP": { "message": "View docs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 67]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 67 + ] + ], "translation": "Zobacz dokumentację" }, "F8DaWi": { "message": "View only", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 153]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 153 + ] + ], "translation": "Tylko podgląd" }, "fSf2ee": { "message": "View our roadmap.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 154]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 154 + ] + ], "translation": "Zobacz naszą mapę drogową." }, "U5dMR6": { "message": "View workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 187]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 187 + ] + ], "translation": "Zobacz przestrzeń roboczą" }, + "V8YRD4": { + "message": "Viewing now: {0}", + "placeholders": { + "0": [ + "viewers.map((v) => v.userName).join(\", \")" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 61 + ] + ], + "translation": "" + }, "2q/Q7x": { "message": "Visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 103]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 103 + ] + ], "translation": "Widoczność" }, "BJbLe4": { "message": "We are using the <0>AGPL-3.0 license.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 94]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 94 + ] + ], "translation": "Korzystamy z <0>licencji AGPL-3.0." }, "+EkBs0": { "message": "We couldn't update your preferences. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 63]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 63 + ] + ], "translation": "Nie udało się zaktualizować Twoich preferencji. Spróbuj ponownie." }, "9y1RcT": { "message": "We're just getting started. ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 152]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 152 + ] + ], "translation": "Dopiero zaczynamy." }, "GdWB+V": { "message": "Webhook created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 104]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 104 + ] + ], "translation": "Webhook został utworzony pomyślnie" }, "2X4ecw": { @@ -6487,7 +11178,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 23] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 23 + ] ], "translation": "Webhook został usunięty pomyślnie" }, @@ -6495,14 +11189,24 @@ "message": "Webhook name cannot exceed 255 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 20]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 20 + ] + ], "translation": "Nazwa webhooka nie może przekraczać 255 znaków" }, "U2+rn0": { "message": "Webhook name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 19 + ] + ], "translation": "Nazwa webhooka jest wymagana" }, "8iP9oQ": { @@ -6510,8 +11214,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 135], - ["src/views/settings/components/WebhookList.tsx", 177] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 135 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 177 + ] ], "translation": "Test webhooka nie powiódł się" }, @@ -6519,14 +11229,24 @@ "message": "Webhook updated successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 118]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 118 + ] + ], "translation": "Webhook został zaktualizowany pomyślnie" }, "Hf1cEZ": { "message": "Webhook URL is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 23]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 23 + ] + ], "translation": "URL webhooka jest wymagany" }, "v1kQyJ": { @@ -6534,8 +11254,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 71], - ["src/views/settings/WebhookSettings.tsx", 28] + [ + "src/components/SettingsLayout.tsx", + 71 + ], + [ + "src/views/settings/WebhookSettings.tsx", + 28 + ] ], "translation": "Webhooki" }, @@ -6543,42 +11269,72 @@ "message": "Week start day", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 91 + ] + ], "translation": "Pierwszy dzień tygodnia" }, "9eF5oV": { "message": "Welcome back", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 43]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 43 + ] + ], "translation": "Witaj ponownie" }, "xEbBrW": { "message": "What license are you using?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 91 + ] + ], "translation": "Jakiej licencji używasz?" }, "H5G+qG": { "message": "What's the difference between Kan and Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 30]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 30 + ] + ], "translation": "Jaka jest różnica między Kan a Trello?" }, "mVZH9V": { "message": "When Trello launched in 2011, it blew everyone away with its carefully designed simplicity, but over the years it lost its magic and grew into something closer to \"Jira Lite\". This project is our attempt to recapture the original magic of Trello's simplicity, in open source.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 25 + ] + ], "translation": "Kiedy Trello pojawiło się w 2011 roku, zachwyciło wszystkich swoją przemyślaną prostotą, ale z czasem straciło swój urok i stało się czymś w rodzaju „Jira Lite”. Ten projekt to nasza próba odzyskania tej pierwotnej magii prostoty Trello, w wersji open source." }, "SFnH1j": { "message": "Why make an open source Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 22]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 22 + ] + ], "translation": "Dlaczego stworzyć open source'owe Trello?" }, "pmUArF": { @@ -6586,12 +11342,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 47], - ["src/views/board/index.tsx", 530], - ["src/views/boards/index.tsx", 48], - ["src/views/members/index.tsx", 258], - ["src/views/public/board/index.tsx", 125], - ["src/views/public/boards/index.tsx", 75] + [ + "src/components/SettingsLayout.tsx", + 47 + ], + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/members/index.tsx", + 258 + ], + [ + "src/views/public/board/index.tsx", + 125 + ], + [ + "src/views/public/boards/index.tsx", + 75 + ] ], "translation": "Przestrzeń robocza" }, @@ -6599,7 +11373,12 @@ "message": "Workspace created successfully. You can upgrade later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 147]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 147 + ] + ], "translation": "Przestrzeń robocza została pomyślnie utworzona. Możesz później przejść na wyższy plan w ustawieniach.", "obsolete": true }, @@ -6608,7 +11387,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 26] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 26 + ] ], "translation": "Przestrzeń robocza została usunięta" }, @@ -6617,8 +11399,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 253], - ["src/views/settings/WorkspaceSettings.tsx", 82] + [ + "src/views/onboarding/workspace-details/index.tsx", + 253 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 82 + ] ], "translation": "Opis przestrzeni roboczej" }, @@ -6627,7 +11415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 30] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 30 + ] ], "translation": "Opis przestrzeni roboczej nie może przekraczać 280 znaków" }, @@ -6636,7 +11427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 27] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 27 + ] ], "translation": "Opis przestrzeni roboczej musi mieć co najmniej 3 znaki" }, @@ -6645,7 +11439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 50] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 50 + ] ], "translation": "Opis przestrzeni roboczej zaktualizowany" }, @@ -6654,9 +11451,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 90], - ["src/views/pricing/components/Pricing.tsx", 54], - ["src/views/pricing/components/PricingTiers.tsx", 57] + [ + "src/views/home/components/Features.tsx", + 90 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 54 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 57 + ] ], "translation": "Członkowie przestrzeni roboczej" }, @@ -6665,9 +11471,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 227], - ["src/views/onboarding/workspace-details/index.tsx", 188], - ["src/views/settings/WorkspaceSettings.tsx", 63] + [ + "src/components/NewWorkspaceForm.tsx", + 227 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 188 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 63 + ] ], "translation": "Nazwa przestrzeni roboczej" }, @@ -6676,8 +11491,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 30], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 15] + [ + "src/components/NewWorkspaceForm.tsx", + 30 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 15 + ] ], "translation": "Nazwa przestrzeni roboczej nie może przekraczać 64 znaków" }, @@ -6685,7 +11506,12 @@ "message": "Workspace name is required", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 29]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 29 + ] + ], "translation": "Nazwa przestrzeni roboczej jest wymagana" }, "jZBHkN": { @@ -6693,7 +11519,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 14] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 14 + ] ], "translation": "Nazwa przestrzeni roboczej musi mieć co najmniej 3 znaki" }, @@ -6702,7 +11531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 45] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 45 + ] ], "translation": "Nazwa przestrzeni roboczej została zaktualizowana" }, @@ -6710,7 +11542,12 @@ "message": "Workspace permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 53 + ] + ], "translation": "Uprawnienia przestrzeni roboczej" }, "MN6YzG": { @@ -6718,7 +11555,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 62] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 62 + ] ], "translation": "Slug przestrzeni roboczej został zaktualizowany" }, @@ -6726,28 +11566,48 @@ "message": "Workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 72]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 72 + ] + ], "translation": "URL przestrzeni roboczej" }, "DSGzV+": { "message": "Workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 97 + ] + ], "translation": "Nazwa użytkownika przestrzeni roboczej" }, "/8pTF/": { "message": "workspace-url", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 241]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 241 + ] + ], "translation": "workspace-url" }, "4kJRen": { "message": "Writing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 43]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 43 + ] + ], "translation": "Pisanie" }, "zkWmBh": { @@ -6755,8 +11615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 19], - ["src/views/pricing/index.tsx", 25] + [ + "src/views/pricing/components/Pricing.tsx", + 19 + ], + [ + "src/views/pricing/index.tsx", + 25 + ] ], "translation": "Rocznie" }, @@ -6764,42 +11630,72 @@ "message": "Yes, we offer an forever free plan for individual use. No restrictions, no paywalls, no limits.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 86 + ] + ], "translation": "Tak, oferujemy wiecznie darmowy plan do użytku indywidualnego. Bez ograniczeń, bez paywalla, bez limitów." }, "RtlIYB": { "message": "You are about to change your password.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 91 + ] + ], "translation": "Zaraz zmienisz swoje hasło." }, "3WXdoZ": { "message": "You can always change these later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 182]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 182 + ] + ], "translation": "Zawsze możesz to później zmienić w ustawieniach." }, "aelko+": { "message": "You can get a custom workspace URL, like <0>kan.bn/kan, by going into your <1>workspace settings and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 67 + ] + ], "translation": "Możesz uzyskać własny URL przestrzeni roboczej, np. <0>kan.bn/kan, przechodząc do <1>ustawień przestrzeni roboczej i wykupując subskrypcję pro. Wszystkie subskrypcje wspierają rozwój projektu!" }, "kSxwQL": { "message": "You can invite team members by clicking the \"Invite\" button in the top right corner of the <0>members page and entering their email address. They will receive an email with a link to join the workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 111 + ] + ], "translation": "Możesz zaprosić członków zespołu, klikając przycisk „Zaproś” w prawym górnym rogu <0>strony członków i wpisując ich adres e-mail. Otrzymają oni wiadomość e-mail z linkiem do dołączenia do przestrzeni roboczej." }, "vAj6xG": { "message": "You can self-host by following the instructions in our <0>repo.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 127]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 127 + ] + ], "translation": "Możesz samodzielnie hostować, postępując zgodnie z instrukcjami w naszym <0>repozytorium." }, "h2FKMV": { @@ -6807,14 +11703,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/List.tsx", 117], - ["src/views/board/components/UpdateBoardSlugButton.tsx", 58], - ["src/views/board/components/VisibilityButton.tsx", 72], - ["src/views/board/index.tsx", 604], - ["src/views/board/index.tsx", 662], - ["src/views/boards/components/BoardsList.tsx", 71], - ["src/views/boards/index.tsx", 59], - ["src/views/boards/index.tsx", 80] + [ + "src/views/board/components/List.tsx", + 117 + ], + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 58 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 72 + ], + [ + "src/views/board/index.tsx", + 608 + ], + [ + "src/views/board/index.tsx", + 667 + ], + [ + "src/views/boards/components/BoardsList.tsx", + 71 + ], + [ + "src/views/boards/index.tsx", + 59 + ], + [ + "src/views/boards/index.tsx", + 80 + ] ], "translation": "Nie masz uprawnień" }, @@ -6822,49 +11742,180 @@ "message": "You have been logged in successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 233]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 233 + ] + ], "translation": "Zalogowano pomyślnie." }, "mchgzf": { "message": "You have been signed up successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 216]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 216 + ] + ], "translation": "Rejestracja zakończona sukcesem." }, "raHesj": { "message": "You have been unsubscribed!", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 98]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 98 + ] + ], "translation": "Zostałeś wypisany z subskrypcji!" }, "R275Pz": { "message": "You have unlimited seats with your Pro Plan. There is no additional charge for new members!", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 326]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 326 + ] + ], "translation": "W ramach planu Pro masz nielimitowaną liczbę miejsc. Nie ma dodatkowych opłat za nowych członków!" }, "MdN5zD": { "message": "You need to be an admin to manage workspace permissions.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 86 + ] + ], "translation": "Musisz być administratorem, aby zarządzać uprawnieniami przestrzeni roboczej." }, + "Cb5YSG": { + "message": "You were added to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 33 + ] + ], + "translation": "" + }, + "EYpSRU": { + "message": "You were added to a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 34 + ] + ], + "translation": "" + }, + "j77sVH": { + "message": "You were assigned to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 45 + ] + ], + "translation": "" + }, + "4sxGcV": { + "message": "You were assigned to a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 46 + ] + ], + "translation": "" + }, + "9HDx2Z": { + "message": "You were mentioned in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 29 + ] + ], + "translation": "" + }, + "e6wIqm": { + "message": "You were mentioned in a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 30 + ] + ], + "translation": "" + }, + "11dHnN": { + "message": "You were removed from", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 37 + ] + ], + "translation": "" + }, + "YdIn4I": { + "message": "You were removed from a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 38 + ] + ], + "translation": "" + }, "2SePRT": { "message": "You've been invited to join a workspace on kan.bn.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 134]], + "origin": [ + [ + "src/views/invite/index.tsx", + 134 + ] + ], "translation": "Otrzymałeś zaproszenie do przestrzeni roboczej na kan.bn." }, "uOqaMC": { "message": "You've been invited to join a workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 135]], + "origin": [ + [ + "src/views/invite/index.tsx", + 135 + ] + ], "translation": "Otrzymałeś zaproszenie do przestrzeni roboczej." }, "GoDLB9": { @@ -6872,7 +11923,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 28 + ] ], "translation": "Twoje konto zostało usunięte." }, @@ -6880,49 +11934,84 @@ "message": "Your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 229]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 229 + ] + ], "translation": "Twój awatar" }, "evg7+A": { "message": "Your boards have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 382]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 382 + ] + ], "translation": "Twoje tablice zostały zaimportowane." }, "LqWW5F": { "message": "Your display name has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 42]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 42 + ] + ], "translation": "Twoja nazwa wyświetlana została zaktualizowana." }, "tca56/": { "message": "Your file has been uploaded successfully.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 46]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 46 + ] + ], "translation": "Twój plik został pomyślnie przesłany." }, "HcT8J4": { "message": "Your GitHub account has been connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 100 + ] + ], "translation": "Twoje konto GitHub zostało połączone." }, "AdxYds": { "message": "Your GitHub account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 123]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 123 + ] + ], "translation": "Twoje konto GitHub zostało odłączone." }, "PELbXB": { "message": "Your GitHub account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 220]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 220 + ] + ], "translation": "Twoje konto GitHub jest połączone." }, "Ozt2vv": { @@ -6930,7 +12019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 70] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 70 + ] ], "translation": "Twoje hasło zostało zmienione." }, @@ -6938,49 +12030,108 @@ "message": "Your profile image has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 190]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 190 + ] + ], "translation": "Twoje zdjęcie profilowe zostało zaktualizowane." }, "+jbXzb": { "message": "Your projects have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 230]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 230 + ] + ], "translation": "Twoje projekty zostały zaimportowane." }, + "0AfkMq": { + "message": "Your role changed in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 41 + ] + ], + "translation": "" + }, + "GKeVeM": { + "message": "Your role was changed", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 42 + ] + ], + "translation": "" + }, "CJWDTP": { "message": "Your Trello account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 80]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 80 + ] + ], "translation": "Twoje konto Trello zostało odłączone." }, "WRsbHO": { "message": "Your Trello account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 171]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 171 + ] + ], "translation": "Twoje konto Trello jest połączone." }, "25fAUC": { "message": "Your unsubscribe link is missing a token. Please open the latest email and try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 33]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 33 + ] + ], "translation": "Twój link do wypisania się nie zawiera tokena. Otwórz najnowszy e-mail i spróbuj ponownie." }, "GRAGsB": { "message": "Your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 322]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 322 + ] + ], "translation": "Twoja przestrzeń robocza" }, "j0o6ml": { "message": "Your workspace description", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 325]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 325 + ] + ], "translation": "Opis Twojej przestrzeni roboczej" }, "GnSSGm": { @@ -6988,7 +12139,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 51] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 51 + ] ], "translation": "Opis Twojego workspace został zaktualizowany." }, @@ -6997,7 +12151,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 27 + ] ], "translation": "Twój workspace został usunięty." }, @@ -7006,7 +12163,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 46] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 46 + ] ], "translation": "Nazwa Twojego workspace została zaktualizowana." }, @@ -7015,7 +12175,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 63 + ] ], "translation": "Slug Twojego workspace został zaktualizowany." }, @@ -7024,8 +12187,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 197], - ["src/views/onboarding/workspace-details/index.tsx", 198] + [ + "src/views/onboarding/workspace-details/index.tsx", + 197 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 198 + ] ], "translation": "twoja-przestrzen" }, @@ -7033,7 +12202,12 @@ "message": "YouTube URL", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 147]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 147 + ] + ], "translation": "Adres URL YouTube" } } \ No newline at end of file diff --git a/apps/web/src/locales/pl/messages.ts b/apps/web/src/locales/pl/messages.ts index fc0bd3a9a..4980d955f 100644 --- a/apps/web/src/locales/pl/messages.ts +++ b/apps/web/src/locales/pl/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Social Media\"],\"+3TYXa\":[\"Aby zapewnić długoterminową stabilność, wiemy, że wszystkie dobre projekty open source potrzebują źródła finansowania. Naszym jest płatna chmura dla przestrzeni roboczych z wieloma użytkownikami oraz dla niestandardowych slugów przestrzeni roboczych. Nie ma obowiązku korzystania z tej opcji – możesz samodzielnie hostować oprogramowanie na własnej infrastrukturze bez żadnych opłat.\"],\"+5kO8P\":[\"Sobota\"],\"+8Nek/\":[\"Miesięcznie\"],\"+EkBs0\":[\"Nie udało się zaktualizować Twoich preferencji. Spróbuj ponownie.\"],\"+MdEsf\":[\"Wymagane jest nowe hasło\"],\"+OhFss\":[\"Rozpocznij za darmo, bez limitów użytkowania. Aby współpracować, przejdź na plan dopasowany do wielkości Twojego zespołu.\"],\"+VoTOr\":[\"rozliczane miesięcznie\"],\"+djOzj\":[\"Zaproś członka\"],\"+h2faV\":[\"Ustawienia | Webhooki\"],\"+jbXzb\":[\"Twoje projekty zostały zaimportowane.\"],\"+nvZ6j\":[\"Etykiety i filtry\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Szablon\"],\"/asTmx\":[\"Zgłoszenie błędu\"],\"/bBVaD\":[\"GitHub odłączony\"],\"/bZzdR\":[\"Wzmianki\"],\"/f3t6v\":[\"Skonfiguruj, które działania są dozwolone dla każdej roli w przestrzeni roboczej. Te uprawnienia dotyczą wszystkich członków z tą rolą.\"],\"/gaSVU\":[\"Mapa drogowa\"],\"/glL9Q\":[\"Brak \",[\"0\"]],\"/jd3aj\":[\"Zaawansowane role administratora\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"Potężna, elastyczna aplikacja kanban, która pomaga organizować pracę, śledzić postępy i osiągać rezultaty — wszystko w jednym miejscu.\"],\"/tOdd2\":[\"Twoje zdjęcie profilowe zostało zaktualizowane.\"],\"0+0/3e\":[\"Utwórz nową etykietę\"],\"0+ewPp\":[\"Ulepszenie\"],\"02i3WU\":[\"Importy\"],\"06EQqT\":[\"Duplikowanie…\"],\"0KjpAr\":[\"Może wyświetlać członków\"],\"0RE1AJ\":[\"Zarchiwizowane tablice pojawią się tutaj.\"],\"0StR7t\":[\"Wprowadź nowe hasło\"],\"0jV46i\":[\"Nie można usunąć elementu listy kontrolnej\"],\"0qyZ4b\":[\"Ładowanie uprawnień...\"],\"0rPv1T\":[\"Zaktualizowano zdjęcie profilowe\"],\"0utuU6\":[\"Kopiuj listy kontrolne\"],\"0xD8Of\":[\"Strona, której szukasz, nie istnieje lub została przeniesiona.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Importuj tablicę (1)\"],\"few\":[\"Importuj tablice (\",[\"boardCount\"],\")\"],\"many\":[\"Importuj tablic (\",[\"boardCount\"],\")\"],\"other\":[\"Importuj tablice (\",[\"boardCount\"],\")\"]}]],\"14Xi3Z\":[\"Dodanie nowego członka będzie kosztować dodatkowo \",[\"price\"],\" (\",[\"billingType\"],\") za miejsce.\"],\"1H5u1m\":[\"Pytania?\"],\"1WuwiM\":[\"Przejdź do ustawień\"],\"1bJKhj\":[\"Kopiuj link do karty\"],\"1hzdxO\":[\"Uprawnienia przestrzeni roboczej\"],\"1iShX0\":[\"Termin dzisiaj\"],\"1njn7W\":[\"Jasny\"],\"1rVAfU\":[\"Załaduj więcej aktywności\"],\"1rWxEw\":[\"Oczekiwanie na klienta\"],\"1sRmLC\":[\"Dyskutuj i współpracuj nad kartami.\"],\"1wCGT0\":[\"Nielimitowane tablice\"],\"25fAUC\":[\"Twój link do wypisania się nie zawiera tokena. Otwórz najnowszy e-mail i spróbuj ponownie.\"],\"25mvI+\":[\"Linki do zaproszeń wymagają subskrypcji Team lub Pro. Zaktualizuj swój workspace.\"],\"29sSki\":[\"ukończono element listy kontrolnej <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"Lista\"],\"2Bu8xj\":[\"Nie znaleziono żadnych tablic\"],\"2M84k3\":[\"Niestandardowe uprawnienia\"],\"2MPcep\":[\"Import zakończony\"],\"2POOFK\":[\"Darmowe\"],\"2Py5S/\":[\"Potwierdzam, że wszystkie dane przestrzeni roboczej zostaną trwale usunięte i chcę kontynuować.\"],\"2Q871c\":[\"Nie można dodać etykiety\"],\"2QGEbi\":[\"Nie można usunąć komentarza\"],\"2SePRT\":[\"Otrzymałeś zaproszenie do przestrzeni roboczej na kan.bn.\"],\"2X4ecw\":[\"Webhook został usunięty pomyślnie\"],\"2h4PVB\":[\"Nazwa Twojego workspace została zaktualizowana.\"],\"2liqDZ\":[\"Potwierdzam, że wszystkie dane mojego konta zostaną trwale usunięte i chcę kontynuować.\"],\"2q/Q7x\":[\"Widoczność\"],\"2roTVj\":[\"Opinia została wysłana\"],\"3LDCpD\":[\"Tej operacji nie można cofnąć.\"],\"3WXdoZ\":[\"Zawsze możesz to później zmienić w ustawieniach.\"],\"3ZjRJY\":[\"zmieniono nazwę checklisty <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Każdy, kto ma ten link, może dołączyć do twojego workspace\"],\"3d54Wj\":[\"Webhook został zaktualizowany pomyślnie\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Połącz z GitHub\"],\"3pIq39\":[\"Role administratora\"],\"479pdJ\":[\"Potwierdź nowe hasło\"],\"4DOCMI\":[\"Adres URL YouTube\"],\"4Revpc\":[\"Mały\"],\"4RoY9J\":[\"Post na blogu\"],\"4XF0BB\":[\"Zdjęcie profilowe\"],\"4gAX8s\":[\"Przełącz menu\"],\"4kJRen\":[\"Pisanie\"],\"4obmDr\":[\"404 - Strona nie znaleziona | kan.bn\"],\"51UCsN\":[\"Przenieś do innej listy\"],\"53QYh8\":[\"Nie udało się utworzyć tablicy\"],\"55xJ/O\":[\"Błąd podczas zmiany hasła\"],\"58AiWX\":[\"Potwierdź nowe hasło\"],\"5ACX4z\":[\"Newsletter\"],\"5IXWmO\":[\"Sprawdź swoją skrzynkę odbiorczą\"],\"5P4rhH\":[\"Nie można zaktualizować członków\"],\"5RkSzq\":[\"Kopiuj link do tablicy\"],\"5eZwRW\":[\"Połącz swoje konto Trello, aby zaimportować tablice.\"],\"5h8ooz\":[\"Klucze API\"],\"5iplxh\":[\"Nowe hasło musi się różnić od obecnego\"],\"5k0NLb\":[\"Recenzja\"],\"5lWFkC\":[\"Zaloguj się\"],\"5ntVtp\":[\"Nie udało się przetestować webhooka\"],\"5y6qY8\":[\"dodano załącznik\"],\"69b7aE\":[\"Otwórz menu poleceń\"],\"6EWT6T\":[\"Rekrutacja\"],\"6FDocz\":[\"Zarejestruj się przez \"],\"6FsGbN\":[\"Rozpocznij, tworząc nowy \",[\"0\"]],\"6OTo9n\":[\"Nazwa szablonu jest wymagana\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Nowy \",[\"0\"]],\"6YtxFj\":[\"Nazwa\"],\"6mbe4b\":[\"Osoby\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"Uprawnienia członka zostały zaktualizowane.\"],\"6uBU1F\":[\"Pełny dostęp do API\"],\"6zeSBB\":[\"Może tworzyć karty\"],\"74F7N/\":[\"Czy na pewno chcesz usunąć swoje konto?\"],\"7EhE4k\":[\"Aktualizuj etykietę\"],\"7L01XJ\":[\"Akcje\"],\"7PzzBU\":[\"Użytkownik\"],\"7RpHg/\":[\"Niestandardowa nazwa użytkownika\"],\"7Ufoyg\":[\"Nielimitowane listy\"],\"7aONWr\":[\"URL nie może przekraczać 2048 znaków\"],\"7b2yuC\":[\"Wprowadź poprawne hasło\"],\"7d1a0d\":[\"Publiczne\"],\"7eMo+U\":[\"Przejdź do strony głównej\"],\"7hktsm\":[\"Pierwsze kroki\"],\"7i8j3G\":[\"Firma\"],\"8+BY11\":[\"Adres URL tablicy skopiowany do schowka\"],\"86FLn5\":[\"Nielimitowane przesyłanie plików\"],\"86XI28\":[\"Potwierdź swoje preferencje dotyczące e-maili:\"],\"8AbRER\":[\"Ustaw termin\"],\"8AwlaR\":[\"Nieograniczona liczba członków i niestandardowa nazwa użytkownika przestrzeni roboczej dla zespołów gotowych do rozwoju.\"],\"8F1i42\":[\"Strona nie znaleziona\"],\"8Is1ih\":[\"Oferta na start\"],\"8RdLDU\":[\"Projekt osobisty\"],\"8TveY+\":[\"Tablice\"],\"8Z4pNX\":[\"Może tworzyć listy\"],\"8iP0S8\":[\"Wszystko z darmowego planu oraz:\"],\"8iP9oQ\":[\"Test webhooka nie powiódł się\"],\"8yFGGF\":[\"Nie można usunąć członka\"],\"99VIgC\":[\"Usuń członka\"],\"9PaIxv\":[\"Funkcje podstawowe\"],\"9Xigls\":[\"W trakcie przeglądu\"],\"9YPBHv\":[\"Nie udało się usunąć webhooka\"],\"9cDpsw\":[\"Uprawnienia\"],\"9eF5oV\":[\"Witaj ponownie\"],\"9h7RDh\":[\"Oferta\"],\"9lFfqv\":[\"/miesiąc\"],\"9s9O5h\":[\"Błąd podczas usuwania przestrzeni roboczej\"],\"9u5BOr\":[\"Członkowie | \",[\"0\"]],\"9wdpwp\":[\"Portal rozliczeniowy\"],\"9x4DAL\":[[\"0\"],\" nie znaleziono\"],\"9y1RcT\":[\"Dopiero zaczynamy.\"],\"A23Y7X\":[\"Dołącz do workspace | kan.bn\"],\"A42Dqn\":[\"Niestandardowy branding\"],\"A5hiCy\":[\"Utwórz szablon\"],\"A8jqN7\":[\"Nie można wysłać opinii\"],\"ABCjd9\":[\"Publikowanie\"],\"ADEin1\":[\"Ustawienia | Rozliczenia\"],\"ALhEZV\":[\"Może zapraszać członków\"],\"ANyn0x\":[\"Wszystko, czego potrzebujesz, za darmo na zawsze. Nielimitowane tablice, nielimitowane listy, nielimitowane karty. Możesz uaktualnić w dowolnym momencie.\"],\"ARvBT/\":[\"rozliczane rocznie\"],\"ASjvm9\":[\"URL przestrzeni roboczej\"],\"AUYALh\":[\"Wkrótce dostępne\"],\"AX4ktp\":[\"Tworzenie treści\"],\"AZI/wb\":[\"Etykiety i filtry\"],\"AdxYds\":[\"Twoje konto GitHub zostało odłączone.\"],\"AeXO77\":[\"Konto\"],\"Alp2ti\":[\"Kontakt z działem sprzedaży\"],\"Ax/hYa\":[\"Opis przestrzeni roboczej nie może przekraczać 280 znaków\"],\"B3xxao\":[\"Dodaj kartę\"],\"BBUDfW\":[\"Pilne\"],\"BEVzjL\":[\"Import nie powiódł się\"],\"BJbLe4\":[\"Korzystamy z <0>licencji AGPL-3.0.\"],\"BMkVQ3\":[\"usunięto checklistę <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"przeniósł(-ęła) kartę z <0>\",[\"0\"],\" do<1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Duplikuj kartę\"],\"BZkYSt\":[\"usunięto \",[\"0\"],\" etykiety: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Czy na pewno chcesz usunąć workspace \",[\"0\"],\"?\"],\"Bhgd0l\":[\"Skontaktuj się z nami\"],\"BzEFor\":[\"lub\"],\"C56tim\":[\"Nie można zaktualizować terminu\"],\"C6gv54\":[\"Tablica została przywrócona z archiwum.\"],\"CAL6E9\":[\"Zespoły\"],\"CB/NpV\":[\"Wysoki priorytet\"],\"CHZ1jC\":[\"usunięto element checklisty <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Wprowadź poprawne imię\"],\"CJWDTP\":[\"Twoje konto Trello zostało odłączone.\"],\"CJukzS\":[[\"0\"],\" etykiety\"],\"CTqTgr\":[\"Skróty klawiaturowe\"],\"CYWHT+\":[\"Błąd podczas przesyłania zdjęcia profilowego\"],\"Cd4sTD\":[\"Najlepsze dla osób indywidualnych i twórców rozpoczynających pracę\"],\"Ci/KUX\":[\"Ustawienia | Workspace\"],\"CkVV1t\":[\"Błąd podczas aktualizacji opisu przestrzeni roboczej\"],\"Cmudpi\":[\"Może usuwać przestrzeń roboczą\"],\"CozWO1\":[\"Nazwa przestrzeni roboczej\"],\"CujNX4\":[\"dodano załącznik <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"System\"],\"D0esZz\":[\"Dziennik aktywności\"],\"D3C4Yx\":[\"Wymagane jest obecne hasło\"],\"D7/JvJ\":[\"Dopasuj kwadratowy kadr do swojego awatara.\"],\"D9ROdV\":[\"Linki do zaproszeń\"],\"DAV3uK\":[\"Uprawnienia zaktualizowane\"],\"DBC3t5\":[\"Niedziela\"],\"DFjdv0\":[\"Usuń szablon\"],\"DMeWZD\":[\"Czy na pewno chcesz usunąć ten/ta \",[\"0\"],\"?\"],\"DPfwMq\":[\"Gotowe\"],\"DSGzV+\":[\"Nazwa użytkownika przestrzeni roboczej\"],\"DahTzR\":[\"Nie można usunąć listy kontrolnej\"],\"DbZgsJ\":[\"Utwórz szablon\"],\"DtXlZq\":[\"Nie można zaktualizować listy kontrolnej\"],\"Dz63YI\":[\"Wystąpił błąd podczas odłączania konta GitHub.\"],\"E0t3jO\":[\"dodano element checklisty <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Cennik per stanowisko\"],\"E8zYtd\":[\"<0>\",[\"0\"],\" został(a) odpięty(a) od karty\"],\"ECJKc4\":[\"Utworzono klucz API\"],\"EEHmPC\":[\"Oferta na start: nielimitowana liczba członków z Pro\"],\"EH8IL3\":[\"Checklisty\"],\"EII/X8\":[\"Wszystkie funkcje wersji Teams +\"],\"ERpq2P\":[\"Nie znaleziono wyników dla „\",[\"debouncedQuery\"],\"”.\"],\"ESClHO\":[\"Priorytetowe wsparcie e-mailowe\"],\"Eg99Sc\":[\"Obecnie nie są dostępne żadne metody uwierzytelniania\"],\"Eit43O\":[\"ustaw termin\"],\"EkH9pt\":[\"Aktualizuj\"],\"EvArWh\":[\"Współpracuj płynnie ze swoim zespołem.\"],\"F/FPk/\":[\"Ustawienia | Uprawnienia\"],\"F/vB2g\":[\"Pomysły na ulepszenie tej strony...\"],\"F0YmUY\":[\"Kopiuj link do karty\"],\"F3bW6y\":[\"Platforma\"],\"F4KRmY\":[\"$8/miesiąc\"],\"F4PLG4\":[\"Opis przestrzeni roboczej zaktualizowany\"],\"F6m23G\":[\"Przesyłanie plików\"],\"F6pfE9\":[\"Aktywna\"],\"F8DaWi\":[\"Tylko podgląd\"],\"FEr96N\":[\"Motyw\"],\"FdtSNC\":[\"Utwórz workspace\"],\"FmN5me\":[\"Rozwiązanie\"],\"FmfJjN\":[\"Wyświetlaj i zarządzaj swoimi kluczami API.\"],\"Fpci8b\":[\"Czy na pewno chcesz usunąć tę checklistę?\"],\"G1Gw0v\":[\"Nowy szablon\"],\"GAD3Dx\":[\"Własna domena\"],\"GDvlUT\":[\"Rola\"],\"GRAGsB\":[\"Twoja przestrzeń robocza\"],\"GYv20o\":[\"Nie można zaktualizować uprawnień\"],\"GdWB+V\":[\"Webhook został utworzony pomyślnie\"],\"GnRmu4\":[\"Nazwa checklisty\"],\"GnSSGm\":[\"Opis Twojego workspace został zaktualizowany.\"],\"GoDLB9\":[\"Twoje konto zostało usunięte.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Rozszerzona mapa drogowa\"],\"Gxxi5J\":[\"Dodaj checklistę\"],\"H5G+qG\":[\"Jaka jest różnica między Kan a Trello?\"],\"HBI6nY\":[\"Potrzebujesz pomocy?\"],\"HO+uOC\":[\"Sortowanie zgłoszeń\"],\"HQVm6e\":[\"Ten adres URL jest już zajęty\"],\"HVIzNO\":[\"Może wyświetlać listy\"],\"HYV6Lq\":[\"Nie udało się zaakceptować zaproszenia. Spróbuj ponownie później lub skontaktuj się z obsługą klienta.\"],\"HcT8J4\":[\"Twoje konto GitHub zostało połączone.\"],\"HeFWjW\":[\"Następne kroki\"],\"Hf1cEZ\":[\"URL webhooka jest wymagany\"],\"Hg1qE9\":[\"Slug Twojego workspace został zaktualizowany.\"],\"I+AROe\":[\"Może edytować karty\"],\"I0gAKM\":[\"Nie można zaktualizować listy\"],\"IDvohQ\":[\"oznaczył(a) element listy kontrolnej jako nieukończony\"],\"IFgUX6\":[\"Może usuwać członków\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Ulepsz do Pro\"],\"Iqh0Uv\":[\"Zaplanowane\"],\"IqjpYe\":[\"Widoczność e-maila\"],\"IrZaAn\":[\"Hasło zostało zmienione\"],\"It4/FS\":[\"Przywróć tablicę z archiwum\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Kontynuuj przez \"],\"J4+OTA\":[\"Przenieś do listy\"],\"J5nbej\":[\"Krytyczne\"],\"J5pbP6\":[\"Może edytować role i uprawnienia członków\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JCdzgZ\":[\"Prośba o funkcję\"],\"JUce1S\":[\"Przypisane osoby\"],\"JbXXUW\":[\"Pamiętaj, że tej akcji nie można cofnąć.\"],\"JcCDm9\":[\"Szablon utworzony\"],\"Jgaz7E\":[\"Uprawnienia zresetowane\"],\"JjEJSy\":[\"Skonfiguruj swoją przestrzeń roboczą\"],\"JnWJXY\":[\"magic link\"],\"JxhWxU\":[\"w\"],\"JyXBgS\":[\"dokumentacja\"],\"K3iLeO\":[\"Zobacz, co nasi użytkownicy mówią o Kan\"],\"K7k9u3\":[\"Nie można przenieść karty\"],\"KAsRdK\":[\"Przejdź do członków\"],\"KEim/+\":[\"usunięto załącznik\"],\"KFJgmZ\":[\"Nazwa wyświetlana musi mieć co najmniej 3 znaki\"],\"KLJ4eD\":[\"Link do zaproszenia skopiowany\"],\"KM6m8p\":[\"Zespół\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Zaawansowane opcje administratora\"],\"KiVc+q\":[\"Pełny etat\"],\"KuSt9W\":[\"Jak samodzielnie hostować?\"],\"L5WQLg\":[\"Wymagany jest token\"],\"L5ZPjz\":[\"zaktualizowano element listy kontrolnej\"],\"LTGE7Y\":[\"Przestrzeń robocza została pomyślnie utworzona. Możesz później przejść na wyższy plan w ustawieniach.\"],\"LeM5RY\":[\"Nie można wyczyścić nadpisań\"],\"LoUCpj\":[\"Błąd podczas aktualizacji nazwy przestrzeni roboczej\"],\"LqWW5F\":[\"Twoja nazwa wyświetlana została zaktualizowana.\"],\"LrcnbT\":[\"Hostuj Kan na własnej infrastrukturze. Idealne dla organizacji, które potrzebują pełnej kontroli nad swoimi danymi.\"],\"Lt+ZP3\":[\"ukończono element listy kontrolnej\"],\"M9p3Vw\":[\"Nielimitowany dziennik aktywności\"],\"MCIXdZ\":[\"Połącz swoje konto GitHub, aby zaimportować projekty.\"],\"MFKlMB\":[\"Zaproś\"],\"MHrjPM\":[\"Tytuł\"],\"MI5OBT\":[\"URL może zawierać tylko litery, cyfry i myślniki\"],\"MK16u2\":[\"Brak dat\"],\"MKAScN\":[\"Może wyświetlać tablice\"],\"MN6YzG\":[\"Slug przestrzeni roboczej został zaktualizowany\"],\"MWrbWq\":[\"Ustawienia | Konto\"],\"MdN5zD\":[\"Musisz być administratorem, aby zarządzać uprawnieniami przestrzeni roboczej.\"],\"MdwUGG\":[\"Oszczędzaj czas dzięki szablonom tablic do wielokrotnego użytku.\"],\"MeO/vH\":[\"Spowoduje to trwałe usunięcie wszystkich danych powiązanych z tym workspace’em.\"],\"MlyjJu\":[\"Nazwa wyświetlana nie może przekraczać 280 znaków\"],\"MxQXhL\":[\"Nie można utworzyć workspace\"],\"N/bcWA\":[\"Logowanie | kan.bn\"],\"N3380t\":[\"Może tworzyć tablice\"],\"N7aud6\":[\"Inteligentne wyszukiwanie\"],\"NH54UR\":[\"zmieniono nazwę elementu checklisty na <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"Tablica została zarchiwizowana.\"],\"NgaR6B\":[\"Wprowadź hasło\"],\"NnH3pK\":[\"Test\"],\"NoNwIX\":[\"Nieaktywny\"],\"NypLoL\":[\"zmieniono nazwę checklisty\"],\"O0li0W\":[\"Wprowadź swoje obecne hasło i wybierz nowe, bezpieczne hasło.\"],\"O1wAlQ\":[\"Gość\"],\"O3oNi5\":[\"E-mail\"],\"O83K21\":[\"dodano element checklisty\"],\"O9jVbx\":[\"Niski priorytet\"],\"OAYToL\":[\"To usunie wszystkie niestandardowe uprawnienia członków w tym workspace’ie. Członkowie będą dziedziczyć uprawnienia tylko ze swoich ról.\"],\"OIA0ad\":[\"Nazwa przestrzeni roboczej została zaktualizowana\"],\"OTxjpR\":[\"twoja-przestrzen\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Odłącz GitHub\"],\"Oi+J+N\":[\"Wybierz plan, aby rozpocząć. Wszystkie płatne plany zawierają 14-dniowy bezpłatny okres próbny.\"],\"OkTY4+\":[\"Sekret nie może przekraczać 512 znaków\"],\"Oo4E6p\":[\"Nie można zduplikować karty\"],\"OpNhRn\":[\"Nie wymaga karty kredytowej\"],\"OtjenF\":[\"Wprowadź poprawny adres e-mail\"],\"OvoEq7\":[\"Członek\"],\"OwneeH\":[\"Niestandardowa nazwa użytkownika workspace\"],\"Ozt2vv\":[\"Twoje hasło zostało zmienione.\"],\"P6dJdq\":[\"Nadpisania usunięte\"],\"P8Cunr\":[\"Domyślna nazwa użytkownika\"],\"PCIlOO\":[\"Dodaj członka\"],\"PELbXB\":[\"Twoje konto GitHub jest połączone.\"],\"PRjvDT\":[\"Czy na pewno chcesz usunąć ten komentarz?\"],\"PRofO0\":[\"Edytuj film na YouTube\"],\"PTzsxH\":[\"Zaktualizowano widoczność tablicy\"],\"PVT7q7\":[\"GitHub połączony\"],\"PZCqeW\":[\"Spróbuj ponownie później.\"],\"Pat4r8\":[\"Podstawowy Roadmap\"],\"PpZkda\":[\"Funkcje\"],\"PyYD/v\":[\"przypisano <0>\",[\"0\"],\" do karty\"],\"Q60WUZ\":[\"Nie można rozpocząć procesu płatności\"],\"Q9pQaX\":[\"Nie znaleziono jeszcze żadnych ról dla tego workspace'a.\"],\"QD8opX\":[\"Tablica\"],\"QHhZeE\":[\"Szablon został pomyślnie utworzony\"],\"QNtP5M\":[\"Użyj szablonu\"],\"Qh7QmR\":[\"Usunięto z ulubionych\"],\"QnzD50\":[\"On-premise\"],\"QtACvI\":[\"Utwórz etykietę\"],\"Qtzfdk\":[\"Plan Pro ∞\"],\"R+w/Va\":[\"Rozliczenia\"],\"R1c3Mq\":[\"Nazwa tablicy jest wymagana\"],\"R275Pz\":[\"W ramach planu Pro masz nielimitowaną liczbę miejsc. Nie ma dodatkowych opłat za nowych członków!\"],\"R3FsF4\":[\"Pobieranie nie powiodło się\"],\"R41XLH\":[\"Nie udało się zaktualizować webhooka\"],\"R6pB8R\":[\"Daj gwiazdkę na Githubie\"],\"RHZu7R\":[\"Doceniany przez zespoły na całym świecie\"],\"RJA+sg\":[\"Nowe zgłoszenie\"],\"RRn9jf\":[\"Kliknij w link, który wysłaliśmy do \",[\"magicLinkRecipient\"],\", aby się zalogować.\"],\"RSGOS1\":[\"Może usuwać listy\"],\"RfgJqw\":[\"zaktualizowano termin\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Prześlij opinię\"],\"RtlIYB\":[\"Zaraz zmienisz swoje hasło.\"],\"RzxgOE\":[\"Role i uprawnienia\"],\"SFnH1j\":[\"Dlaczego stworzyć open source'owe Trello?\"],\"SMaFdc\":[\"Anuluj subskrypcję\"],\"SNfg0e\":[\"Może wyświetlać przestrzeń roboczą\"],\"SPLN9O\":[\"Zarządzaj swoimi danymi\"],\"SRvxId\":[\"Sekret HMAC do weryfikacji podpisu\"],\"STSYcd\":[\"Może usuwać komentarze\"],\"SUXBxp\":[\"Inżynieria\"],\"SUvm1Y\":[\"Dobry dla osób zaczynających, które potrzebują tylko podstaw.\"],\"SWEskc\":[\"URL musi mieć co najmniej 3 znaki\"],\"Sb2gYF\":[\"Nowa lista\"],\"ScJ9fj\":[\"Polityka prywatności\"],\"Se/UIp\":[\"Do zrobienia\"],\"SiPp29\":[\"Utwórz webhook\"],\"SkCNhl\":[\"Wyszukaj tablice i karty...\"],\"SlfejT\":[\"Błąd\"],\"T/pF0Z\":[\"Usuń z ulubionych\"],\"T21jY/\":[\"dodano etykietę do karty\"],\"T7DJ2k\":[\"Nie można dodać komentarza\"],\"T7LJic\":[\"przeniósł(-ęła) kartę do innej listy\"],\"T7Mywq\":[\"Nie można zaktualizować tablicy\"],\"TCOMOO\":[\"Edytuj uprawnienia\"],\"TCt/8K\":[\"Ograniczony dostęp do API\"],\"TFv5tM\":[\"Nie można zaktualizować roli\"],\"TH3Irz\":[\"Uprawnienie\"],\"TKFUnX\":[\"Konto usunięte\"],\"TX0bT7\":[\"Brak skonfigurowanych webhooków. Dodaj webhook, aby otrzymywać powiadomienia.\"],\"TXO5TM\":[\"Nie zarejestrowano skrótów klawiaturowych.\"],\"TYli1B\":[\"Może edytować komentarze\"],\"TbjyhA\":[\"Dokumentacja\"],\"TcXcmk\":[\"Code review\"],\"TdfEV7\":[\"Zarchiwizowana\"],\"TjREUS\":[\"Nowy klucz API\"],\"TmvrjU\":[\"Adres URL tablicy musi mieć co najmniej 3 znaki\"],\"TvY/XA\":[\"Dokumentacja\"],\"Tz0i8g\":[\"Ustawienia\"],\"TztLaN\":[\"Nie można utworzyć listy\"],\"U2+rn0\":[\"Nazwa webhooka jest wymagana\"],\"U3pytU\":[\"Administrator\"],\"U5dMR6\":[\"Zobacz przestrzeń roboczą\"],\"UCLeG0\":[\"Regulamin\"],\"UGCIzB\":[\"Dodaj / edytuj etykietę\"],\"UQbwrz\":[\"Wszystkie systemy działają prawidłowo\"],\"URAE3q\":[\"Wstrzymane\"],\"USVCGU\":[\"Błąd podczas dezaktywacji linku zaproszenia\"],\"UbRKMZ\":[\"Oczekujące\"],\"UbYdrA\":[\"Częstotliwość płatności\"],\"UeDFpo\":[\"Jak finansowany jest projekt?\"],\"UirJfL\":[\"Niestandardowy SLA\"],\"UlhdTP\":[\"Przestrzeń robocza została usunięta\"],\"Un80BR\":[\"OSS Friends\"],\"UoSI+i\":[\"Najlepsze dla małych i rozwijających się zespołów wymagających współpracy\"],\"UveK6V\":[\"Przejdź do aplikacji\"],\"Uworke\":[\"Niepełny etat\"],\"UxKoFf\":[\"Nawigacja\"],\"V1KOLq\":[\"Powiadomienia e-mail o wzmiankach\"],\"V3MPSQ\":[\"zaktualizowano tytuł\"],\"V8YWP3\":[\"Wprowadź własny tytuł\"],\"VHS0aJ\":[\"Wyczyścić wszystkie niestandardowe uprawnienia?\"],\"VKoDQD\":[\"Utwórz nową \",[\"0\"]],\"VUZDlr\":[\"Referencje\"],\"VXk54Y\":[\"samodzielnie przypisał(a) kartę\"],\"VbyRUy\":[\"Komentarze\"],\"VhMDMg\":[\"Zmień hasło\"],\"Vt50G1\":[\"Podstawowy Kanban\"],\"W/Elkg\":[\"Średni priorytet\"],\"W/nQk1\":[\"Plan darmowy\"],\"W1ewR0\":[\"Nie można skopiować linku\"],\"W5r8Qh\":[\"usunięto element checklisty\"],\"W8oT+L\":[\"Nie udało się pobrać informacji o wideo\"],\"WHHLh9\":[\"Nie można usunąć załącznika\"],\"WI4eGo\":[\"Jak uzyskać własny adres URL?\"],\"WQPDcG\":[\"Nie można zaktualizować elementu listy kontrolnej\"],\"WRkpB1\":[\"Rejestracja wyłączona\"],\"WRsbHO\":[\"Twoje konto Trello jest połączone.\"],\"WYDptz\":[\"Wymagana subskrypcja\"],\"WYwN1G\":[\"Nowy import\"],\"WbTDwg\":[\"W\xA0trakcie\"],\"Weq9zb\":[\"Ogólne\"],\"WmPhYW\":[\"Wystąpił błąd podczas odłączania konta Trello.\"],\"WnEwDO\":[\"Masz już konto? <0><1>Zaloguj się\"],\"Ws+3X+\":[\"Nielimitowane miejsca i zaawansowane funkcje dla rozwijających się zespołów.\"],\"Wy6pcF\":[\"Nie można zaktualizować widoczności tablicy\"],\"X0N0PA\":[\" (edytowano)\"],\"XDRXbZ\":[\"Opis przestrzeni roboczej musi mieć co najmniej 3 znaki\"],\"XEoGkQ\":[\"Przejdź do strony głównej\"],\"XILg0L\":[\"Nieprawidłowy adres e-mail\"],\"XJOV1Y\":[\"Aktywność\"],\"XNxYxq\":[\"Szablony tablic\"],\"XTKtey\":[\"Utwórz listę\"],\"XXbgHS\":[\"Zatrudniony\"],\"XYLcNv\":[\"Wsparcie\"],\"XicmhT\":[\"Termin wykonania\"],\"Xid3K6\":[\"Adres URL tablicy może zawierać tylko litery, cyfry i myślniki\"],\"Xjj/kS\":[\"Nowe spojrzenie na Kanban\"],\"XpcjLO\":[\"Nie można zaktualizować adresu URL tablicy\"],\"Y8yzGg\":[\"Zacznij za darmo. Rozwijaj się wraz z zespołem. Bez ukrytych opłat, bez umów.\"],\"YBBifR\":[\"Odłącz Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Nie można zmienić kolejności elementu listy kontrolnej\"],\"YRk79X\":[\"Zaawansowane zabezpieczenia, zgodność i dedykowane wsparcie dla dużych organizacji.\"],\"YVT40D\":[\"usunięto etykietę <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Błąd podczas aktualizacji subskrypcji\"],\"YcyP2z\":[\"Nie można utworzyć szablonu\"],\"Yf9FAx\":[\"Nie będą mogli uzyskać dostępu do tego workspace’a.\"],\"YhvWXb\":[\"Analiza tablicy\"],\"YirHq7\":[\"Opinia\"],\"YkfDoz\":[\"Rocznie\"],\"YoyKbT\":[\"Ten klucz API zostanie wyświetlony tylko raz. Zapisz go w bezpiecznym miejscu.\"],\"Ypy5pZ\":[\"Czy na pewno chcesz usunąć webhook \\\"\",[\"webhookName\"],\"\\\"? Tej operacji nie można cofnąć.\"],\"YtUfwW\":[\"Nie udało się zalogować przez \",[\"0\"],\". Spróbuj ponownie.\"],\"Yx0Ud8\":[\"Zażądano\"],\"Z3FXyt\":[\"Ładowanie...\"],\"Z3krJD\":[\"Pozwól członkom workspace widzieć adresy e-mail innych osób\"],\"Z6r9z1\":[\"Nie można usunąć karty\"],\"ZAs2NN\":[\"Wszystkie funkcje wersji Pro +\"],\"ZDGm40\":[\"Usuń konto\"],\"ZDIydz\":[\"Rozpocznij\"],\"ZDPJBc\":[\"Niestandardowe nazwy użytkownika wymagają uaktualnienia do planu Pro\"],\"ZDo4HN\":[\"Burza mózgów\"],\"ZH7TVS\":[\"Tytuł karty\"],\"ZL1A+p\":[\"Nie udało się przesłać załącznika. Spróbuj ponownie.\"],\"ZT4Khw\":[\"Czy na pewno chcesz usunąć tę kartę?\"],\"ZU5IYI\":[\"Nielimitowane tablice, nielimitowane listy, nielimitowane karty. Nie wymaga karty kredytowej.\"],\"ZXSPJt\":[\"Wystąpił nieoczekiwany błąd. Spróbuj ponownie później.\"],\"ZqDqbi\":[\"Organizuj i wyszukuj karty szybko dzięki zaawansowanym narzędziom filtrowania.\"],\"Zz1qkk\":[\"Nielimitowane karty\"],\"a3LDKx\":[\"Bezpieczeństwo\"],\"aHCEmh\":[\"Cennik\"],\"aHRWVI\":[\"usunięto termin\"],\"aJ4pMe\":[\"FAQ\"],\"aKJHG+\":[\"Zarchiwizuj tablicę\"],\"aW3TOw\":[\"Powiadomienia e-mail\"],\"aWDhU5\":[\"Kanban jest lepszy w zespole. Idealny dla małych i rozwijających się zespołów, które chcą współpracować.\"],\"aWlSc/\":[\"Utwórz nową listę\"],\"abUZlY\":[\"Dodaj szczegóły...\"],\"aelko+\":[\"Możesz uzyskać własny URL przestrzeni roboczej, np. <0>kan.bn/kan, przechodząc do <1>ustawień przestrzeni roboczej i wykupując subskrypcję pro. Wszystkie subskrypcje wspierają rozwój projektu!\"],\"agPptk\":[\"Średni\"],\"aiHZVP\":[\"Zobacz dokumentację\"],\"b/LfJo\":[\"email\"],\"b3Thhd\":[\"Przesyłanie nie powiodło się\"],\"b5FKyH\":[\"dodano etykietę <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Utwórz \",[\"0\"]],\"bD8I7O\":[\"Ukończ\"],\"bDI6VI\":[[\"0\"],\" został usunięty z ulubionych.\"],\"bFREhu\":[\"Koniec listy\"],\"bJZm1W\":[\"Kandydaci\"],\"bJtM0P\":[\"Ten adres URL workspace jest zarezerwowany\"],\"bKzM8L\":[\"Dedykowany opiekun konta\"],\"bZSICm\":[\"Nie można dodać elementu listy kontrolnej\"],\"bcIybO\":[\"Nazwa przestrzeni roboczej jest wymagana\"],\"bdztP2\":[\"Badania\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"Rola członka została zaktualizowana.\"],\"bff61F\":[\"Plan zespołowy\"],\"bfgr/e\":[\"Pytanie\"],\"bmXKoX\":[\"dodano \",[\"0\"],\" etykiety: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Błąd podczas usuwania konta\"],\"c/IAuR\":[\"Ważne\"],\"c3b0B0\":[\"Rozpocznij\"],\"c4nMcR\":[\"Twój awatar\"],\"c9AJhn\":[\"Dołącz do workspace\"],\"cAgBMh\":[\"Pełna kontrola i własność:\"],\"cFQEU/\":[\"Otwórz skróty klawiaturowe\"],\"cOh+MI\":[\"Screening\"],\"cWXW+7\":[\"Dodaj webhook\"],\"cWcxrL\":[\"Nowa lista kontrolna\"],\"cWtfn1\":[\"Ulepsz do Pro (29\xA0$/miesiąc)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Opis przestrzeni roboczej\"],\"cji2nM\":[\"Błąd podczas tworzenia linku zaproszenia\"],\"cnGeoo\":[\"Usuń\"],\"cp1rsD\":[\"Dezaktywuj link zaproszenia\"],\"csFbe+\":[\"Przejdź do szablonów\"],\"curoK5\":[\"Nowy workspace\"],\"d+F6q9\":[\"Utworzono\"],\"d33Usy\":[\"Utwórz checklistę\"],\"dEgA5A\":[\"Anuluj\"],\"dUh9QW\":[\"Planowanie\"],\"ddrz1m\":[\"Zaległe\"],\"delOXn\":[\"Nie można zaktualizować etykiet\"],\"dgr4Kq\":[\"Edytuj etykietę\"],\"dmKdk0\":[\"Po usunięciu workspace'a nie będzie można tego cofnąć. Tej operacji nie da się odwrócić.\"],\"dsLT3m\":[\"Utwórz kartę\"],\"dtQIWT\":[\"Współpraca\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Ten adres URL workspace’a jest już zajęty\"],\"e1v+J3\":[\"Sekret (opcjonalnie)\"],\"e4hPSt\":[\"Przywróć domyślne uprawnienia roli\"],\"eEQyz+\":[\"Śledź wszystkie zmiany kart z szczegółową historią aktywności.\"],\"ePK91l\":[\"Edytuj\"],\"eZCGbT\":[\"Tak, oferujemy wiecznie darmowy plan do użytku indywidualnego. Bez ograniczeń, bez paywalla, bez limitów.\"],\"edWbV6\":[\"Link skopiowany\"],\"ekCRTP\":[\"Odrzucono\"],\"en3oy5\":[\"Funkcja\"],\"euc6Ns\":[\"Duplikuj\"],\"eus61c\":[\"Wyślij test\"],\"evg7+A\":[\"Twoje tablice zostały zaimportowane.\"],\"evj0lK\":[\"Czy oferujecie darmowy plan?\"],\"f8fH8W\":[\"Design\"],\"f8lDFq\":[\"utworzył(a) kartę\"],\"fDQ7hA\":[\"Kopiuj etykiety\"],\"fEY2vP\":[\"Nie znaleziono karty\"],\"fQCrjt\":[\"Widoczność Twojej tablicy została ustawiona na \",[\"0\"],\".\"],\"fR9laE\":[\"Wprowadź swoje obecne hasło\"],\"fSf2ee\":[\"Zobacz naszą mapę drogową.\"],\"fW5sSv\":[\"Edytuj webhook\"],\"fYVH36\":[\"Nie można zaktualizować komentarza\"],\"fcWrnU\":[\"Wyloguj się\"],\"fuwKpE\":[\"Spróbuj ponownie.\"],\"fvLNDy\":[\"Nie utworzono jeszcze żadnych list\"],\"fzGyWs\":[\"Zmień rozmiar czcionki aplikacji.\"],\"fziA2d\":[\"Nielimitowane komentarze\"],\"g2xBxu\":[\"Importowanie tablic Trello do Kan jest proste. Możesz skorzystać z naszego przewodnika krok po kroku <0>tutaj.\"],\"g9NChz\":[\"Opiekun konta\"],\"gGx5tM\":[\"Edycja\"],\"gKmoow\":[\"Ten adres URL jest zarezerwowany\"],\"gL/7jw\":[\"Dodaj opis... (wpisz '/' aby otworzyć polecenia lub '@', aby wspomnieć)\"],\"gQ/02p\":[\"Błąd podczas odłączania GitHub\"],\"gUX7b+\":[\"Open source’owa <0/> alternatywa dla Trello\"],\"gZxH/p\":[\"zmienił termin na <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"Nazwa przestrzeni roboczej nie może przekraczać 64 znaków\"],\"gkxGkF\":[\"14 dni bezpłatnego okresu próbnego · Zmień plan lub anuluj w dowolnym momencie\"],\"gkzAEM\":[\"Kontynuuj przez \",[\"0\"]],\"goklcJ\":[\"Rozmowa kwalifikacyjna\"],\"gpfJ3v\":[\"Darmowe, na zawsze\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"Adres URL tablicy nie może przekraczać 60 znaków\"],\"h16FyT\":[\"Listy\"],\"h2FKMV\":[\"Nie masz uprawnień\"],\"h2ztFt\":[\"Wszystkie funkcje wersji Free +\"],\"h4VV67\":[\"dodano checklistę\"],\"h7MgpO\":[\"Skróty klawiaturowe\"],\"h8DugX\":[\"Etykiety\"],\"hAMddS\":[\"Użytkownik odpiął się od karty\"],\"hB02vO\":[\"Zarządzaj członkami\"],\"hXMFoN\":[\"Brak list\"],\"hYzsXr\":[\"Ustawienia | Integracje\"],\"hty0d5\":[\"Poniedziałek\"],\"i0ZMQl\":[\"Tablica zarchiwizowana\"],\"i30J2U\":[\"Nie znaleziono projektów\"],\"i5rE2/\":[\"URL nie może przekraczać 64 znaków\"],\"iH8pgl\":[\"Wstecz\"],\"iHcdea\":[\"Termin w przyszłym tygodniu\"],\"iLbjv+\":[\"Może edytować przestrzeń roboczą\"],\"iQmbPb\":[\"Licencja\"],\"iSLIjg\":[\"Połącz\"],\"iTylMl\":[\"Szablony\"],\"iVIGZb\":[\"Załącznik przesłany\"],\"isRobC\":[\"Nowy\"],\"itgYbC\":[\"Webhook testowy został wysłany pomyślnie!\"],\"iwr7AP\":[\"Pomysły\"],\"iy1wb+\":[\"Ustawienia | API\"],\"j0o6ml\":[\"Opis Twojej przestrzeni roboczej\"],\"j1+HPc\":[\"Wystąpił błąd podczas łączenia konta GitHub.\"],\"j2+d/o\":[\"Dokumentacja API\"],\"j9IZZ0\":[\"Niestandardowy adres URL workspace\"],\"jDRt4n\":[\"Czy chcesz zrezygnować z subskrypcji?\"],\"jEw0Mr\":[\"Wprowadź poprawny adres URL\"],\"jIuWsV\":[\"Nazwa webhooka nie może przekraczać 255 znaków\"],\"jL82rC\":[\"Wyczyść niestandardowe uprawnienia\"],\"jNuzV/\":[\"Może usuwać karty\"],\"jQ6I8X\":[\"Zaktualizowano rolę\"],\"jZBHkN\":[\"Nazwa przestrzeni roboczej musi mieć co najmniej 3 znaki\"],\"jfC/xh\":[\"Kontakt\"],\"jl3aEJ\":[\"oznaczył(a) element listy kontrolnej <0>\",[\"0\"],\" jako nieukończony\"],\"jlB2RY\":[\"Wprowadzone obecne hasło jest nieprawidłowe.\"],\"jwI32v\":[\"Nie znaleziono tablicy\"],\"k7rCa/\":[\"Duży\"],\"kECVpo\":[\"Czy na pewno chcesz usunąć tę etykietę?\"],\"kQwvU8\":[\"usunięto etykietę z karty\"],\"kSxwQL\":[\"Możesz zaprosić członków zespołu, klikając przycisk „Zaproś” w prawym górnym rogu <0>strony członków i wpisując ich adres e-mail. Otrzymają oni wiadomość e-mail z linkiem do dołączenia do przestrzeni roboczej.\"],\"kYu0eF\":[\"Usuń workspace\"],\"kfOGMr\":[\"Szybka wygrana\"],\"klpSmb\":[\"Edytuj URL przestrzeni roboczej\"],\"kp6L3T\":[\"Ta nazwa użytkownika workspace jest już zajęta\"],\"kryGs+\":[\"Karta\"],\"kuoc68\":[\"$10/miesiąc\"],\"kxEs5t\":[\"Importy z Trello\"],\"l2PIAy\":[\"Samodzielny hosting z Github\"],\"l31EoQ\":[\"Znajdź odpowiedzi na najczęstsze pytania dotyczące Kan. Nie możesz znaleźć tego, czego szukasz? Śmiało <0>skontaktuj się z nami.\"],\"l3s5ri\":[\"Importuj\"],\"l4asa1\":[\"Ta tablica jest prywatna lub nie istnieje\"],\"lGjicL\":[\", lub zobacz nasze\"],\"lKAvEd\":[\"Błąd podczas odłączania Trello\"],\"lXvXNI\":[\"Nie udało się skopiować linku do zaproszenia\"],\"lYT7pQ\":[\"Usuń listę\"],\"lkz85l\":[\"Główna różnica między Kan a Trello polega na tym, że Kan jest open source, co pozwala każdemu przeglądać, modyfikować i współtworzyć nasz kod. Nasza chmura nie nakłada żadnych ograniczeń na funkcje dla użytkowników indywidualnych, podczas gdy Trello blokuje podstawowe funkcje, takie jak liczba tablic, które możesz utworzyć, za paywallem.\"],\"lo8xBK\":[\"Czy na pewno chcesz usunąć \",[\"entityLabel\"],\"?\"],\"lpIMne\":[\"Hasła nie są zgodne\"],\"lsgnzd\":[\"Błąd podczas aktualizacji do wersji Pro\"],\"lyqwgn\":[\"Dodaj etykietę\"],\"m2nk0i\":[\"Prosty cennik\"],\"mErq7F\":[\"Zarejestruj się\"],\"mHhffx\":[\"Nie można utworzyć listy kontrolnej\"],\"mTGd3+\":[\"usunięto checklistę\"],\"mTwGOf\":[\"Ten link z zaproszeniem jest nieprawidłowy lub wygasł.\"],\"mU+M00\":[[\"0\"],\" został dodany do ulubionych.\"],\"mVZH9V\":[\"Kiedy Trello pojawiło się w 2011 roku, zachwyciło wszystkich swoją przemyślaną prostotą, ale z czasem straciło swój urok i stało się czymś w rodzaju „Jira Lite”. Ten projekt to nasza próba odzyskania tej pierwotnej magii prostoty Trello, w wersji open source.\"],\"mZGPxt\":[\"Link do zaproszenia skopiowany do schowka\"],\"mchgzf\":[\"Rejestracja zakończona sukcesem.\"],\"mgXgHu\":[\"Przejdź do tablic\"],\"mrhyIB\":[\"Idealne dla małych i rozwijających się zespołów, które chcą współpracować.\"],\"mwBdZ2\":[\"Spowoduje to trwałe usunięcie wszystkich danych powiązanych z Twoim kontem.\"],\"mx8+1u\":[\"Nielimitowani członkowie\"],\"n+xLOH\":[\"Obsługa klienta\"],\"n1GRql\":[\"Nowa etykieta\"],\"n1ekoW\":[\"Zaloguj się\"],\"n6EWYz\":[\"Służy do podpisywania danych webhook w celu weryfikacji. Pozostaw puste, aby zachować istniejący sekret.\"],\"n9V+ps\":[\"Wprowadź swoje imię i nazwisko\"],\"nKBUeF\":[\"Karta została zduplikowana.\"],\"nOhz3x\":[\"Wyloguj się\"],\"nYNMZZ\":[\"Pozycja na liście (0 = pierwsza, puste pole = koniec)\"],\"nabda1\":[\"Usuń kartę\"],\"nbfdhU\":[\"Integracje\"],\"ngBZOd\":[\"Dodaj komentarz... (wpisz '/' aby otworzyć polecenia lub '@', aby wspomnieć)\"],\"nhMhRr\":[\"Dziękujemy za Twoją opinię!\"],\"njJFtc\":[\"Usuń komentarz\"],\"nk7caK\":[\"Połącz Trello\"],\"nol/Fb\":[\"Jak zaprosić członków zespołu?\"],\"notwF1\":[\"Nazwa szablonu nie może przekraczać 100 znaków\"],\"nq7q3Z\":[\"Nazwa klucza API nie może przekraczać 30 znaków\"],\"nqdIhs\":[\"Niestandardowe szablony tablic\"],\"nryrgW\":[\"Wszystkie nadpisania uprawnień członków zostały zresetowane do domyślnych ustawień ról.\"],\"o+JCfN\":[\"Zaufany przez dynamiczne zespoły<0/>na całym świecie\"],\"o4e/70\":[\"Wybierz co najmniej jedno zdarzenie\"],\"o4sQAg\":[\"Nie udało się utworzyć webhooka\"],\"o7J4JM\":[\"Filtruj\"],\"o8adVG\":[\"10mb przesyłania plików\"],\"o9WLwO\":[\"Nie można zaktualizować karty\"],\"oVBq1w\":[\"za użytkownika/miesiąc\"],\"oW13KZ\":[\"Rozpocznij za darmo już dziś\"],\"odFCYX\":[\"Nieprawidłowe zaproszenie\"],\"okpxfB\":[\"Utwórz nowy klucz\"],\"oyRjD/\":[\"Plan Pro\"],\"p/hk9N\":[\"Zalogowano pomyślnie.\"],\"pBsoKL\":[\"Dodaj do ulubionych\"],\"pFGfsR\":[\"Sprawdź niektóre z naszych ulubionych projektów open source.\"],\"pFKC6A\":[\"Nazwa klucza API\"],\"pL78ec\":[\"Dodano do ulubionych\"],\"pVctI7\":[\"Opcja wdrożenia on-premise\"],\"pXVFJy\":[\"Może usuwać tablice\"],\"pa9o5D\":[\"Przytnij swój avatar\"],\"pfa8F0\":[\"Nazwa wyświetlana\"],\"pmUArF\":[\"Przestrzeń robocza\"],\"pnrmSP\":[\"Nowa karta\"],\"ppaRWv\":[\"Samodzielny hosting\"],\"pvnfJD\":[\"Ciemny\"],\"q+lt9D\":[\"Błąd podczas usuwania etykiety\"],\"q3il6U\":[\"Rozmiar czcionki\"],\"qPP4lD\":[\"Zapraszanie członków wymaga planu Team. Zostaniesz przekierowany(-a) do aktualizacji workspace.\"],\"qQXocp\":[\"Może zarządzać ustawieniami przestrzeni roboczej\"],\"qaS+1/\":[\"Najlepsze dla zespołów, które chcą się rozwijać bez ograniczeń\"],\"qfUS/w\":[\"Przyjaciele Open Source\"],\"qkjvgj\":[\"Twój workspace został usunięty.\"],\"qlAIQ1\":[\"Zdalnie\"],\"qtE5nt\":[\"Dodaj element...\"],\"qzdST2\":[\"Widoczność tablicy\"],\"r6BgwX\":[\"Do zalogowania wymagane jest hasło.\"],\"rD6UIt\":[\"Rozpocznij w chmurze\"],\"rF8SEQ\":[\"Edytuj komentarz\"],\"rQRXo8\":[\"Wprowadź nowy sekret, aby zaktualizować\"],\"rQXTmd\":[\"Adres URL karty skopiowany do schowka\"],\"rRM7r0\":[\"Zaimportuj swoje tablice Trello i zacznij działać od razu.\"],\"rYUZIe\":[\"Wybierz źródło\"],\"raHesj\":[\"Zostałeś wypisany z subskrypcji!\"],\"rarRW/\":[\"Błąd podczas zapraszania członka\"],\"ri1hHe\":[\"Termin w przyszłym miesiącu\"],\"rmN315\":[\"Zabawa\"],\"rs7L54\":[\"dodano członka do karty\"],\"rtbVvN\":[\"Może edytować listy\"],\"s+MGs7\":[\"Zasoby\"],\"s6iE/c\":[\"Rejestracja jest obecnie wyłączona. Spróbuj ponownie później.\"],\"sBhOFG\":[\"Proste, wizualne zarządzanie zadaniami, które po prostu działa. Przeciągaj i upuszczaj karty, współpracuj z zespołem i osiągaj więcej.\"],\"sDLCvT\":[\"Połącz swoje ulubione narzędzia, aby usprawnić pracę.\"],\"sDuhfK\":[\"Oferta na start: nielimitowane miejsca za jedyne 29\xA0$/mies. z Pro\"],\"sU2uWc\":[\"Karta zduplikowana\"],\"sUZo7y\":[\"Rejestracja | kan.bn\"],\"sVBn4K\":[\"Błąd podczas aktualizacji wyświetlanej nazwy\"],\"sY2lzr\":[\"Brak dostępnego adresu URL do pobrania tego załącznika.\"],\"sbNNyi\":[\"Nowy webhook\"],\"snMaH4\":[\"Usuń webhook\"],\"t+R8+P\":[\"Wykonanie\"],\"t/YqKh\":[\"Usuń\"],\"t0dTPm\":[\"Skonfiguruj webhooki, aby otrzymywać powiadomienia o tworzeniu, aktualizacji, przenoszeniu lub usuwaniu kart.\"],\"t2nDzl\":[\"Zobacz i zarządzaj swoim rozliczeniem oraz subskrypcją.\"],\"t6FvJH\":[\"Może dodawać komentarze\"],\"tGwwnq\":[\"zaktualizowano opis\"],\"tHcbLF\":[\"Może edytować tablice\"],\"tIdipJ\":[\"Edytuj URL tablicy\"],\"tMYIu7\":[\"Dzienniki aktywności\"],\"tOZp9v\":[\"Konfigurowalne role i uprawnienia użytkowników\"],\"tTbref\":[\"Do rejestracji wymagane jest hasło.\"],\"tYN21H\":[\"Użytkownik jest już członkiem tego workspace\"],\"tbNcu4\":[\"Tablica przywrócona z archiwum\"],\"tca56/\":[\"Twój plik został pomyślnie przesłany.\"],\"tfDRzk\":[\"Zapisz\"],\"tlhgDC\":[\"Brak zarchiwizowanych tablic\"],\"tmlJN1\":[\"Wprowadź poprawny adres URL YouTube\"],\"tmpW+w\":[\"Usuń tablicę\"],\"tst44n\":[\"Zdarzenia\"],\"tyHiOa\":[\"Spróbuj ponownie później lub skontaktuj się z obsługą klienta.\"],\"u2+JIh\":[\"Własne adresy URL wymagają przejścia na plan Pro\"],\"u8JHrO\":[\"Wyczyść filtry\"],\"uAQUqI\":[\"Status\"],\"uEGGDs\":[\"Mój webhook\"],\"uOqaMC\":[\"Otrzymałeś zaproszenie do przestrzeni roboczej.\"],\"uP4V6I\":[\"Darmowe dla wszystkich\"],\"uXGLuq\":[\"Utwórz klucz API\"],\"uZg2+w\":[\"Ulepsz swoje środowisko pracy za jedyne 29$/miesiąc. Oto co otrzymasz:\"],\"uck1tz\":[\"usunięto członka z karty\"],\"usVytm\":[\"Po usunięciu konta nie będzie można tego cofnąć. Tej operacji nie da się odwrócić.\"],\"uvH2xS\":[\"Kopiuj członków\"],\"v+Wp++\":[\"Open source\"],\"v1kQyJ\":[\"Webhooki\"],\"v3YoMA\":[\"Starszy\"],\"vAR/I8\":[\"Uruchom na własnej infrastrukturze\"],\"vAj6xG\":[\"Możesz samodzielnie hostować, postępując zgodnie z instrukcjami w naszym <0>repozytorium.\"],\"vSJd18\":[\"Wideo\"],\"vUr5JT\":[\"Nie masz konta? <0><1>Zarejestruj się\"],\"vXIe7J\":[\"Język\"],\"vXemf6\":[\"Błąd\"],\"va/3u1\":[\"Kontroluj, kto może wyświetlać i edytować twoje tablice.\"],\"vbskQn\":[\"Nazwa klucza API jest wymagana\"],\"veIDCY\":[\"Rozpocznij 14-dniowy bezpłatny okres próbny\"],\"vfRdCZ\":[\"Nie można zresetować uprawnień\"],\"vgdzLf\":[\"Utwórz kolejną\"],\"vifyyw\":[\"Prawne\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"Uprawnienia tego członka zostały zresetowane do domyślnych dla jego roli.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"rozliczenie miesięczne\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Długoterminowy\"],\"vwGkYB\":[\"Hasło musi mieć co najmniej 8 znaków\"],\"wIb7Ng\":[\"Software Development\"],\"wK4OTM\":[\"Tytuł (opcjonalnie)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Wybierz plik do przesłania.\"],\"wY+6Ye\":[\"Ten adres URL tablicy jest już zajęty\"],\"wakO3W\":[\"dodano checklistę <0>\",[\"0\"],\"\"],\"wewm3j\":[\"Nazwa tablicy nie może przekraczać 100 znaków\"],\"wgNoIs\":[\"Zaznacz wszystko\"],\"wlQNTg\":[\"Członkowie\"],\"wqkcin\":[\"Może wyświetlać komentarze\"],\"wqxglO\":[\"Nauka\"],\"wruKPE\":[\"Wesprzyj rozwój projektu\"],\"wsy94z\":[\"Najlepsze dla dużych organizacji z zaawansowanymi potrzebami\"],\"wtxjAY\":[\"Członkowie przestrzeni roboczej\"],\"x0kMO/\":[\"Błąd podczas aktualizacji adresu URL przestrzeni roboczej\"],\"x8GeCD\":[\"Nazwa wyświetlana została zaktualizowana\"],\"xEbBrW\":[\"Jakiej licencji używasz?\"],\"xGVfLh\":[\"Kontynuuj\"],\"xLTZVf\":[\"Pierwszy dzień tygodnia\"],\"xMn+V9\":[\"Importowanie z Trello\"],\"xRPn3U\":[\"Wprowadź swój adres e-mail\"],\"xvcYhz\":[\"Wyczyść wszelkie niestandardowe uprawnienia członka, aby wszyscy członkowie dziedziczyli uprawnienia tylko z domyślnych ról.\"],\"y3aU20\":[\"Zapisz zmiany\"],\"yD3ZSw\":[\"Zmień preferencje językowe.\"],\"yV7o5I\":[\"Jak zaimportować moje tablice Trello?\"],\"yb/fjw\":[\"Zatwierdzenie\"],\"yhLUU8\":[\"Błąd podczas łączenia z GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Importuj projekt (1)\"],\"few\":[\"Importuj projekty (\",[\"projectCount\"],\")\"],\"many\":[\"Importuj projektów (\",[\"projectCount\"],\")\"],\"other\":[\"Importuj projekty (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Zamknij\"],\"zC8Whw\":[\"Rozpocznij, tworząc nową listę\"],\"zERArS\":[\"zaktualizowano tytuł na <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Utwórz link zaproszenia\"],\"zMlxCA\":[\"1 użytkownik\"],\"zMquA7\":[\"Wybierz plan\"],\"zQPhSa\":[\"Konwertuj na link\"],\"zQX5Dj\":[\"Nazwa listy\"],\"zYRVNp\":[\"Wybierz listę\"],\"zkWmBh\":[\"Rocznie\"],\"zl1b97\":[\"Nie można utworzyć karty\"],\"zoEbXq\":[\"Może wyświetlać karty\"],\"zt/6cS\":[\"Najlepszy dla małych zespołów, które chcą współpracować i działać szybciej razem.\"],\"zto8aj\":[\"Trello zostało odłączone\"],\"zwBp5t\":[\"Prywatne\"],\"zwTiVn\":[\"usunięto załącznik <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Dowiedz się więcej\"],\"zxKs+y\":[\"Termin jutro\"],\"zzDlyQ\":[\"Sukces\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Social Media\"],\"+3TYXa\":[\"Aby zapewnić długoterminową stabilność, wiemy, że wszystkie dobre projekty open source potrzebują źródła finansowania. Naszym jest płatna chmura dla przestrzeni roboczych z wieloma użytkownikami oraz dla niestandardowych slugów przestrzeni roboczych. Nie ma obowiązku korzystania z tej opcji – możesz samodzielnie hostować oprogramowanie na własnej infrastrukturze bez żadnych opłat.\"],\"+5kO8P\":[\"Sobota\"],\"+8Nek/\":[\"Miesięcznie\"],\"+EkBs0\":[\"Nie udało się zaktualizować Twoich preferencji. Spróbuj ponownie.\"],\"+MdEsf\":[\"Wymagane jest nowe hasło\"],\"+OhFss\":[\"Rozpocznij za darmo, bez limitów użytkowania. Aby współpracować, przejdź na plan dopasowany do wielkości Twojego zespołu.\"],\"+VoTOr\":[\"rozliczane miesięcznie\"],\"+djOzj\":[\"Zaproś członka\"],\"+h2faV\":[\"Ustawienia | Webhooki\"],\"+jbXzb\":[\"Twoje projekty zostały zaimportowane.\"],\"+nvZ6j\":[\"Etykiety i filtry\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Szablon\"],\"/asTmx\":[\"Zgłoszenie błędu\"],\"/bBVaD\":[\"GitHub odłączony\"],\"/bZzdR\":[\"Wzmianki\"],\"/f3t6v\":[\"Skonfiguruj, które działania są dozwolone dla każdej roli w przestrzeni roboczej. Te uprawnienia dotyczą wszystkich członków z tą rolą.\"],\"/gaSVU\":[\"Mapa drogowa\"],\"/glL9Q\":[\"Brak \",[\"0\"]],\"/jd3aj\":[\"Zaawansowane role administratora\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"Potężna, elastyczna aplikacja kanban, która pomaga organizować pracę, śledzić postępy i osiągać rezultaty — wszystko w jednym miejscu.\"],\"/tOdd2\":[\"Twoje zdjęcie profilowe zostało zaktualizowane.\"],\"0+0/3e\":[\"Utwórz nową etykietę\"],\"0+ewPp\":[\"Ulepszenie\"],\"02i3WU\":[\"Importy\"],\"06EQqT\":[\"Duplikowanie…\"],\"09Tv5j\":[\"Reconnecting…\"],\"0AfkMq\":[\"Your role changed in\"],\"0KjpAr\":[\"Może wyświetlać członków\"],\"0RE1AJ\":[\"Zarchiwizowane tablice pojawią się tutaj.\"],\"0StR7t\":[\"Wprowadź nowe hasło\"],\"0jV46i\":[\"Nie można usunąć elementu listy kontrolnej\"],\"0qyZ4b\":[\"Ładowanie uprawnień...\"],\"0rPv1T\":[\"Zaktualizowano zdjęcie profilowe\"],\"0utuU6\":[\"Kopiuj listy kontrolne\"],\"0xD8Of\":[\"Strona, której szukasz, nie istnieje lub została przeniesiona.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Importuj tablicę (1)\"],\"few\":[\"Importuj tablice (\",[\"boardCount\"],\")\"],\"many\":[\"Importuj tablic (\",[\"boardCount\"],\")\"],\"other\":[\"Importuj tablice (\",[\"boardCount\"],\")\"]}]],\"11dHnN\":[\"You were removed from\"],\"14Xi3Z\":[\"Dodanie nowego członka będzie kosztować dodatkowo \",[\"price\"],\" (\",[\"billingType\"],\") za miejsce.\"],\"1H5u1m\":[\"Pytania?\"],\"1WuwiM\":[\"Przejdź do ustawień\"],\"1bJKhj\":[\"Kopiuj link do karty\"],\"1hzdxO\":[\"Uprawnienia przestrzeni roboczej\"],\"1iShX0\":[\"Termin dzisiaj\"],\"1njn7W\":[\"Jasny\"],\"1rVAfU\":[\"Załaduj więcej aktywności\"],\"1rWxEw\":[\"Oczekiwanie na klienta\"],\"1sRmLC\":[\"Dyskutuj i współpracuj nad kartami.\"],\"1wCGT0\":[\"Nielimitowane tablice\"],\"25fAUC\":[\"Twój link do wypisania się nie zawiera tokena. Otwórz najnowszy e-mail i spróbuj ponownie.\"],\"25mvI+\":[\"Linki do zaproszeń wymagają subskrypcji Team lub Pro. Zaktualizuj swój workspace.\"],\"29sSki\":[\"ukończono element listy kontrolnej <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"Lista\"],\"2Bu8xj\":[\"Nie znaleziono żadnych tablic\"],\"2M84k3\":[\"Niestandardowe uprawnienia\"],\"2MPcep\":[\"Import zakończony\"],\"2POOFK\":[\"Darmowe\"],\"2Py5S/\":[\"Potwierdzam, że wszystkie dane przestrzeni roboczej zostaną trwale usunięte i chcę kontynuować.\"],\"2Q871c\":[\"Nie można dodać etykiety\"],\"2QGEbi\":[\"Nie można usunąć komentarza\"],\"2SePRT\":[\"Otrzymałeś zaproszenie do przestrzeni roboczej na kan.bn.\"],\"2X4ecw\":[\"Webhook został usunięty pomyślnie\"],\"2h4PVB\":[\"Nazwa Twojego workspace została zaktualizowana.\"],\"2liqDZ\":[\"Potwierdzam, że wszystkie dane mojego konta zostaną trwale usunięte i chcę kontynuować.\"],\"2q/Q7x\":[\"Widoczność\"],\"2roTVj\":[\"Opinia została wysłana\"],\"3LDCpD\":[\"Tej operacji nie można cofnąć.\"],\"3WXdoZ\":[\"Zawsze możesz to później zmienić w ustawieniach.\"],\"3ZjRJY\":[\"zmieniono nazwę checklisty <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Każdy, kto ma ten link, może dołączyć do twojego workspace\"],\"3d54Wj\":[\"Webhook został zaktualizowany pomyślnie\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Połącz z GitHub\"],\"3pIq39\":[\"Role administratora\"],\"4630Pc\":[\"Card updated\"],\"479pdJ\":[\"Potwierdź nowe hasło\"],\"4DOCMI\":[\"Adres URL YouTube\"],\"4Revpc\":[\"Mały\"],\"4RoY9J\":[\"Post na blogu\"],\"4XF0BB\":[\"Zdjęcie profilowe\"],\"4gAX8s\":[\"Przełącz menu\"],\"4kJRen\":[\"Pisanie\"],\"4obmDr\":[\"404 - Strona nie znaleziona | kan.bn\"],\"4sxGcV\":[\"You were assigned to a card\"],\"51UCsN\":[\"Przenieś do innej listy\"],\"53QYh8\":[\"Nie udało się utworzyć tablicy\"],\"55xJ/O\":[\"Błąd podczas zmiany hasła\"],\"58AiWX\":[\"Potwierdź nowe hasło\"],\"5ACX4z\":[\"Newsletter\"],\"5IXWmO\":[\"Sprawdź swoją skrzynkę odbiorczą\"],\"5P4rhH\":[\"Nie można zaktualizować członków\"],\"5RkSzq\":[\"Kopiuj link do tablicy\"],\"5eZwRW\":[\"Połącz swoje konto Trello, aby zaimportować tablice.\"],\"5h8ooz\":[\"Klucze API\"],\"5iplxh\":[\"Nowe hasło musi się różnić od obecnego\"],\"5k0NLb\":[\"Recenzja\"],\"5lWFkC\":[\"Zaloguj się\"],\"5ntVtp\":[\"Nie udało się przetestować webhooka\"],\"5y6qY8\":[\"dodano załącznik\"],\"69b7aE\":[\"Otwórz menu poleceń\"],\"6EWT6T\":[\"Rekrutacja\"],\"6FDocz\":[\"Zarejestruj się przez \"],\"6FsGbN\":[\"Rozpocznij, tworząc nowy \",[\"0\"]],\"6OTo9n\":[\"Nazwa szablonu jest wymagana\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Nowy \",[\"0\"]],\"6YtxFj\":[\"Nazwa\"],\"6mbe4b\":[\"Osoby\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"Uprawnienia członka zostały zaktualizowane.\"],\"6uBU1F\":[\"Pełny dostęp do API\"],\"6zeSBB\":[\"Może tworzyć karty\"],\"74F7N/\":[\"Czy na pewno chcesz usunąć swoje konto?\"],\"7EhE4k\":[\"Aktualizuj etykietę\"],\"7L01XJ\":[\"Akcje\"],\"7PzzBU\":[\"Użytkownik\"],\"7Qqqyu\":[\"New comment on\"],\"7RpHg/\":[\"Niestandardowa nazwa użytkownika\"],\"7Ufoyg\":[\"Nielimitowane listy\"],\"7aONWr\":[\"URL nie może przekraczać 2048 znaków\"],\"7b2yuC\":[\"Wprowadź poprawne hasło\"],\"7d1a0d\":[\"Publiczne\"],\"7eMo+U\":[\"Przejdź do strony głównej\"],\"7hktsm\":[\"Pierwsze kroki\"],\"7i8j3G\":[\"Firma\"],\"8+BY11\":[\"Adres URL tablicy skopiowany do schowka\"],\"86FLn5\":[\"Nielimitowane przesyłanie plików\"],\"86XI28\":[\"Potwierdź swoje preferencje dotyczące e-maili:\"],\"8AbRER\":[\"Ustaw termin\"],\"8AwlaR\":[\"Nieograniczona liczba członków i niestandardowa nazwa użytkownika przestrzeni roboczej dla zespołów gotowych do rozwoju.\"],\"8F1i42\":[\"Strona nie znaleziona\"],\"8Is1ih\":[\"Oferta na start\"],\"8RdLDU\":[\"Projekt osobisty\"],\"8TveY+\":[\"Tablice\"],\"8Z4pNX\":[\"Może tworzyć listy\"],\"8iP0S8\":[\"Wszystko z darmowego planu oraz:\"],\"8iP9oQ\":[\"Test webhooka nie powiódł się\"],\"8yFGGF\":[\"Nie można usunąć członka\"],\"99VIgC\":[\"Usuń członka\"],\"9HDx2Z\":[\"You were mentioned in\"],\"9PaIxv\":[\"Funkcje podstawowe\"],\"9Xigls\":[\"W trakcie przeglądu\"],\"9YPBHv\":[\"Nie udało się usunąć webhooka\"],\"9cDpsw\":[\"Uprawnienia\"],\"9eF5oV\":[\"Witaj ponownie\"],\"9h7RDh\":[\"Oferta\"],\"9lFfqv\":[\"/miesiąc\"],\"9s9O5h\":[\"Błąd podczas usuwania przestrzeni roboczej\"],\"9u5BOr\":[\"Członkowie | \",[\"0\"]],\"9wdpwp\":[\"Portal rozliczeniowy\"],\"9x4DAL\":[[\"0\"],\" nie znaleziono\"],\"9y1RcT\":[\"Dopiero zaczynamy.\"],\"A23Y7X\":[\"Dołącz do workspace | kan.bn\"],\"A42Dqn\":[\"Niestandardowy branding\"],\"A5hiCy\":[\"Utwórz szablon\"],\"A8jqN7\":[\"Nie można wysłać opinii\"],\"ABCjd9\":[\"Publikowanie\"],\"ADEin1\":[\"Ustawienia | Rozliczenia\"],\"ALhEZV\":[\"Może zapraszać członków\"],\"ANyn0x\":[\"Wszystko, czego potrzebujesz, za darmo na zawsze. Nielimitowane tablice, nielimitowane listy, nielimitowane karty. Możesz uaktualnić w dowolnym momencie.\"],\"ARvBT/\":[\"rozliczane rocznie\"],\"ASjvm9\":[\"URL przestrzeni roboczej\"],\"AUYALh\":[\"Wkrótce dostępne\"],\"AX4ktp\":[\"Tworzenie treści\"],\"AZI/wb\":[\"Etykiety i filtry\"],\"AdxYds\":[\"Twoje konto GitHub zostało odłączone.\"],\"AeXO77\":[\"Konto\"],\"Alp2ti\":[\"Kontakt z działem sprzedaży\"],\"Ax/hYa\":[\"Opis przestrzeni roboczej nie może przekraczać 280 znaków\"],\"B3xxao\":[\"Dodaj kartę\"],\"BBUDfW\":[\"Pilne\"],\"BEVzjL\":[\"Import nie powiódł się\"],\"BJbLe4\":[\"Korzystamy z <0>licencji AGPL-3.0.\"],\"BMkVQ3\":[\"usunięto checklistę <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"przeniósł(-ęła) kartę z <0>\",[\"0\"],\" do<1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Duplikuj kartę\"],\"BZkYSt\":[\"usunięto \",[\"0\"],\" etykiety: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Czy na pewno chcesz usunąć workspace \",[\"0\"],\"?\"],\"Bhgd0l\":[\"Skontaktuj się z nami\"],\"BzEFor\":[\"lub\"],\"C56tim\":[\"Nie można zaktualizować terminu\"],\"C6gv54\":[\"Tablica została przywrócona z archiwum.\"],\"CAL6E9\":[\"Zespoły\"],\"CB/NpV\":[\"Wysoki priorytet\"],\"CHZ1jC\":[\"usunięto element checklisty <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Wprowadź poprawne imię\"],\"CJWDTP\":[\"Twoje konto Trello zostało odłączone.\"],\"CJukzS\":[[\"0\"],\" etykiety\"],\"CTqTgr\":[\"Skróty klawiaturowe\"],\"CYWHT+\":[\"Błąd podczas przesyłania zdjęcia profilowego\"],\"Cb5YSG\":[\"You were added to\"],\"Cd4sTD\":[\"Najlepsze dla osób indywidualnych i twórców rozpoczynających pracę\"],\"Ci/KUX\":[\"Ustawienia | Workspace\"],\"CkVV1t\":[\"Błąd podczas aktualizacji opisu przestrzeni roboczej\"],\"Cmudpi\":[\"Może usuwać przestrzeń roboczą\"],\"CozWO1\":[\"Nazwa przestrzeni roboczej\"],\"CujNX4\":[\"dodano załącznik <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"System\"],\"D0esZz\":[\"Dziennik aktywności\"],\"D3C4Yx\":[\"Wymagane jest obecne hasło\"],\"D7/JvJ\":[\"Dopasuj kwadratowy kadr do swojego awatara.\"],\"D9ROdV\":[\"Linki do zaproszeń\"],\"DAV3uK\":[\"Uprawnienia zaktualizowane\"],\"DBC3t5\":[\"Niedziela\"],\"DFjdv0\":[\"Usuń szablon\"],\"DMeWZD\":[\"Czy na pewno chcesz usunąć ten/ta \",[\"0\"],\"?\"],\"DPfwMq\":[\"Gotowe\"],\"DSGzV+\":[\"Nazwa użytkownika przestrzeni roboczej\"],\"DahTzR\":[\"Nie można usunąć listy kontrolnej\"],\"DbZgsJ\":[\"Utwórz szablon\"],\"DtXlZq\":[\"Nie można zaktualizować listy kontrolnej\"],\"Dz63YI\":[\"Wystąpił błąd podczas odłączania konta GitHub.\"],\"E0t3jO\":[\"dodano element checklisty <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Cennik per stanowisko\"],\"E8zYtd\":[\"<0>\",[\"0\"],\" został(a) odpięty(a) od karty\"],\"ECJKc4\":[\"Utworzono klucz API\"],\"EEHmPC\":[\"Oferta na start: nielimitowana liczba członków z Pro\"],\"EH8IL3\":[\"Checklisty\"],\"EII/X8\":[\"Wszystkie funkcje wersji Teams +\"],\"ERpq2P\":[\"Nie znaleziono wyników dla „\",[\"debouncedQuery\"],\"”.\"],\"ESClHO\":[\"Priorytetowe wsparcie e-mailowe\"],\"EYpSRU\":[\"You were added to a workspace\"],\"Eg99Sc\":[\"Obecnie nie są dostępne żadne metody uwierzytelniania\"],\"Eit43O\":[\"ustaw termin\"],\"EkH9pt\":[\"Aktualizuj\"],\"EvArWh\":[\"Współpracuj płynnie ze swoim zespołem.\"],\"F/FPk/\":[\"Ustawienia | Uprawnienia\"],\"F/vB2g\":[\"Pomysły na ulepszenie tej strony...\"],\"F0YmUY\":[\"Kopiuj link do karty\"],\"F3bW6y\":[\"Platforma\"],\"F4KRmY\":[\"$8/miesiąc\"],\"F4PLG4\":[\"Opis przestrzeni roboczej zaktualizowany\"],\"F6m23G\":[\"Przesyłanie plików\"],\"F6pfE9\":[\"Aktywna\"],\"F8DaWi\":[\"Tylko podgląd\"],\"FEr96N\":[\"Motyw\"],\"FdtSNC\":[\"Utwórz workspace\"],\"FmN5me\":[\"Rozwiązanie\"],\"FmfJjN\":[\"Wyświetlaj i zarządzaj swoimi kluczami API.\"],\"Fpci8b\":[\"Czy na pewno chcesz usunąć tę checklistę?\"],\"G1Gw0v\":[\"Nowy szablon\"],\"GAD3Dx\":[\"Własna domena\"],\"GDvlUT\":[\"Rola\"],\"GKeVeM\":[\"Your role was changed\"],\"GRAGsB\":[\"Twoja przestrzeń robocza\"],\"GYv20o\":[\"Nie można zaktualizować uprawnień\"],\"GdWB+V\":[\"Webhook został utworzony pomyślnie\"],\"GnRmu4\":[\"Nazwa checklisty\"],\"GnSSGm\":[\"Opis Twojego workspace został zaktualizowany.\"],\"GoDLB9\":[\"Twoje konto zostało usunięte.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Rozszerzona mapa drogowa\"],\"Gxxi5J\":[\"Dodaj checklistę\"],\"H5G+qG\":[\"Jaka jest różnica między Kan a Trello?\"],\"HBI6nY\":[\"Potrzebujesz pomocy?\"],\"HO+uOC\":[\"Sortowanie zgłoszeń\"],\"HQVm6e\":[\"Ten adres URL jest już zajęty\"],\"HVIzNO\":[\"Może wyświetlać listy\"],\"HYV6Lq\":[\"Nie udało się zaakceptować zaproszenia. Spróbuj ponownie później lub skontaktuj się z obsługą klienta.\"],\"HbXReU\":[\"No notifications yet\"],\"HcT8J4\":[\"Twoje konto GitHub zostało połączone.\"],\"HeFWjW\":[\"Następne kroki\"],\"Hf1cEZ\":[\"URL webhooka jest wymagany\"],\"Hg1qE9\":[\"Slug Twojego workspace został zaktualizowany.\"],\"I+AROe\":[\"Może edytować karty\"],\"I0gAKM\":[\"Nie można zaktualizować listy\"],\"IDvohQ\":[\"oznaczył(a) element listy kontrolnej jako nieukończony\"],\"IFgUX6\":[\"Może usuwać członków\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Ulepsz do Pro\"],\"Iqh0Uv\":[\"Zaplanowane\"],\"IqjpYe\":[\"Widoczność e-maila\"],\"IrZaAn\":[\"Hasło zostało zmienione\"],\"It4/FS\":[\"Przywróć tablicę z archiwum\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Kontynuuj przez \"],\"J4+OTA\":[\"Przenieś do listy\"],\"J5nbej\":[\"Krytyczne\"],\"J5pbP6\":[\"Może edytować role i uprawnienia członków\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JBaoDB\":[[\"overflow\"],\" more viewers\"],\"JCdzgZ\":[\"Prośba o funkcję\"],\"JUce1S\":[\"Przypisane osoby\"],\"JbXXUW\":[\"Pamiętaj, że tej akcji nie można cofnąć.\"],\"JcCDm9\":[\"Szablon utworzony\"],\"Jgaz7E\":[\"Uprawnienia zresetowane\"],\"JjEJSy\":[\"Skonfiguruj swoją przestrzeń roboczą\"],\"JnWJXY\":[\"magic link\"],\"JxhWxU\":[\"w\"],\"JyXBgS\":[\"dokumentacja\"],\"K3iLeO\":[\"Zobacz, co nasi użytkownicy mówią o Kan\"],\"K4xHKu\":[\"New comment on a card\"],\"K7k9u3\":[\"Nie można przenieść karty\"],\"KAsRdK\":[\"Przejdź do członków\"],\"KEim/+\":[\"usunięto załącznik\"],\"KFJgmZ\":[\"Nazwa wyświetlana musi mieć co najmniej 3 znaki\"],\"KLJ4eD\":[\"Link do zaproszenia skopiowany\"],\"KM6m8p\":[\"Zespół\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Zaawansowane opcje administratora\"],\"KiVc+q\":[\"Pełny etat\"],\"KuSt9W\":[\"Jak samodzielnie hostować?\"],\"L5WQLg\":[\"Wymagany jest token\"],\"L5ZPjz\":[\"zaktualizowano element listy kontrolnej\"],\"LTGE7Y\":[\"Przestrzeń robocza została pomyślnie utworzona. Możesz później przejść na wyższy plan w ustawieniach.\"],\"LeM5RY\":[\"Nie można wyczyścić nadpisań\"],\"LoUCpj\":[\"Błąd podczas aktualizacji nazwy przestrzeni roboczej\"],\"LqWW5F\":[\"Twoja nazwa wyświetlana została zaktualizowana.\"],\"LrcnbT\":[\"Hostuj Kan na własnej infrastrukturze. Idealne dla organizacji, które potrzebują pełnej kontroli nad swoimi danymi.\"],\"Lt+ZP3\":[\"ukończono element listy kontrolnej\"],\"M9p3Vw\":[\"Nielimitowany dziennik aktywności\"],\"MCIXdZ\":[\"Połącz swoje konto GitHub, aby zaimportować projekty.\"],\"MFKlMB\":[\"Zaproś\"],\"MHrjPM\":[\"Tytuł\"],\"MI5OBT\":[\"URL może zawierać tylko litery, cyfry i myślniki\"],\"MK16u2\":[\"Brak dat\"],\"MKAScN\":[\"Może wyświetlać tablice\"],\"MN6YzG\":[\"Slug przestrzeni roboczej został zaktualizowany\"],\"MWrbWq\":[\"Ustawienia | Konto\"],\"MdN5zD\":[\"Musisz być administratorem, aby zarządzać uprawnieniami przestrzeni roboczej.\"],\"MdwUGG\":[\"Oszczędzaj czas dzięki szablonom tablic do wielokrotnego użytku.\"],\"MeO/vH\":[\"Spowoduje to trwałe usunięcie wszystkich danych powiązanych z tym workspace’em.\"],\"MlyjJu\":[\"Nazwa wyświetlana nie może przekraczać 280 znaków\"],\"MxQXhL\":[\"Nie można utworzyć workspace\"],\"N/bcWA\":[\"Logowanie | kan.bn\"],\"N3380t\":[\"Może tworzyć tablice\"],\"N7aud6\":[\"Inteligentne wyszukiwanie\"],\"NH54UR\":[\"zmieniono nazwę elementu checklisty na <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"Tablica została zarchiwizowana.\"],\"NgaR6B\":[\"Wprowadź hasło\"],\"NnH3pK\":[\"Test\"],\"NoNwIX\":[\"Nieaktywny\"],\"NypLoL\":[\"zmieniono nazwę checklisty\"],\"O0li0W\":[\"Wprowadź swoje obecne hasło i wybierz nowe, bezpieczne hasło.\"],\"O1wAlQ\":[\"Gość\"],\"O3oNi5\":[\"E-mail\"],\"O83K21\":[\"dodano element checklisty\"],\"O9jVbx\":[\"Niski priorytet\"],\"OAYToL\":[\"To usunie wszystkie niestandardowe uprawnienia członków w tym workspace’ie. Członkowie będą dziedziczyć uprawnienia tylko ze swoich ról.\"],\"OIA0ad\":[\"Nazwa przestrzeni roboczej została zaktualizowana\"],\"OTxjpR\":[\"twoja-przestrzen\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Odłącz GitHub\"],\"Oi+J+N\":[\"Wybierz plan, aby rozpocząć. Wszystkie płatne plany zawierają 14-dniowy bezpłatny okres próbny.\"],\"OkTY4+\":[\"Sekret nie może przekraczać 512 znaków\"],\"Oo4E6p\":[\"Nie można zduplikować karty\"],\"OpNhRn\":[\"Nie wymaga karty kredytowej\"],\"OtjenF\":[\"Wprowadź poprawny adres e-mail\"],\"OvoEq7\":[\"Członek\"],\"OwneeH\":[\"Niestandardowa nazwa użytkownika workspace\"],\"Ozt2vv\":[\"Twoje hasło zostało zmienione.\"],\"P6dJdq\":[\"Nadpisania usunięte\"],\"P8Cunr\":[\"Domyślna nazwa użytkownika\"],\"PCIlOO\":[\"Dodaj członka\"],\"PELbXB\":[\"Twoje konto GitHub jest połączone.\"],\"PRjvDT\":[\"Czy na pewno chcesz usunąć ten komentarz?\"],\"PRofO0\":[\"Edytuj film na YouTube\"],\"PTzsxH\":[\"Zaktualizowano widoczność tablicy\"],\"PVT7q7\":[\"GitHub połączony\"],\"PZCqeW\":[\"Spróbuj ponownie później.\"],\"Pat4r8\":[\"Podstawowy Roadmap\"],\"PpZkda\":[\"Funkcje\"],\"PyYD/v\":[\"przypisano <0>\",[\"0\"],\" do karty\"],\"Q60WUZ\":[\"Nie można rozpocząć procesu płatności\"],\"Q9pQaX\":[\"Nie znaleziono jeszcze żadnych ról dla tego workspace'a.\"],\"QD8opX\":[\"Tablica\"],\"QHhZeE\":[\"Szablon został pomyślnie utworzony\"],\"QNtP5M\":[\"Użyj szablonu\"],\"Qh7QmR\":[\"Usunięto z ulubionych\"],\"QnzD50\":[\"On-premise\"],\"QtACvI\":[\"Utwórz etykietę\"],\"Qtzfdk\":[\"Plan Pro ∞\"],\"R+w/Va\":[\"Rozliczenia\"],\"R1c3Mq\":[\"Nazwa tablicy jest wymagana\"],\"R275Pz\":[\"W ramach planu Pro masz nielimitowaną liczbę miejsc. Nie ma dodatkowych opłat za nowych członków!\"],\"R3FsF4\":[\"Pobieranie nie powiodło się\"],\"R41XLH\":[\"Nie udało się zaktualizować webhooka\"],\"R6pB8R\":[\"Daj gwiazdkę na Githubie\"],\"RHZu7R\":[\"Doceniany przez zespoły na całym świecie\"],\"RJA+sg\":[\"Nowe zgłoszenie\"],\"RRn9jf\":[\"Kliknij w link, który wysłaliśmy do \",[\"magicLinkRecipient\"],\", aby się zalogować.\"],\"RSGOS1\":[\"Może usuwać listy\"],\"RfgJqw\":[\"zaktualizowano termin\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Prześlij opinię\"],\"RtlIYB\":[\"Zaraz zmienisz swoje hasło.\"],\"RzxgOE\":[\"Role i uprawnienia\"],\"SFnH1j\":[\"Dlaczego stworzyć open source'owe Trello?\"],\"SMaFdc\":[\"Anuluj subskrypcję\"],\"SNfg0e\":[\"Może wyświetlać przestrzeń roboczą\"],\"SPLN9O\":[\"Zarządzaj swoimi danymi\"],\"SRvxId\":[\"Sekret HMAC do weryfikacji podpisu\"],\"STSYcd\":[\"Może usuwać komentarze\"],\"SUXBxp\":[\"Inżynieria\"],\"SUvm1Y\":[\"Dobry dla osób zaczynających, które potrzebują tylko podstaw.\"],\"SWEskc\":[\"URL musi mieć co najmniej 3 znaki\"],\"Sb2gYF\":[\"Nowa lista\"],\"ScJ9fj\":[\"Polityka prywatności\"],\"Se/UIp\":[\"Do zrobienia\"],\"SiPp29\":[\"Utwórz webhook\"],\"SkCNhl\":[\"Wyszukaj tablice i karty...\"],\"SlfejT\":[\"Błąd\"],\"T/pF0Z\":[\"Usuń z ulubionych\"],\"T21jY/\":[\"dodano etykietę do karty\"],\"T7DJ2k\":[\"Nie można dodać komentarza\"],\"T7LJic\":[\"przeniósł(-ęła) kartę do innej listy\"],\"T7Mywq\":[\"Nie można zaktualizować tablicy\"],\"TCOMOO\":[\"Edytuj uprawnienia\"],\"TCt/8K\":[\"Ograniczony dostęp do API\"],\"TFv5tM\":[\"Nie można zaktualizować roli\"],\"TH3Irz\":[\"Uprawnienie\"],\"TKFUnX\":[\"Konto usunięte\"],\"TX0bT7\":[\"Brak skonfigurowanych webhooków. Dodaj webhook, aby otrzymywać powiadomienia.\"],\"TXO5TM\":[\"Nie zarejestrowano skrótów klawiaturowych.\"],\"TYli1B\":[\"Może edytować komentarze\"],\"TbjyhA\":[\"Dokumentacja\"],\"TcXcmk\":[\"Code review\"],\"TdfEV7\":[\"Zarchiwizowana\"],\"TjREUS\":[\"Nowy klucz API\"],\"TmvrjU\":[\"Adres URL tablicy musi mieć co najmniej 3 znaki\"],\"TvY/XA\":[\"Dokumentacja\"],\"Tz0i8g\":[\"Ustawienia\"],\"TztLaN\":[\"Nie można utworzyć listy\"],\"U2+rn0\":[\"Nazwa webhooka jest wymagana\"],\"U3pytU\":[\"Administrator\"],\"U5dMR6\":[\"Zobacz przestrzeń roboczą\"],\"UCLeG0\":[\"Regulamin\"],\"UGCIzB\":[\"Dodaj / edytuj etykietę\"],\"UQbwrz\":[\"Wszystkie systemy działają prawidłowo\"],\"URAE3q\":[\"Wstrzymane\"],\"USVCGU\":[\"Błąd podczas dezaktywacji linku zaproszenia\"],\"UbRKMZ\":[\"Oczekujące\"],\"UbYdrA\":[\"Częstotliwość płatności\"],\"UeDFpo\":[\"Jak finansowany jest projekt?\"],\"UirJfL\":[\"Niestandardowy SLA\"],\"UlhdTP\":[\"Przestrzeń robocza została usunięta\"],\"Un80BR\":[\"OSS Friends\"],\"UoSI+i\":[\"Najlepsze dla małych i rozwijających się zespołów wymagających współpracy\"],\"UveK6V\":[\"Przejdź do aplikacji\"],\"Uworke\":[\"Niepełny etat\"],\"UxKoFf\":[\"Nawigacja\"],\"V1KOLq\":[\"Powiadomienia e-mail o wzmiankach\"],\"V3MPSQ\":[\"zaktualizowano tytuł\"],\"V8YRD4\":[\"Viewing now: \",[\"0\"]],\"V8YWP3\":[\"Wprowadź własny tytuł\"],\"VHS0aJ\":[\"Wyczyścić wszystkie niestandardowe uprawnienia?\"],\"VKoDQD\":[\"Utwórz nową \",[\"0\"]],\"VUZDlr\":[\"Referencje\"],\"VXk54Y\":[\"samodzielnie przypisał(a) kartę\"],\"VbyRUy\":[\"Komentarze\"],\"VhMDMg\":[\"Zmień hasło\"],\"Vt50G1\":[\"Podstawowy Kanban\"],\"W/Elkg\":[\"Średni priorytet\"],\"W/nQk1\":[\"Plan darmowy\"],\"W1ewR0\":[\"Nie można skopiować linku\"],\"W5r8Qh\":[\"usunięto element checklisty\"],\"W8oT+L\":[\"Nie udało się pobrać informacji o wideo\"],\"WHHLh9\":[\"Nie można usunąć załącznika\"],\"WI4eGo\":[\"Jak uzyskać własny adres URL?\"],\"WQPDcG\":[\"Nie można zaktualizować elementu listy kontrolnej\"],\"WRkpB1\":[\"Rejestracja wyłączona\"],\"WRsbHO\":[\"Twoje konto Trello jest połączone.\"],\"WYDptz\":[\"Wymagana subskrypcja\"],\"WYwN1G\":[\"Nowy import\"],\"WbTDwg\":[\"W\xA0trakcie\"],\"Weq9zb\":[\"Ogólne\"],\"WmPhYW\":[\"Wystąpił błąd podczas odłączania konta Trello.\"],\"WnEwDO\":[\"Masz już konto? <0><1>Zaloguj się\"],\"Ws+3X+\":[\"Nielimitowane miejsca i zaawansowane funkcje dla rozwijających się zespołów.\"],\"Ws1I0u\":[\"A card was updated\"],\"Wy6pcF\":[\"Nie można zaktualizować widoczności tablicy\"],\"X0N0PA\":[\" (edytowano)\"],\"XDRXbZ\":[\"Opis przestrzeni roboczej musi mieć co najmniej 3 znaki\"],\"XEoGkQ\":[\"Przejdź do strony głównej\"],\"XILg0L\":[\"Nieprawidłowy adres e-mail\"],\"XJOV1Y\":[\"Aktywność\"],\"XNxYxq\":[\"Szablony tablic\"],\"XTKtey\":[\"Utwórz listę\"],\"XXbgHS\":[\"Zatrudniony\"],\"XYLcNv\":[\"Wsparcie\"],\"XicmhT\":[\"Termin wykonania\"],\"Xid3K6\":[\"Adres URL tablicy może zawierać tylko litery, cyfry i myślniki\"],\"Xjj/kS\":[\"Nowe spojrzenie na Kanban\"],\"XpcjLO\":[\"Nie można zaktualizować adresu URL tablicy\"],\"Y8yzGg\":[\"Zacznij za darmo. Rozwijaj się wraz z zespołem. Bez ukrytych opłat, bez umów.\"],\"YBBifR\":[\"Odłącz Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Nie można zmienić kolejności elementu listy kontrolnej\"],\"YRk79X\":[\"Zaawansowane zabezpieczenia, zgodność i dedykowane wsparcie dla dużych organizacji.\"],\"YVT40D\":[\"usunięto etykietę <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Błąd podczas aktualizacji subskrypcji\"],\"YcyP2z\":[\"Nie można utworzyć szablonu\"],\"YdIn4I\":[\"You were removed from a workspace\"],\"Yf9FAx\":[\"Nie będą mogli uzyskać dostępu do tego workspace’a.\"],\"YhvWXb\":[\"Analiza tablicy\"],\"YirHq7\":[\"Opinia\"],\"YkfDoz\":[\"Rocznie\"],\"YoyKbT\":[\"Ten klucz API zostanie wyświetlony tylko raz. Zapisz go w bezpiecznym miejscu.\"],\"Ypy5pZ\":[\"Czy na pewno chcesz usunąć webhook \\\"\",[\"webhookName\"],\"\\\"? Tej operacji nie można cofnąć.\"],\"YtUfwW\":[\"Nie udało się zalogować przez \",[\"0\"],\". Spróbuj ponownie.\"],\"Yx0Ud8\":[\"Zażądano\"],\"Z3FXyt\":[\"Ładowanie...\"],\"Z3krJD\":[\"Pozwól członkom workspace widzieć adresy e-mail innych osób\"],\"Z6r9z1\":[\"Nie można usunąć karty\"],\"ZAs2NN\":[\"Wszystkie funkcje wersji Pro +\"],\"ZDGm40\":[\"Usuń konto\"],\"ZDIydz\":[\"Rozpocznij\"],\"ZDPJBc\":[\"Niestandardowe nazwy użytkownika wymagają uaktualnienia do planu Pro\"],\"ZDo4HN\":[\"Burza mózgów\"],\"ZH7TVS\":[\"Tytuł karty\"],\"ZL1A+p\":[\"Nie udało się przesłać załącznika. Spróbuj ponownie.\"],\"ZT4Khw\":[\"Czy na pewno chcesz usunąć tę kartę?\"],\"ZU5IYI\":[\"Nielimitowane tablice, nielimitowane listy, nielimitowane karty. Nie wymaga karty kredytowej.\"],\"ZXSPJt\":[\"Wystąpił nieoczekiwany błąd. Spróbuj ponownie później.\"],\"ZqDqbi\":[\"Organizuj i wyszukuj karty szybko dzięki zaawansowanym narzędziom filtrowania.\"],\"Zz1qkk\":[\"Nielimitowane karty\"],\"a3LDKx\":[\"Bezpieczeństwo\"],\"aHCEmh\":[\"Cennik\"],\"aHRWVI\":[\"usunięto termin\"],\"aJ4pMe\":[\"FAQ\"],\"aKJHG+\":[\"Zarchiwizuj tablicę\"],\"aW3TOw\":[\"Powiadomienia e-mail\"],\"aWDhU5\":[\"Kanban jest lepszy w zespole. Idealny dla małych i rozwijających się zespołów, które chcą współpracować.\"],\"aWlSc/\":[\"Utwórz nową listę\"],\"abUZlY\":[\"Dodaj szczegóły...\"],\"aelko+\":[\"Możesz uzyskać własny URL przestrzeni roboczej, np. <0>kan.bn/kan, przechodząc do <1>ustawień przestrzeni roboczej i wykupując subskrypcję pro. Wszystkie subskrypcje wspierają rozwój projektu!\"],\"agPptk\":[\"Średni\"],\"aiHZVP\":[\"Zobacz dokumentację\"],\"b/LfJo\":[\"email\"],\"b3Thhd\":[\"Przesyłanie nie powiodło się\"],\"b5FKyH\":[\"dodano etykietę <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Utwórz \",[\"0\"]],\"bD8I7O\":[\"Ukończ\"],\"bDI6VI\":[[\"0\"],\" został usunięty z ulubionych.\"],\"bFREhu\":[\"Koniec listy\"],\"bJZm1W\":[\"Kandydaci\"],\"bJtM0P\":[\"Ten adres URL workspace jest zarezerwowany\"],\"bKzM8L\":[\"Dedykowany opiekun konta\"],\"bZSICm\":[\"Nie można dodać elementu listy kontrolnej\"],\"bcIybO\":[\"Nazwa przestrzeni roboczej jest wymagana\"],\"bdztP2\":[\"Badania\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"Rola członka została zaktualizowana.\"],\"bff61F\":[\"Plan zespołowy\"],\"bfgr/e\":[\"Pytanie\"],\"bmXKoX\":[\"dodano \",[\"0\"],\" etykiety: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Błąd podczas usuwania konta\"],\"c/IAuR\":[\"Ważne\"],\"c3b0B0\":[\"Rozpocznij\"],\"c4nMcR\":[\"Twój awatar\"],\"c9AJhn\":[\"Dołącz do workspace\"],\"cAgBMh\":[\"Pełna kontrola i własność:\"],\"cFQEU/\":[\"Otwórz skróty klawiaturowe\"],\"cOh+MI\":[\"Screening\"],\"cWXW+7\":[\"Dodaj webhook\"],\"cWcxrL\":[\"Nowa lista kontrolna\"],\"cWtfn1\":[\"Ulepsz do Pro (29\xA0$/miesiąc)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Opis przestrzeni roboczej\"],\"cji2nM\":[\"Błąd podczas tworzenia linku zaproszenia\"],\"cnGeoo\":[\"Usuń\"],\"cp1rsD\":[\"Dezaktywuj link zaproszenia\"],\"csFbe+\":[\"Przejdź do szablonów\"],\"curoK5\":[\"Nowy workspace\"],\"d+F6q9\":[\"Utworzono\"],\"d33Usy\":[\"Utwórz checklistę\"],\"dEgA5A\":[\"Anuluj\"],\"dUh9QW\":[\"Planowanie\"],\"ddrz1m\":[\"Zaległe\"],\"delOXn\":[\"Nie można zaktualizować etykiet\"],\"dgr4Kq\":[\"Edytuj etykietę\"],\"dmKdk0\":[\"Po usunięciu workspace'a nie będzie można tego cofnąć. Tej operacji nie da się odwrócić.\"],\"dsLT3m\":[\"Utwórz kartę\"],\"dtQIWT\":[\"Współpraca\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Ten adres URL workspace’a jest już zajęty\"],\"e1v+J3\":[\"Sekret (opcjonalnie)\"],\"e4hPSt\":[\"Przywróć domyślne uprawnienia roli\"],\"e6wIqm\":[\"You were mentioned in a card\"],\"eEQyz+\":[\"Śledź wszystkie zmiany kart z szczegółową historią aktywności.\"],\"ePK91l\":[\"Edytuj\"],\"eZCGbT\":[\"Tak, oferujemy wiecznie darmowy plan do użytku indywidualnego. Bez ograniczeń, bez paywalla, bez limitów.\"],\"edWbV6\":[\"Link skopiowany\"],\"ekCRTP\":[\"Odrzucono\"],\"en3oy5\":[\"Funkcja\"],\"euc6Ns\":[\"Duplikuj\"],\"eus61c\":[\"Wyślij test\"],\"evg7+A\":[\"Twoje tablice zostały zaimportowane.\"],\"evj0lK\":[\"Czy oferujecie darmowy plan?\"],\"f8fH8W\":[\"Design\"],\"f8lDFq\":[\"utworzył(a) kartę\"],\"fDQ7hA\":[\"Kopiuj etykiety\"],\"fEY2vP\":[\"Nie znaleziono karty\"],\"fQCrjt\":[\"Widoczność Twojej tablicy została ustawiona na \",[\"0\"],\".\"],\"fR9laE\":[\"Wprowadź swoje obecne hasło\"],\"fSf2ee\":[\"Zobacz naszą mapę drogową.\"],\"fW5sSv\":[\"Edytuj webhook\"],\"fYVH36\":[\"Nie można zaktualizować komentarza\"],\"fcWrnU\":[\"Wyloguj się\"],\"fuwKpE\":[\"Spróbuj ponownie.\"],\"fvLNDy\":[\"Nie utworzono jeszcze żadnych list\"],\"fzGyWs\":[\"Zmień rozmiar czcionki aplikacji.\"],\"fziA2d\":[\"Nielimitowane komentarze\"],\"g2xBxu\":[\"Importowanie tablic Trello do Kan jest proste. Możesz skorzystać z naszego przewodnika krok po kroku <0>tutaj.\"],\"g9NChz\":[\"Opiekun konta\"],\"gGx5tM\":[\"Edycja\"],\"gKmoow\":[\"Ten adres URL jest zarezerwowany\"],\"gL/7jw\":[\"Dodaj opis... (wpisz '/' aby otworzyć polecenia lub '@', aby wspomnieć)\"],\"gQ/02p\":[\"Błąd podczas odłączania GitHub\"],\"gUX7b+\":[\"Open source’owa <0/> alternatywa dla Trello\"],\"gZxH/p\":[\"zmienił termin na <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"Nazwa przestrzeni roboczej nie może przekraczać 64 znaków\"],\"gkxGkF\":[\"14 dni bezpłatnego okresu próbnego · Zmień plan lub anuluj w dowolnym momencie\"],\"gkzAEM\":[\"Kontynuuj przez \",[\"0\"]],\"goklcJ\":[\"Rozmowa kwalifikacyjna\"],\"gpfJ3v\":[\"Darmowe, na zawsze\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"Adres URL tablicy nie może przekraczać 60 znaków\"],\"h16FyT\":[\"Listy\"],\"h2FKMV\":[\"Nie masz uprawnień\"],\"h2ztFt\":[\"Wszystkie funkcje wersji Free +\"],\"h4VV67\":[\"dodano checklistę\"],\"h7MgpO\":[\"Skróty klawiaturowe\"],\"h8DugX\":[\"Etykiety\"],\"hAMddS\":[\"Użytkownik odpiął się od karty\"],\"hB02vO\":[\"Zarządzaj członkami\"],\"hXMFoN\":[\"Brak list\"],\"hYzsXr\":[\"Ustawienia | Integracje\"],\"hty0d5\":[\"Poniedziałek\"],\"i0ZMQl\":[\"Tablica zarchiwizowana\"],\"i30J2U\":[\"Nie znaleziono projektów\"],\"i5rE2/\":[\"URL nie może przekraczać 64 znaków\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Wstecz\"],\"iHcdea\":[\"Termin w przyszłym tygodniu\"],\"iLbjv+\":[\"Może edytować przestrzeń roboczą\"],\"iQmbPb\":[\"Licencja\"],\"iSLIjg\":[\"Połącz\"],\"iTylMl\":[\"Szablony\"],\"iVIGZb\":[\"Załącznik przesłany\"],\"isRobC\":[\"Nowy\"],\"itgYbC\":[\"Webhook testowy został wysłany pomyślnie!\"],\"iwr7AP\":[\"Pomysły\"],\"iy1wb+\":[\"Ustawienia | API\"],\"j0o6ml\":[\"Opis Twojej przestrzeni roboczej\"],\"j1+HPc\":[\"Wystąpił błąd podczas łączenia konta GitHub.\"],\"j2+d/o\":[\"Dokumentacja API\"],\"j77sVH\":[\"You were assigned to\"],\"j9IZZ0\":[\"Niestandardowy adres URL workspace\"],\"jDRt4n\":[\"Czy chcesz zrezygnować z subskrypcji?\"],\"jEw0Mr\":[\"Wprowadź poprawny adres URL\"],\"jIuWsV\":[\"Nazwa webhooka nie może przekraczać 255 znaków\"],\"jL82rC\":[\"Wyczyść niestandardowe uprawnienia\"],\"jNuzV/\":[\"Może usuwać karty\"],\"jQ6I8X\":[\"Zaktualizowano rolę\"],\"jZBHkN\":[\"Nazwa przestrzeni roboczej musi mieć co najmniej 3 znaki\"],\"jfC/xh\":[\"Kontakt\"],\"jl3aEJ\":[\"oznaczył(a) element listy kontrolnej <0>\",[\"0\"],\" jako nieukończony\"],\"jlB2RY\":[\"Wprowadzone obecne hasło jest nieprawidłowe.\"],\"jwI32v\":[\"Nie znaleziono tablicy\"],\"k7rCa/\":[\"Duży\"],\"kECVpo\":[\"Czy na pewno chcesz usunąć tę etykietę?\"],\"kQwvU8\":[\"usunięto etykietę z karty\"],\"kSxwQL\":[\"Możesz zaprosić członków zespołu, klikając przycisk „Zaproś” w prawym górnym rogu <0>strony członków i wpisując ich adres e-mail. Otrzymają oni wiadomość e-mail z linkiem do dołączenia do przestrzeni roboczej.\"],\"kYu0eF\":[\"Usuń workspace\"],\"kfOGMr\":[\"Szybka wygrana\"],\"klpSmb\":[\"Edytuj URL przestrzeni roboczej\"],\"kp6L3T\":[\"Ta nazwa użytkownika workspace jest już zajęta\"],\"kryGs+\":[\"Karta\"],\"kuoc68\":[\"$10/miesiąc\"],\"kxEs5t\":[\"Importy z Trello\"],\"l2PIAy\":[\"Samodzielny hosting z Github\"],\"l31EoQ\":[\"Znajdź odpowiedzi na najczęstsze pytania dotyczące Kan. Nie możesz znaleźć tego, czego szukasz? Śmiało <0>skontaktuj się z nami.\"],\"l3s5ri\":[\"Importuj\"],\"l4asa1\":[\"Ta tablica jest prywatna lub nie istnieje\"],\"lGjicL\":[\", lub zobacz nasze\"],\"lKAvEd\":[\"Błąd podczas odłączania Trello\"],\"lXvXNI\":[\"Nie udało się skopiować linku do zaproszenia\"],\"lYT7pQ\":[\"Usuń listę\"],\"lkz85l\":[\"Główna różnica między Kan a Trello polega na tym, że Kan jest open source, co pozwala każdemu przeglądać, modyfikować i współtworzyć nasz kod. Nasza chmura nie nakłada żadnych ograniczeń na funkcje dla użytkowników indywidualnych, podczas gdy Trello blokuje podstawowe funkcje, takie jak liczba tablic, które możesz utworzyć, za paywallem.\"],\"lo8xBK\":[\"Czy na pewno chcesz usunąć \",[\"entityLabel\"],\"?\"],\"lpIMne\":[\"Hasła nie są zgodne\"],\"lsgnzd\":[\"Błąd podczas aktualizacji do wersji Pro\"],\"lyqwgn\":[\"Dodaj etykietę\"],\"m2nk0i\":[\"Prosty cennik\"],\"mErq7F\":[\"Zarejestruj się\"],\"mHhffx\":[\"Nie można utworzyć listy kontrolnej\"],\"mTGd3+\":[\"usunięto checklistę\"],\"mTwGOf\":[\"Ten link z zaproszeniem jest nieprawidłowy lub wygasł.\"],\"mU+M00\":[[\"0\"],\" został dodany do ulubionych.\"],\"mVZH9V\":[\"Kiedy Trello pojawiło się w 2011 roku, zachwyciło wszystkich swoją przemyślaną prostotą, ale z czasem straciło swój urok i stało się czymś w rodzaju „Jira Lite”. Ten projekt to nasza próba odzyskania tej pierwotnej magii prostoty Trello, w wersji open source.\"],\"mZGPxt\":[\"Link do zaproszenia skopiowany do schowka\"],\"mchgzf\":[\"Rejestracja zakończona sukcesem.\"],\"mgXgHu\":[\"Przejdź do tablic\"],\"mrhyIB\":[\"Idealne dla małych i rozwijających się zespołów, które chcą współpracować.\"],\"mwBdZ2\":[\"Spowoduje to trwałe usunięcie wszystkich danych powiązanych z Twoim kontem.\"],\"mx8+1u\":[\"Nielimitowani członkowie\"],\"n+xLOH\":[\"Obsługa klienta\"],\"n1GRql\":[\"Nowa etykieta\"],\"n1ekoW\":[\"Zaloguj się\"],\"n6EWYz\":[\"Służy do podpisywania danych webhook w celu weryfikacji. Pozostaw puste, aby zachować istniejący sekret.\"],\"n9V+ps\":[\"Wprowadź swoje imię i nazwisko\"],\"nKBUeF\":[\"Karta została zduplikowana.\"],\"nOhz3x\":[\"Wyloguj się\"],\"nYNMZZ\":[\"Pozycja na liście (0 = pierwsza, puste pole = koniec)\"],\"nabda1\":[\"Usuń kartę\"],\"nbfdhU\":[\"Integracje\"],\"ngBZOd\":[\"Dodaj komentarz... (wpisz '/' aby otworzyć polecenia lub '@', aby wspomnieć)\"],\"nhMhRr\":[\"Dziękujemy za Twoją opinię!\"],\"njJFtc\":[\"Usuń komentarz\"],\"nk7caK\":[\"Połącz Trello\"],\"nol/Fb\":[\"Jak zaprosić członków zespołu?\"],\"notwF1\":[\"Nazwa szablonu nie może przekraczać 100 znaków\"],\"nq7q3Z\":[\"Nazwa klucza API nie może przekraczać 30 znaków\"],\"nqdIhs\":[\"Niestandardowe szablony tablic\"],\"nryrgW\":[\"Wszystkie nadpisania uprawnień członków zostały zresetowane do domyślnych ustawień ról.\"],\"o+JCfN\":[\"Zaufany przez dynamiczne zespoły<0/>na całym świecie\"],\"o4e/70\":[\"Wybierz co najmniej jedno zdarzenie\"],\"o4sQAg\":[\"Nie udało się utworzyć webhooka\"],\"o7J4JM\":[\"Filtruj\"],\"o8adVG\":[\"10mb przesyłania plików\"],\"o9WLwO\":[\"Nie można zaktualizować karty\"],\"oVBq1w\":[\"za użytkownika/miesiąc\"],\"oW13KZ\":[\"Rozpocznij za darmo już dziś\"],\"odFCYX\":[\"Nieprawidłowe zaproszenie\"],\"okpxfB\":[\"Utwórz nowy klucz\"],\"onllUU\":[\"Mark all as read\"],\"oyRjD/\":[\"Plan Pro\"],\"p/hk9N\":[\"Zalogowano pomyślnie.\"],\"pBsoKL\":[\"Dodaj do ulubionych\"],\"pFGfsR\":[\"Sprawdź niektóre z naszych ulubionych projektów open source.\"],\"pFKC6A\":[\"Nazwa klucza API\"],\"pL78ec\":[\"Dodano do ulubionych\"],\"pM1sn/\":[\"New notification\"],\"pVctI7\":[\"Opcja wdrożenia on-premise\"],\"pXVFJy\":[\"Może usuwać tablice\"],\"pa9o5D\":[\"Przytnij swój avatar\"],\"pfa8F0\":[\"Nazwa wyświetlana\"],\"pmUArF\":[\"Przestrzeń robocza\"],\"pnrmSP\":[\"Nowa karta\"],\"ppaRWv\":[\"Samodzielny hosting\"],\"pvnfJD\":[\"Ciemny\"],\"q+lt9D\":[\"Błąd podczas usuwania etykiety\"],\"q3il6U\":[\"Rozmiar czcionki\"],\"qPP4lD\":[\"Zapraszanie członków wymaga planu Team. Zostaniesz przekierowany(-a) do aktualizacji workspace.\"],\"qQXocp\":[\"Może zarządzać ustawieniami przestrzeni roboczej\"],\"qaS+1/\":[\"Najlepsze dla zespołów, które chcą się rozwijać bez ograniczeń\"],\"qfUS/w\":[\"Przyjaciele Open Source\"],\"qkjvgj\":[\"Twój workspace został usunięty.\"],\"qlAIQ1\":[\"Zdalnie\"],\"qtE5nt\":[\"Dodaj element...\"],\"qzdST2\":[\"Widoczność tablicy\"],\"r6BgwX\":[\"Do zalogowania wymagane jest hasło.\"],\"rD6UIt\":[\"Rozpocznij w chmurze\"],\"rF8SEQ\":[\"Edytuj komentarz\"],\"rQRXo8\":[\"Wprowadź nowy sekret, aby zaktualizować\"],\"rQXTmd\":[\"Adres URL karty skopiowany do schowka\"],\"rRM7r0\":[\"Zaimportuj swoje tablice Trello i zacznij działać od razu.\"],\"rYUZIe\":[\"Wybierz źródło\"],\"raHesj\":[\"Zostałeś wypisany z subskrypcji!\"],\"rarRW/\":[\"Błąd podczas zapraszania członka\"],\"ri1hHe\":[\"Termin w przyszłym miesiącu\"],\"rmN315\":[\"Zabawa\"],\"rs7L54\":[\"dodano członka do karty\"],\"rtbVvN\":[\"Może edytować listy\"],\"s+MGs7\":[\"Zasoby\"],\"s6iE/c\":[\"Rejestracja jest obecnie wyłączona. Spróbuj ponownie później.\"],\"sBhOFG\":[\"Proste, wizualne zarządzanie zadaniami, które po prostu działa. Przeciągaj i upuszczaj karty, współpracuj z zespołem i osiągaj więcej.\"],\"sDLCvT\":[\"Połącz swoje ulubione narzędzia, aby usprawnić pracę.\"],\"sDuhfK\":[\"Oferta na start: nielimitowane miejsca za jedyne 29\xA0$/mies. z Pro\"],\"sU2uWc\":[\"Karta zduplikowana\"],\"sUZo7y\":[\"Rejestracja | kan.bn\"],\"sVBn4K\":[\"Błąd podczas aktualizacji wyświetlanej nazwy\"],\"sY2lzr\":[\"Brak dostępnego adresu URL do pobrania tego załącznika.\"],\"sbNNyi\":[\"Nowy webhook\"],\"snMaH4\":[\"Usuń webhook\"],\"t+R8+P\":[\"Wykonanie\"],\"t/YqKh\":[\"Usuń\"],\"t0dTPm\":[\"Skonfiguruj webhooki, aby otrzymywać powiadomienia o tworzeniu, aktualizacji, przenoszeniu lub usuwaniu kart.\"],\"t2nDzl\":[\"Zobacz i zarządzaj swoim rozliczeniem oraz subskrypcją.\"],\"t6FvJH\":[\"Może dodawać komentarze\"],\"tGwwnq\":[\"zaktualizowano opis\"],\"tHcbLF\":[\"Może edytować tablice\"],\"tIdipJ\":[\"Edytuj URL tablicy\"],\"tMYIu7\":[\"Dzienniki aktywności\"],\"tOZp9v\":[\"Konfigurowalne role i uprawnienia użytkowników\"],\"tTbref\":[\"Do rejestracji wymagane jest hasło.\"],\"tYN21H\":[\"Użytkownik jest już członkiem tego workspace\"],\"tbNcu4\":[\"Tablica przywrócona z archiwum\"],\"tca56/\":[\"Twój plik został pomyślnie przesłany.\"],\"tfDRzk\":[\"Zapisz\"],\"tlhgDC\":[\"Brak zarchiwizowanych tablic\"],\"tmlJN1\":[\"Wprowadź poprawny adres URL YouTube\"],\"tmpW+w\":[\"Usuń tablicę\"],\"tst44n\":[\"Zdarzenia\"],\"tyHiOa\":[\"Spróbuj ponownie później lub skontaktuj się z obsługą klienta.\"],\"u2+JIh\":[\"Własne adresy URL wymagają przejścia na plan Pro\"],\"u8JHrO\":[\"Wyczyść filtry\"],\"uAQUqI\":[\"Status\"],\"uEGGDs\":[\"Mój webhook\"],\"uOqaMC\":[\"Otrzymałeś zaproszenie do przestrzeni roboczej.\"],\"uP4V6I\":[\"Darmowe dla wszystkich\"],\"uXGLuq\":[\"Utwórz klucz API\"],\"uZg2+w\":[\"Ulepsz swoje środowisko pracy za jedyne 29$/miesiąc. Oto co otrzymasz:\"],\"uck1tz\":[\"usunięto członka z karty\"],\"usVytm\":[\"Po usunięciu konta nie będzie można tego cofnąć. Tej operacji nie da się odwrócić.\"],\"uvH2xS\":[\"Kopiuj członków\"],\"v+Wp++\":[\"Open source\"],\"v1kQyJ\":[\"Webhooki\"],\"v3YoMA\":[\"Starszy\"],\"vAR/I8\":[\"Uruchom na własnej infrastrukturze\"],\"vAj6xG\":[\"Możesz samodzielnie hostować, postępując zgodnie z instrukcjami w naszym <0>repozytorium.\"],\"vSJd18\":[\"Wideo\"],\"vUr5JT\":[\"Nie masz konta? <0><1>Zarejestruj się\"],\"vXIe7J\":[\"Język\"],\"vXemf6\":[\"Błąd\"],\"va/3u1\":[\"Kontroluj, kto może wyświetlać i edytować twoje tablice.\"],\"vbskQn\":[\"Nazwa klucza API jest wymagana\"],\"veIDCY\":[\"Rozpocznij 14-dniowy bezpłatny okres próbny\"],\"vfRdCZ\":[\"Nie można zresetować uprawnień\"],\"vgdzLf\":[\"Utwórz kolejną\"],\"vifyyw\":[\"Prawne\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"Uprawnienia tego członka zostały zresetowane do domyślnych dla jego roli.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"rozliczenie miesięczne\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Długoterminowy\"],\"vwGkYB\":[\"Hasło musi mieć co najmniej 8 znaków\"],\"wIb7Ng\":[\"Software Development\"],\"wK4OTM\":[\"Tytuł (opcjonalnie)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Wybierz plik do przesłania.\"],\"wY+6Ye\":[\"Ten adres URL tablicy jest już zajęty\"],\"wakO3W\":[\"dodano checklistę <0>\",[\"0\"],\"\"],\"wewm3j\":[\"Nazwa tablicy nie może przekraczać 100 znaków\"],\"wgNoIs\":[\"Zaznacz wszystko\"],\"wlQNTg\":[\"Członkowie\"],\"wqkcin\":[\"Może wyświetlać komentarze\"],\"wqxglO\":[\"Nauka\"],\"wruKPE\":[\"Wesprzyj rozwój projektu\"],\"wsy94z\":[\"Najlepsze dla dużych organizacji z zaawansowanymi potrzebami\"],\"wtxjAY\":[\"Członkowie przestrzeni roboczej\"],\"x0kMO/\":[\"Błąd podczas aktualizacji adresu URL przestrzeni roboczej\"],\"x8GeCD\":[\"Nazwa wyświetlana została zaktualizowana\"],\"xEbBrW\":[\"Jakiej licencji używasz?\"],\"xGVfLh\":[\"Kontynuuj\"],\"xLTZVf\":[\"Pierwszy dzień tygodnia\"],\"xMn+V9\":[\"Importowanie z Trello\"],\"xRPn3U\":[\"Wprowadź swój adres e-mail\"],\"xvcYhz\":[\"Wyczyść wszelkie niestandardowe uprawnienia członka, aby wszyscy członkowie dziedziczyli uprawnienia tylko z domyślnych ról.\"],\"y3aU20\":[\"Zapisz zmiany\"],\"yD3ZSw\":[\"Zmień preferencje językowe.\"],\"yV7o5I\":[\"Jak zaimportować moje tablice Trello?\"],\"yb/fjw\":[\"Zatwierdzenie\"],\"yhLUU8\":[\"Błąd podczas łączenia z GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Importuj projekt (1)\"],\"few\":[\"Importuj projekty (\",[\"projectCount\"],\")\"],\"many\":[\"Importuj projektów (\",[\"projectCount\"],\")\"],\"other\":[\"Importuj projekty (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Zamknij\"],\"zC8Whw\":[\"Rozpocznij, tworząc nową listę\"],\"zERArS\":[\"zaktualizowano tytuł na <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Utwórz link zaproszenia\"],\"zMlxCA\":[\"1 użytkownik\"],\"zMquA7\":[\"Wybierz plan\"],\"zQPhSa\":[\"Konwertuj na link\"],\"zQX5Dj\":[\"Nazwa listy\"],\"zYRVNp\":[\"Wybierz listę\"],\"zkWmBh\":[\"Rocznie\"],\"zl1b97\":[\"Nie można utworzyć karty\"],\"zoEbXq\":[\"Może wyświetlać karty\"],\"zt/6cS\":[\"Najlepszy dla małych zespołów, które chcą współpracować i działać szybciej razem.\"],\"zto8aj\":[\"Trello zostało odłączone\"],\"zwBp5t\":[\"Prywatne\"],\"zwTiVn\":[\"usunięto załącznik <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Dowiedz się więcej\"],\"zxKs+y\":[\"Termin jutro\"],\"zzDlyQ\":[\"Sukces\"]}")as Messages; \ No newline at end of file diff --git a/apps/web/src/locales/pt-BR/messages.json b/apps/web/src/locales/pt-BR/messages.json index 9f2c0ab09..75c84aea7 100644 --- a/apps/web/src/locales/pt-BR/messages.json +++ b/apps/web/src/locales/pt-BR/messages.json @@ -3,23 +3,40 @@ "message": " (edited)", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 153]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 153 + ] + ], "translation": " (editado)" }, "lGjicL": { "message": ", or see our", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 102]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 102 + ] + ], "translation": ", ou veja nosso" }, "J/hVSQ": { "message": "{0}", "placeholders": { - "0": ["isTemplate ? \"Templates\" : \"Boards\""] + "0": [ + "isTemplate ? \"Templates\" : \"Boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/index.tsx", 53]], + "origin": [ + [ + "src/views/boards/index.tsx", + 53 + ] + ], "translation": "{0}" }, "JArWcF": { @@ -29,74 +46,146 @@ "card?.title ?? t`Card`", "isTemplate ? \"Templates\" : \"Boards\"" ], - "1": ["board?.name ?? t`Board`", "workspace.name ?? t`Workspace`"] + "1": [ + "board?.name ?? t`Board`", + "workspace.name ?? t`Workspace`" + ] }, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 48], - ["src/views/card/index.tsx", 317] + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/card/index.tsx", + 364 + ] ], "translation": "{0} | {1}" }, "mU+M00": { "message": "{0} has been added to your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 56]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 56 + ] + ], "translation": "{0} foi adicionado aos seus favoritos." }, "bDI6VI": { "message": "{0} has been removed from your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 57]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 57 + ] + ], "translation": "{0} foi removido dos seus favoritos." }, "CJukzS": { "message": "{0} labels", "placeholders": { - "0": ["labelPublicIds.length"] + "0": [ + "labelPublicIds.length" + ] }, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 455]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 455 + ] + ], "translation": "{0} etiquetas" }, "9x4DAL": { "message": "{0} not found", "placeholders": { - "0": ["isTemplate ? \"Template\" : \"Board\""] + "0": [ + "isTemplate ? \"Template\" : \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/index.tsx", 557]], + "origin": [ + [ + "src/views/board/index.tsx", + 561 + ] + ], "translation": "{0} não encontrado" }, "0xWkkH": { "message": "{boardCount, plural, one {Import board (1)} other {Import boards ({boardCount})}}", "placeholders": { - "boardCount": ["boardCount"] + "boardCount": [ + "boardCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 489]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 489 + ] + ], "translation": "{boardCount, plural, one {Importar quadro (1)} other {Importar quadros ({boardCount})}}" }, + "JBaoDB": { + "message": "{overflow} more viewers", + "placeholders": { + "overflow": [ + "overflow" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 70 + ] + ], + "translation": "" + }, "yndBF+": { "message": "{projectCount, plural, one {Import project (1)} other {Import projects ({projectCount})}}", "placeholders": { - "projectCount": ["projectCount"] + "projectCount": [ + "projectCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 341]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 341 + ] + ], "translation": "{projectCount, plural, one {Importar projeto (1)} other {Importar projetos ({projectCount})}}" }, "9lFfqv": { "message": "/month", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 207]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 207 + ] + ], "translation": "/mês" }, "be30i9": { @@ -104,8 +193,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 30], - ["src/views/pricing/components/PricingTiers.tsx", 30] + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ] ], "translation": "$0" }, @@ -114,8 +209,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 158], - ["src/views/members/components/InviteMemberForm.tsx", 170] + [ + "src/views/members/components/InviteMemberForm.tsx", + 158 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] ], "translation": "$10/mês" }, @@ -123,7 +224,12 @@ "message": "$8/month", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 170]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] + ], "translation": "$8/mês" }, "zMlxCA": { @@ -131,9 +237,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 82], - ["src/views/pricing/components/Pricing.tsx", 36], - ["src/views/pricing/components/PricingTiers.tsx", 35] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 82 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 36 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 35 + ] ], "translation": "1 usuário" }, @@ -141,7 +256,12 @@ "message": "10mb file uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 90]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 90 + ] + ], "translation": "Uploads de arquivos de 10 MB" }, "gkxGkF": { @@ -149,9 +269,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 66], - ["src/views/pricing/components/PricingTiers.tsx", 88], - ["src/views/pricing/components/PricingTiers.tsx", 263] + [ + "src/views/pricing/components/PricingTiers.tsx", + 66 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 88 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 263 + ] ], "translation": "Teste gratuito de 14 dias · Mude de plano ou cancele a qualquer momento" }, @@ -159,21 +288,48 @@ "message": "404 - Page Not Found | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 11]], + "origin": [ + [ + "src/pages/404.tsx", + 11 + ] + ], "translation": "404 - Página Não Encontrada | kan.bn" }, + "Ws1I0u": { + "message": "A card was updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 54 + ] + ], + "translation": "" + }, "/rn4RE": { "message": "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 71]], + "origin": [ + [ + "src/views/home/index.tsx", + 71 + ] + ], "translation": "Um aplicativo kanban poderoso e flexível que ajuda você a organizar o trabalho, acompanhar o progresso e entregar resultados — tudo em um só lugar." }, "AeXO77": { "message": "Account", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 41]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 41 + ] + ], "translation": "Conta" }, "TKFUnX": { @@ -181,7 +337,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 27 + ] ], "translation": "Conta excluída" }, @@ -190,7 +349,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 283] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 283 + ] ], "translation": "Gerente de conta" }, @@ -198,7 +360,12 @@ "message": "Actions", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 56]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 56 + ] + ], "translation": "Ações" }, "F6pfE9": { @@ -206,9 +373,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 26], - ["src/views/settings/components/NewWebhookModal.tsx", 293], - ["src/views/settings/components/WebhookList.tsx", 106] + [ + "src/views/boards/index.tsx", + 26 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 293 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] ], "translation": "Ativo" }, @@ -217,8 +393,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 455], - ["src/views/public/board/CardModal.tsx", 200] + [ + "src/views/card/index.tsx", + 502 + ], + [ + "src/views/public/board/CardModal.tsx", + 200 + ] ], "translation": "Atividade" }, @@ -227,7 +409,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 148] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 148 + ] ], "translation": "Registro de atividades" }, @@ -235,35 +420,60 @@ "message": "Activity logs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 110]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 110 + ] + ], "translation": "Registros de atividades" }, "UGCIzB": { "message": "Add / edit label", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 50]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 50 + ] + ], "translation": "Adicionar / editar etiqueta" }, "B3xxao": { "message": "Add a card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 136]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 136 + ] + ], "translation": "Adicionar um cartão" }, "qtE5nt": { "message": "Add an item...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 141]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 141 + ] + ], "translation": "Adicionar um item..." }, "Gxxi5J": { "message": "Add checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 65]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 65 + ] + ], "translation": "Adicionar checklist" }, "ngBZOd": { @@ -271,8 +481,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/Comment.tsx", 185], - ["src/views/card/components/NewCommentForm.tsx", 68] + [ + "src/views/card/components/Comment.tsx", + 185 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 68 + ] ], "translation": "Adicionar comentário... (digite '/' para abrir comandos ou '@' para mencionar)" }, @@ -280,14 +496,24 @@ "message": "Add description... (type '/' to open commands or '@' to mention)", "placeholders": {}, "comments": [], - "origin": [["src/components/Editor.tsx", 482]], + "origin": [ + [ + "src/components/Editor.tsx", + 482 + ] + ], "translation": "Adicionar descrição... (digite '/' para abrir comandos ou '@' para mencionar)" }, "abUZlY": { "message": "Add details...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 189 + ] + ], "translation": "Adicionar detalhes..." }, "lyqwgn": { @@ -295,8 +521,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/LabelSelector.tsx", 114], - ["src/views/card/components/LabelSelector.tsx", 119] + [ + "src/views/card/components/LabelSelector.tsx", + 114 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 119 + ] ], "translation": "Adicionar etiqueta" }, @@ -305,8 +537,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 135], - ["src/views/members/components/InviteMemberForm.tsx", 257] + [ + "src/views/card/components/MemberSelector.tsx", + 135 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 257 + ] ], "translation": "Adicionar membro" }, @@ -314,126 +552,222 @@ "message": "Add to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 122]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 122 + ] + ], "translation": "Adicionar aos favoritos" }, "cWXW+7": { "message": "Add webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 36 + ] + ], "translation": "Adicionar webhook" }, "bmXKoX": { "message": "added {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 102]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 102 + ] + ], "translation": "adicionou {0} etiquetas: <0>{labelList}" }, "h4VV67": { "message": "added a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 132]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 132 + ] + ], "translation": "adicionou um checklist" }, "O83K21": { "message": "added a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 135]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 135 + ] + ], "translation": "adicionou um item do checklist" }, "T21jY/": { "message": "added a label to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 128]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 128 + ] + ], "translation": "adicionou uma etiqueta ao cartão" }, "rs7L54": { "message": "added a member to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 130]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 130 + ] + ], "translation": "adicionou um membro ao cartão" }, "5y6qY8": { "message": "added an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 140]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 140 + ] + ], "translation": "adicionou um anexo" }, "CujNX4": { "message": "added an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 278]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 278 + ] + ], "translation": "adicionou um anexo <0>{0}" }, "wakO3W": { "message": "added checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 208]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 208 + ] + ], "translation": "adicionou checklist <0>{0}" }, "E0t3jO": { "message": "added checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 232]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 232 + ] + ], "translation": "adicionou item do checklist <0>{0}" }, "b5FKyH": { "message": "added label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 192]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 192 + ] + ], "translation": "adicionou etiqueta <0>{0}" }, "pL78ec": { "message": "Added to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 53]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 53 + ] + ], "translation": "Adicionado aos favoritos" }, "14Xi3Z": { "message": "Adding a new member will cost an additional {price} ({billingType}) per seat.", "placeholders": { - "price": ["price"], - "billingType": ["billingType"] + "price": [ + "price" + ], + "billingType": [ + "billingType" + ] }, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 327]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 327 + ] + ], "translation": "Adicionar um novo membro custará {price} ({billingType}) adicionais por assento." }, "D7/JvJ": { "message": "Adjust the square crop to fit your avatar.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 256]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 256 + ] + ], "translation": "Ajuste o recorte quadrado para caber no seu avatar." }, "U3pytU": { "message": "Admin", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 201]], + "origin": [ + [ + "src/views/members/index.tsx", + 201 + ] + ], "translation": "Administrador" }, "3pIq39": { @@ -441,19 +775,39 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 264], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 265], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 266], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 267], - ["src/views/pricing/components/Pricing.tsx", 55] - ], - "translation": "Funções de administrador" - }, + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 264 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 265 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 266 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 267 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 55 + ] + ], + "translation": "Funções de administrador" + }, "Kec+/t": { "message": "Advanced admin controls", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 103]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 103 + ] + ], "translation": "Controles avançados de administrador" }, "/jd3aj": { @@ -461,7 +815,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 268] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 268 + ] ], "translation": "Funções avançadas de administrador" }, @@ -469,42 +826,72 @@ "message": "Advanced security, compliance, and dedicated support for large organizations.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 97 + ] + ], "translation": "Segurança avançada, conformidade e suporte dedicado para grandes organizações." }, "h2ztFt": { "message": "All Free features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 56]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 56 + ] + ], "translation": "Todos os recursos gratuitos +" }, "nryrgW": { "message": "All member permission overrides have been reset to their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 26 + ] + ], "translation": "Todas as substituições de permissões de membros foram redefinidas para os padrões de suas funções." }, "ZAs2NN": { "message": "All Pro features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 101]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 101 + ] + ], "translation": "Todos os recursos Pro +" }, "UQbwrz": { "message": "All systems operational", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 18]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 18 + ] + ], "translation": "Todos os sistemas operacionais" }, "EII/X8": { "message": "All Teams features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 79]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 79 + ] + ], "translation": "Todos os recursos Teams +" }, "Z3krJD": { @@ -523,28 +910,48 @@ "message": "Already have an account? <0><1>Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 90]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 90 + ] + ], "translation": "Já tem uma conta? <0><1>Entrar" }, "j1+HPc": { "message": "An error occurred while connecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 107]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 107 + ] + ], "translation": "Ocorreu um erro ao conectar sua conta do GitHub." }, "Dz63YI": { "message": "An error occurred while disconnecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 130]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 130 + ] + ], "translation": "Ocorreu um erro ao desconectar sua conta do GitHub." }, "WmPhYW": { "message": "An error occurred while disconnecting your Trello account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 87]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 87 + ] + ], "translation": "Ocorreu um erro ao desconectar sua conta do Trello." }, "ZXSPJt": { @@ -552,7 +959,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 90] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 90 + ] ], "translation": "Ocorreu um erro inesperado. Por favor, tente novamente mais tarde." }, @@ -560,14 +970,24 @@ "message": "Annual", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 63]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 63 + ] + ], "translation": "Anual" }, "3bqt9U": { "message": "Anyone with this link can join your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 311]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 311 + ] + ], "translation": "Qualquer pessoa com este link pode entrar no seu workspace" }, "OZtEcz": { @@ -575,8 +995,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 65], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 237] + [ + "src/components/SettingsLayout.tsx", + 65 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 237 + ] ], "translation": "API" }, @@ -584,119 +1010,196 @@ "message": "API key created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 91]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 91 + ] + ], "translation": "Chave de API criada" }, "pFKC6A": { "message": "API key name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 161]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 161 + ] + ], "translation": "Nome da chave de API" }, "nq7q3Z": { "message": "API key name cannot exceed 30 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 25 + ] + ], "translation": "O nome da chave de API não pode exceder 30 caracteres" }, "vbskQn": { "message": "API key name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 24 + ] + ], "translation": "O nome da chave de API é obrigatório" }, "5h8ooz": { "message": "API keys", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 22]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 22 + ] + ], "translation": "Chaves de API" }, "j2+d/o": { "message": "API Reference", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 31]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 31 + ] + ], "translation": "Referência da API" }, "bJZm1W": { "message": "Applicants", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 75]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 75 + ] + ], "translation": "Candidatos" }, "yb/fjw": { "message": "Approval", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 46]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 46 + ] + ], "translation": "Aprovação" }, "aKJHG+": { "message": "Archive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Arquivar quadro" }, "TdfEV7": { "message": "Archived", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 27]], + "origin": [ + [ + "src/views/boards/index.tsx", + 27 + ] + ], "translation": "Arquivado" }, "lo8xBK": { "message": "Are you sure want to remove {entityLabel}?", "placeholders": { - "entityLabel": ["entityLabel"] + "entityLabel": [ + "entityLabel" + ] }, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 47] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 47 + ] ], "translation": "Tem certeza de que deseja remover {entityLabel}?" }, "Ypy5pZ": { "message": "Are you sure you want to delete the webhook \"{webhookName}\"? This action cannot be undone.", "placeholders": { - "webhookName": ["webhookName"] + "webhookName": [ + "webhookName" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 60 + ] ], "translation": "Tem certeza de que deseja excluir o webhook \"{webhookName}\"? Esta ação não pode ser desfeita." }, "BhDZlc": { "message": "Are you sure you want to delete the workspace {0}?", "placeholders": { - "0": ["workspace.name"] + "0": [ + "workspace.name" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 62] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 62 + ] ], "translation": "Tem certeza de que deseja excluir o workspace {0}?" }, "DMeWZD": { "message": "Are you sure you want to delete this {0}?", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/DeleteBoardConfirmation.tsx", 36]], + "origin": [ + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 36 + ] + ], "translation": "Tem certeza de que deseja excluir este {0}?" }, "ZT4Khw": { "message": "Are you sure you want to delete this card?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 75]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 75 + ] + ], "translation": "Tem certeza de que deseja excluir este cartão?" }, "Fpci8b": { @@ -704,7 +1207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 56] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 56 + ] ], "translation": "Tem certeza de que deseja excluir esta checklist?" }, @@ -712,14 +1218,24 @@ "message": "Are you sure you want to delete this comment?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 66]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 66 + ] + ], "translation": "Tem certeza de que deseja excluir este comentário?" }, "kECVpo": { "message": "Are you sure you want to delete this label?", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 41]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 41 + ] + ], "translation": "Tem certeza de que deseja excluir esta etiqueta?" }, "74F7N/": { @@ -727,17 +1243,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 54] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 54 + ] ], "translation": "Tem certeza de que deseja excluir sua conta?" }, "PyYD/v": { "message": "assigned <0>{0} to the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 172]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 172 + ] + ], "translation": "atribuiu <0>{0} ao cartão" }, "JUce1S": { @@ -745,7 +1271,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 199] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 199 + ] ], "translation": "Responsáveis" }, @@ -753,91 +1282,156 @@ "message": "Attachment uploaded", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 45]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 45 + ] + ], "translation": "Anexo enviado" }, "1rWxEw": { "message": "Awaiting Customer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 59]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 59 + ] + ], "translation": "Aguardando cliente" }, "iH8pgl": { "message": "Back", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 275]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 275 + ] + ], "translation": "Voltar" }, "KNKCTb": { "message": "Backlog", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Backlog" }, "Vt50G1": { "message": "Basic Kanban", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 16]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 16 + ] + ], "translation": "Kanban básico" }, "Pat4r8": { "message": "Basic Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 28]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 28 + ] + ], "translation": "Roadmap básico" }, "Cd4sTD": { "message": "Best for individuals and solo creators getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 32]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 32 + ] + ], "translation": "Ideal para indivíduos e criadores solo que estão começando" }, "wsy94z": { "message": "Best for large organizations with advanced needs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 98 + ] + ], "translation": "Ideal para grandes organizações com necessidades avançadas" }, "UoSI+i": { "message": "Best for small and growing teams that need collaboration", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 53]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 53 + ] + ], "translation": "Ideal para equipes pequenas e em crescimento que precisam de colaboração" }, "zt/6cS": { "message": "Best for small teams who want to collaborate and move faster together.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 86]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 86 + ] + ], "translation": "Ideal para pequenas equipes que desejam colaborar e avançar mais rápido juntas." }, "qaS+1/": { "message": "Best for teams that want to scale without limits", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 76]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 76 + ] + ], "translation": "Ideal para equipes que desejam escalar sem limites" }, "ARvBT/": { "message": "billed annually", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "cobrado anualmente" }, "+VoTOr": { "message": "billed monthly", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "cobrado mensalmente" }, "R+w/Va": { @@ -845,9 +1439,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 58], - ["src/views/boards/components/TemplateBoards.tsx", 68], - ["src/views/settings/BillingSettings.tsx", 39] + [ + "src/components/SettingsLayout.tsx", + 58 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 68 + ], + [ + "src/views/settings/BillingSettings.tsx", + 39 + ] ], "translation": "Cobrança" }, @@ -855,14 +1458,24 @@ "message": "Billing portal", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 49 + ] + ], "translation": "Portal de cobrança" }, "4RoY9J": { "message": "Blog Post", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Post de blog" }, "QD8opX": { @@ -870,9 +1483,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/card/index.tsx", 317], - ["src/views/public/board/index.tsx", 125] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/card/index.tsx", + 364 + ], + [ + "src/views/public/board/index.tsx", + 125 + ] ], "translation": "Quadro" }, @@ -881,8 +1503,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 314], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 85] + [ + "src/components/NewWorkspaceForm.tsx", + 314 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 85 + ] ], "translation": "Análise do quadro" }, @@ -890,28 +1518,48 @@ "message": "Board archived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Quadro arquivado" }, "wewm3j": { "message": "Board name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 23 + ] + ], "translation": "O nome do quadro não pode exceder 100 caracteres" }, "R1c3Mq": { "message": "Board name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 22 + ] + ], "translation": "O nome do quadro é obrigatório" }, "jwI32v": { "message": "Board not found", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 181]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 181 + ] + ], "translation": "Quadro não encontrado" }, "XNxYxq": { @@ -919,7 +1567,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 116] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 116 + ] ], "translation": "Modelos de quadro" }, @@ -927,21 +1578,36 @@ "message": "Board unarchived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Quadro desarquivado" }, "Xid3K6": { "message": "Board URL can only contain letters, numbers, and hyphens", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 46]], - "translation": "A URL do quadro pode conter apenas letras, números e hífens" - }, - "gv5kbo": { + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 46 + ] + ], + "translation": "A URL do quadro pode conter apenas letras, números e hífens" + }, + "gv5kbo": { "message": "Board URL cannot exceed 60 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 44]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 44 + ] + ], "translation": "A URL do quadro não pode exceder 60 caracteres" }, "8+BY11": { @@ -949,8 +1615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 82], - ["src/views/public/board/index.tsx", 79] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 82 + ], + [ + "src/views/public/board/index.tsx", + 79 + ] ], "translation": "URL do quadro copiada para a área de transferência" }, @@ -958,7 +1630,12 @@ "message": "Board URL must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 42]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 42 + ] + ], "translation": "A URL do quadro deve ter pelo menos 3 caracteres" }, "qzdST2": { @@ -966,8 +1643,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 85], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 132] + [ + "src/views/home/components/Features.tsx", + 85 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 132 + ] ], "translation": "Visibilidade do quadro" }, @@ -975,7 +1658,12 @@ "message": "Board visibility updated", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 49]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 49 + ] + ], "translation": "Visibilidade do quadro atualizada" }, "8TveY+": { @@ -983,8 +1671,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 99], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 73] + [ + "src/components/SideNavigation.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 73 + ] ], "translation": "Quadros" }, @@ -992,28 +1686,48 @@ "message": "Boards you archive will appear here.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Os quadros que você arquivar aparecerão aqui." }, "ZDo4HN": { "message": "Brainstorming", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 42]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 42 + ] + ], "translation": "Brainstorming" }, "vXemf6": { "message": "Bug", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 24]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ] + ], "translation": "Bug" }, "/asTmx": { "message": "Bug Report", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 64]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 64 + ] + ], "translation": "Relatório de bug" }, "t6FvJH": { @@ -1021,8 +1735,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 146], - ["src/views/settings/components/RolePermissions.tsx", 35] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 146 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 35 + ] ], "translation": "Pode adicionar comentários" }, @@ -1031,8 +1751,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 131], - ["src/views/settings/components/RolePermissions.tsx", 20] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 131 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 20 + ] ], "translation": "Pode criar quadros" }, @@ -1041,8 +1767,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 141], - ["src/views/settings/components/RolePermissions.tsx", 30] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 141 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 30 + ] ], "translation": "Pode criar cartões" }, @@ -1051,8 +1783,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 136], - ["src/views/settings/components/RolePermissions.tsx", 25] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 136 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 25 + ] ], "translation": "Pode criar listas" }, @@ -1061,8 +1799,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 133], - ["src/views/settings/components/RolePermissions.tsx", 22] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 133 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 22 + ] ], "translation": "Pode excluir quadros" }, @@ -1071,8 +1815,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 143], - ["src/views/settings/components/RolePermissions.tsx", 32] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 143 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 32 + ] ], "translation": "Pode excluir cartões" }, @@ -1081,8 +1831,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 148], - ["src/views/settings/components/RolePermissions.tsx", 37] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 148 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 37 + ] ], "translation": "Pode excluir comentários" }, @@ -1091,8 +1847,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 138], - ["src/views/settings/components/RolePermissions.tsx", 27] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 138 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 27 + ] ], "translation": "Pode excluir listas" }, @@ -1101,8 +1863,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 127], - ["src/views/settings/components/RolePermissions.tsx", 16] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 127 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 16 + ] ], "translation": "Pode excluir workspace" }, @@ -1111,8 +1879,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 132], - ["src/views/settings/components/RolePermissions.tsx", 21] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 132 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 21 + ] ], "translation": "Pode editar quadros" }, @@ -1121,8 +1895,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 142], - ["src/views/settings/components/RolePermissions.tsx", 31] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 142 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 31 + ] ], "translation": "Pode editar cartões" }, @@ -1131,8 +1911,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 147], - ["src/views/settings/components/RolePermissions.tsx", 36] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 147 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 36 + ] ], "translation": "Pode editar comentários" }, @@ -1141,8 +1927,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 137], - ["src/views/settings/components/RolePermissions.tsx", 26] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 137 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 26 + ] ], "translation": "Pode editar listas" }, @@ -1151,8 +1943,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 152], - ["src/views/settings/components/RolePermissions.tsx", 41] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 152 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 41 + ] ], "translation": "Pode editar funções e permissões de membros" }, @@ -1161,8 +1959,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 126], - ["src/views/settings/components/RolePermissions.tsx", 15] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 126 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 15 + ] ], "translation": "Pode editar workspace" }, @@ -1171,8 +1975,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 151], - ["src/views/settings/components/RolePermissions.tsx", 40] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 151 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 40 + ] ], "translation": "Pode convidar membros" }, @@ -1181,8 +1991,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 128], - ["src/views/settings/components/RolePermissions.tsx", 17] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 128 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 17 + ] ], "translation": "Pode gerenciar configurações do workspace" }, @@ -1191,8 +2007,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 153], - ["src/views/settings/components/RolePermissions.tsx", 42] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 153 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 42 + ] ], "translation": "Pode remover membros" }, @@ -1201,8 +2023,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 130], - ["src/views/settings/components/RolePermissions.tsx", 19] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 130 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 19 + ] ], "translation": "Pode visualizar quadros" }, @@ -1211,8 +2039,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 140], - ["src/views/settings/components/RolePermissions.tsx", 29] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 140 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 29 + ] ], "translation": "Pode visualizar cartões" }, @@ -1221,8 +2055,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 145], - ["src/views/settings/components/RolePermissions.tsx", 34] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 145 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 34 + ] ], "translation": "Pode visualizar comentários" }, @@ -1231,8 +2071,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 135], - ["src/views/settings/components/RolePermissions.tsx", 24] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 135 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 24 + ] ], "translation": "Pode visualizar listas" }, @@ -1241,8 +2087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 150], - ["src/views/settings/components/RolePermissions.tsx", 39] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 150 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 39 + ] ], "translation": "Pode visualizar membros" }, @@ -1251,8 +2103,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 125], - ["src/views/settings/components/RolePermissions.tsx", 14] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 125 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 14 + ] ], "translation": "Pode visualizar workspace" }, @@ -1261,26 +2119,74 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 49], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 176], - ["src/views/board/components/CardContextDuplicateModal.tsx", 267], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 44], - ["src/views/card/components/Comment.tsx", 195], - ["src/views/card/components/DeleteCardConfirmation.tsx", 86], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 64], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 77], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 55], - ["src/views/onboarding/select-plan/index.tsx", 209], - ["src/views/settings/components/Avatar.tsx", 287], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 168], + [ + "src/components/DeleteLabelConfirmation.tsx", + 49 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 176 + ], + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 267 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 44 + ], + [ + "src/views/card/components/Comment.tsx", + 195 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 86 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 64 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 77 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 55 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 209 + ], + [ + "src/views/settings/components/Avatar.tsx", + 287 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 168 + ], [ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 40 ], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 88], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 108] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 88 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 66 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 98 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 108 + ] ], "translation": "Cancelar" }, @@ -1288,7 +2194,12 @@ "message": "Card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 317]], + "origin": [ + [ + "src/views/card/index.tsx", + 364 + ] + ], "translation": "Cartão" }, "sU2uWc": { @@ -1296,7 +2207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 67] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 67 + ] ], "translation": "Cartão duplicado" }, @@ -1305,8 +2219,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 363], - ["src/views/card/index.tsx", 400] + [ + "src/views/card/index.tsx", + 410 + ], + [ + "src/views/card/index.tsx", + 447 + ] ], "translation": "Cartão não encontrado" }, @@ -1314,17 +2234,43 @@ "message": "Card title", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 321]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 321 + ] + ], "translation": "Título do cartão" }, + "4630Pc": { + "message": "Card updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 53 + ] + ], + "translation": "" + }, "rQXTmd": { "message": "Card URL copied to clipboard", "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 308], - ["src/views/card/components/Dropdown.tsx", 44], - ["src/views/public/board/CardModal.tsx", 38] + [ + "src/views/board/index.tsx", + 312 + ], + [ + "src/views/card/components/Dropdown.tsx", + 44 + ], + [ + "src/views/public/board/CardModal.tsx", + 38 + ] ], "translation": "URL do cartão copiada para a área de transferência" }, @@ -1333,10 +2279,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 88], - ["src/views/settings/AccountSettings.tsx", 98], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 109], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 178] + [ + "src/views/settings/AccountSettings.tsx", + 88 + ], + [ + "src/views/settings/AccountSettings.tsx", + 98 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 109 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 178 + ] ], "translation": "Alterar senha" }, @@ -1344,25 +2302,43 @@ "message": "Change the application font size.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 63]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 63 + ] + ], "translation": "Altere o tamanho da fonte do aplicativo." }, "yD3ZSw": { "message": "Change your language preferences.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 53 + ] + ], "translation": "Altere suas preferências de idioma." }, "gZxH/p": { "message": "changed the due date to <0>{formattedDate}", "placeholders": { - "formattedDate": ["formattedDate"] + "formattedDate": [ + "formattedDate" + ] }, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 303], - ["src/views/card/components/ActivityList.tsx", 317] + [ + "src/views/card/components/ActivityList.tsx", + 303 + ], + [ + "src/views/card/components/ActivityList.tsx", + 317 + ] ], "translation": "alterou a data de vencimento para <0>{formattedDate}" }, @@ -1370,7 +2346,12 @@ "message": "Check out some of our favorite open source projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 61]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 61 + ] + ], "translation": "Confira alguns dos nossos projetos open source favoritos." }, "5IXWmO": { @@ -1378,8 +2359,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 43], - ["src/views/auth/signup/index.tsx", 71] + [ + "src/views/auth/login/index.tsx", + 43 + ], + [ + "src/views/auth/signup/index.tsx", + 71 + ] ], "translation": "Verifique sua caixa de entrada" }, @@ -1387,7 +2374,12 @@ "message": "Checklist name", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 119]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 119 + ] + ], "translation": "Nome da checklist" }, "EH8IL3": { @@ -1395,8 +2387,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 108], - ["src/views/pricing/components/PricingTiers.tsx", 39] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 108 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 39 + ] ], "translation": "Checklists" }, @@ -1404,7 +2402,12 @@ "message": "Choose a plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 122]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 122 + ] + ], "translation": "Escolha um plano" }, "VHS0aJ": { @@ -1423,7 +2426,12 @@ "message": "Clear any custom member permissions so that all members only inherit permissions from their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 67]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 67 + ] + ], "translation": "Limpe quaisquer permissões personalizadas de membros para que todos os membros herdem apenas as permissões padrão de suas funções." }, "jL82rC": { @@ -1435,7 +2443,10 @@ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 48 ], - ["src/views/settings/PermissionsSettings.tsx", 80] + [ + "src/views/settings/PermissionsSettings.tsx", + 80 + ] ], "translation": "Limpar permissões personalizadas" }, @@ -1443,18 +2454,31 @@ "message": "Clear filters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 227]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 227 + ] + ], "translation": "Limpar filtros" }, "RRn9jf": { "message": "Click on the link we've sent to {magicLinkRecipient} to sign in.", "placeholders": { - "magicLinkRecipient": ["magicLinkRecipient"] + "magicLinkRecipient": [ + "magicLinkRecipient" + ] }, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 48], - ["src/views/auth/signup/index.tsx", 76] + [ + "src/views/auth/login/index.tsx", + 48 + ], + [ + "src/views/auth/signup/index.tsx", + 76 + ] ], "translation": "Clique no link que enviamos para {magicLinkRecipient} para fazer login." }, @@ -1463,9 +2487,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 354], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 172], - ["src/views/settings/components/NewApiKeyModal.tsx", 136] + [ + "src/views/card/index.tsx", + 401 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 172 + ], + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 136 + ] ], "translation": "Fechar" }, @@ -1473,14 +2506,24 @@ "message": "Code Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Revisão de código" }, "EvArWh": { "message": "Collaborate seamlessly with your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 91 + ] + ], "translation": "Colabore perfeitamente com sua equipe." }, "dtQIWT": { @@ -1488,7 +2531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 309] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 309 + ] ], "translation": "Colaboração" }, @@ -1497,9 +2543,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 317], - ["src/views/home/components/Features.tsx", 67], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 88] + [ + "src/components/NewWorkspaceForm.tsx", + 317 + ], + [ + "src/views/home/components/Features.tsx", + 67 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 88 + ] ], "translation": "Em breve" }, @@ -1508,8 +2563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 105], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 156] + [ + "src/views/home/components/Features.tsx", + 105 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 156 + ] ], "translation": "Comentários" }, @@ -1517,65 +2578,112 @@ "message": "Company", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 95 + ] + ], "translation": "Empresa" }, "bD8I7O": { "message": "Complete", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 94]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 94 + ] + ], "translation": "Concluir" }, "cAgBMh": { "message": "Complete control and ownership:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 70]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 70 + ] + ], "translation": "Controle e propriedade completos:" }, "Lt+ZP3": { "message": "completed a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 137]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 137 + ] + ], "translation": "concluiu um item da checklist" }, "29sSki": { "message": "completed checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 249]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 249 + ] + ], "translation": "concluiu o item da checklist <0>{0}" }, "tOZp9v": { "message": "Configurable user roles and permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 82]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 82 + ] + ], "translation": "Funções de usuário e permissões configuráveis" }, "t0dTPm": { "message": "Configure webhooks to receive notifications when cards are created, updated, moved, or deleted.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 31]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 31 + ] + ], "translation": "Configure webhooks para receber notificações quando cartões forem criados, atualizados, movidos ou excluídos." }, "/f3t6v": { "message": "Configure which actions are allowed for each workspace role. These permissions apply to all members with that role.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 56]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 56 + ] + ], "translation": "Configure quais ações são permitidas para cada função do workspace. Essas permissões se aplicam a todos os membros com essa função." }, "86XI28": { "message": "Confirm your email preferences:", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 81]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 81 + ] + ], "translation": "Confirme suas preferências de e-mail:" }, "479pdJ": { @@ -1583,7 +2691,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 150] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 150 + ] ], "translation": "Confirme sua nova senha" }, @@ -1591,42 +2702,72 @@ "message": "Connect", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Conectar" }, "3jod3l": { "message": "Connect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 212]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 212 + ] + ], "translation": "Conectar GitHub" }, "nk7caK": { "message": "Connect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 162]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 162 + ] + ], "translation": "Conectar Trello" }, "sDLCvT": { "message": "Connect your favorite tools to streamline your workflow.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 122]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 122 + ] + ], "translation": "Conecte suas ferramentas favoritas para otimizar seu fluxo de trabalho." }, "MCIXdZ": { "message": "Connect your GitHub account to import projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 191]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 191 + ] + ], "translation": "Conecte sua conta do GitHub para importar projetos." }, "5eZwRW": { "message": "Connect your Trello account to import boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 149]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 149 + ] + ], "translation": "Conecte sua conta do Trello para importar quadros." }, "jfC/xh": { @@ -1634,8 +2775,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 38], - ["src/views/home/components/Header.tsx", 42] + [ + "src/views/home/components/Footer.tsx", + 38 + ], + [ + "src/views/home/components/Header.tsx", + 42 + ] ], "translation": "Contato" }, @@ -1643,7 +2790,12 @@ "message": "Contact Sales", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 95]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 95 + ] + ], "translation": "Falar com vendas" }, "Bhgd0l": { @@ -1651,9 +2803,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 96], - ["src/views/pricing/components/PricingTiers.tsx", 96] + [ + "src/components/FeedbackModal.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ] ], "translation": "Entre em contato" }, @@ -1661,7 +2822,12 @@ "message": "Content Creation", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 40]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 40 + ] + ], "translation": "Criação de conteúdo" }, "xGVfLh": { @@ -1669,8 +2835,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 212], - ["src/views/onboarding/workspace-details/index.tsx", 291] + [ + "src/views/onboarding/select-plan/index.tsx", + 212 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 291 + ] ], "translation": "Continuar" }, @@ -1678,44 +2850,76 @@ "message": "Continue with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "Continuar com " }, "gkzAEM": { "message": "Continue with {0}", "placeholders": { - "0": ["key === \"oidc\" ? oidcProviderName : provider.name"] + "0": [ + "key === \"oidc\" ? oidcProviderName : provider.name" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 355]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 355 + ] + ], "translation": "Continuar com {0}" }, "va/3u1": { "message": "Control who can view and edit your boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 86 + ] + ], "translation": "Controle quem pode visualizar e editar seus quadros." }, "zQPhSa": { "message": "Convert to link", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 47]], + "origin": [ + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 47 + ] + ], "translation": "Converter em link" }, "5RkSzq": { "message": "Copy board link", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugButton.tsx", 87]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 87 + ] + ], "translation": "Copiar link do quadro" }, "F0YmUY": { "message": "Copy card link", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 58]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 58 + ] + ], "translation": "Copiar link do cartão" }, "0utuU6": { @@ -1723,7 +2927,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 257] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 257 + ] ], "translation": "Copiar checklists" }, @@ -1732,7 +2939,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 221] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 221 + ] ], "translation": "Copiar etiquetas" }, @@ -1740,7 +2950,12 @@ "message": "Copy link to card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 62]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 62 + ] + ], "translation": "Copiar link do cartão" }, "uvH2xS": { @@ -1748,7 +2963,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 239] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 239 + ] ], "translation": "Copiar membros" }, @@ -1757,17 +2975,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 305] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 305 + ] ], "translation": "Recursos principais" }, "b9XOHo": { "message": "Create {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 166]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 166 + ] + ], "translation": "Criar {0}" }, "vgdzLf": { @@ -1775,9 +3003,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 213], - ["src/views/board/components/NewCardForm.tsx", 520], - ["src/views/board/components/NewListForm.tsx", 141] + [ + "src/components/LabelForm.tsx", + 213 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 520 + ], + [ + "src/views/board/components/NewListForm.tsx", + 141 + ] ], "translation": "Criar outro" }, @@ -1785,53 +3022,91 @@ "message": "Create API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 175]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 175 + ] + ], "translation": "Criar chave de API" }, "dsLT3m": { "message": "Create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 530]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 530 + ] + ], "translation": "Criar cartão" }, "d33Usy": { "message": "Create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 135]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 135 + ] + ], "translation": "Criar checklist" }, "zKY5xi": { "message": "Create invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 349]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 349 + ] + ], "translation": "Criar link de convite" }, "QtACvI": { "message": "Create label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Criar etiqueta" }, "XTKtey": { "message": "Create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 153]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 153 + ] + ], "translation": "Criar lista" }, "VKoDQD": { "message": "Create new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], "origin": [ - ["src/views/boards/components/BoardsList.tsx", 80], - ["src/views/boards/index.tsx", 41] + [ + "src/views/boards/components/BoardsList.tsx", + 80 + ], + [ + "src/views/boards/index.tsx", + 41 + ] ], "translation": "Criar novo {0}" }, @@ -1839,7 +3114,12 @@ "message": "Create new key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 30 + ] + ], "translation": "Criar nova chave" }, "0+0/3e": { @@ -1847,8 +3127,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewCardForm.tsx", 417], - ["src/views/card/components/LabelSelector.tsx", 101] + [ + "src/views/board/components/NewCardForm.tsx", + 417 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 101 + ] ], "translation": "Criar nova etiqueta" }, @@ -1857,8 +3143,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 92], - ["src/views/board/index.tsx", 671] + [ + "src/views/board/index.tsx", + 94 + ], + [ + "src/views/board/index.tsx", + 676 + ] ], "translation": "Criar nova lista" }, @@ -1866,14 +3158,24 @@ "message": "Create template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 132]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 132 + ] + ], "translation": "Criar template" }, "SiPp29": { "message": "Create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Criar webhook" }, "FdtSNC": { @@ -1881,8 +3183,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 352], - ["src/components/WorkspaceMenu.tsx", 160] + [ + "src/components/NewWorkspaceForm.tsx", + 352 + ], + [ + "src/components/WorkspaceMenu.tsx", + 160 + ] ], "translation": "Criar workspace" }, @@ -1890,14 +3198,24 @@ "message": "Created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 236]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 236 + ] + ], "translation": "Criado" }, "f8lDFq": { "message": "created the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 124]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 124 + ] + ], "translation": "criou o cartão" }, "J5nbej": { @@ -1905,9 +3223,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Crítico" }, @@ -1915,7 +3242,12 @@ "message": "Crop your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 253]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 253 + ] + ], "translation": "Recortar seu avatar" }, "D3C4Yx": { @@ -1923,7 +3255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 19] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 19 + ] ], "translation": "Senha atual é obrigatória" }, @@ -1931,7 +3266,12 @@ "message": "Custom board templates", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 38 + ] + ], "translation": "Templates de quadro personalizados" }, "A42Dqn": { @@ -1939,8 +3279,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 172], - ["src/views/pricing/components/PricingTiers.tsx", 83] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 172 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 83 + ] ], "translation": "Marca personalizada" }, @@ -1948,28 +3294,48 @@ "message": "Custom domain", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 74]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 74 + ] + ], "translation": "Domínio personalizado" }, "2M84k3": { "message": "Custom permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 64]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 64 + ] + ], "translation": "Permissões personalizadas" }, "UirJfL": { "message": "Custom SLA", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 105]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 105 + ] + ], "translation": "SLA personalizado" }, "u2+JIh": { "message": "Custom URLs require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 283]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 283 + ] + ], "translation": "URLs personalizadas exigem upgrade para um plano Pro" }, "7RpHg/": { @@ -1977,8 +3343,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 100], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 101] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 101 + ] ], "translation": "Nome de usuário personalizado" }, @@ -1986,7 +3358,12 @@ "message": "Custom usernames require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 220]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 220 + ] + ], "translation": "Nomes de usuário personalizados exigem atualização para um plano Pro" }, "j9IZZ0": { @@ -1994,8 +3371,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 307], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 78] + [ + "src/components/NewWorkspaceForm.tsx", + 307 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 78 + ] ], "translation": "URL do workspace personalizada" }, @@ -2003,35 +3386,60 @@ "message": "Custom workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 81]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 81 + ] + ], "translation": "Nome de usuário do workspace personalizado" }, "n+xLOH": { "message": "Customer Support", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 54]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 54 + ] + ], "translation": "Suporte ao cliente" }, "pvnfJD": { "message": "Dark", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 158]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 158 + ] + ], "translation": "Escuro" }, "cp1rsD": { "message": "Deactivate invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 348]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 348 + ] + ], "translation": "Desativar link de convite" }, "bKzM8L": { "message": "Dedicated account manager", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 104]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 104 + ] + ], "translation": "Gerente de conta dedicado" }, "P8Cunr": { @@ -2039,8 +3447,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 98], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 99] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 98 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 99 + ] ], "translation": "Nome de usuário padrão" }, @@ -2049,15 +3463,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 51], - ["src/components/LabelForm.tsx", 228], - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 52], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 47], - ["src/views/card/components/DeleteCardConfirmation.tsx", 92], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 67], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 83], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 73], - ["src/views/settings/components/WebhookList.tsx", 140] + [ + "src/components/DeleteLabelConfirmation.tsx", + 51 + ], + [ + "src/components/LabelForm.tsx", + 228 + ], + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 52 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 47 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 92 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 67 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 83 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 73 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 140 + ] ], "translation": "Excluir" }, @@ -2066,9 +3507,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 70], - ["src/views/settings/AccountSettings.tsx", 80], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 96] + [ + "src/views/settings/AccountSettings.tsx", + 70 + ], + [ + "src/views/settings/AccountSettings.tsx", + 80 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 96 + ] ], "translation": "Excluir conta" }, @@ -2076,7 +3526,12 @@ "message": "Delete board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Excluir quadro" }, "nabda1": { @@ -2084,8 +3539,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMenu.tsx", 74], - ["src/views/card/components/Dropdown.tsx", 76] + [ + "src/views/board/components/CardContextMenu.tsx", + 74 + ], + [ + "src/views/card/components/Dropdown.tsx", + 76 + ] ], "translation": "Excluir cartão" }, @@ -2093,21 +3554,36 @@ "message": "Delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 120]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 120 + ] + ], "translation": "Excluir comentário" }, "lYT7pQ": { "message": "Delete list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 147]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 147 + ] + ], "translation": "Excluir lista" }, "DFjdv0": { "message": "Delete template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Excluir modelo" }, "snMaH4": { @@ -2115,7 +3591,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 46] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 46 + ] ], "translation": "Excluir webhook" }, @@ -2124,9 +3603,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 106], - ["src/views/settings/WorkspaceSettings.tsx", 125], - ["src/views/settings/WorkspaceSettings.tsx", 136] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 106 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 125 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 136 + ] ], "translation": "Excluir workspace" }, @@ -2134,116 +3622,200 @@ "message": "deleted a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 134]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 134 + ] + ], "translation": "excluiu uma checklist" }, "W5r8Qh": { "message": "deleted a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 139]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 139 + ] + ], "translation": "excluiu um item da checklist" }, "BMkVQ3": { "message": "deleted checklist <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 224]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 224 + ] + ], "translation": "excluiu a checklist <0>{0}" }, "CHZ1jC": { "message": "deleted checklist item <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 267]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 267 + ] + ], "translation": "excluiu o item da checklist <0>{0}" }, "f8fH8W": { "message": "Design", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 45]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 45 + ] + ], "translation": "Design" }, "Odv3J6": { "message": "Disconnect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 223]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 223 + ] + ], "translation": "Desconectar GitHub" }, "YBBifR": { "message": "Disconnect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 177]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 177 + ] + ], "translation": "Desconectar Trello" }, "1sRmLC": { "message": "Discuss and collaborate on cards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 106]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 106 + ] + ], "translation": "Discuta e colabore em cartões." }, "pfa8F0": { "message": "Display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 36 + ] + ], "translation": "Nome de exibição" }, "MlyjJu": { "message": "Display name cannot exceed 280 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 22]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 22 + ] + ], "translation": "O nome de exibição não pode exceder 280 caracteres" }, "KFJgmZ": { "message": "Display name must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 19 + ] + ], "translation": "O nome de exibição deve ter pelo menos 3 caracteres" }, "x8GeCD": { "message": "Display name updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 41]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 41 + ] + ], "translation": "Nome de exibição atualizado" }, "evj0lK": { "message": "Do you offer a free plan?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 83]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 83 + ] + ], "translation": "Vocês oferecem um plano gratuito?" }, "jDRt4n": { "message": "Do you want to unsubscribe?", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 78]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 78 + ] + ], "translation": "Você deseja cancelar a assinatura?" }, "JyXBgS": { "message": "docs", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 109]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 109 + ] + ], "translation": "docs" }, "TbjyhA": { "message": "Docs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 20]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 20 + ] + ], "translation": "Docs" }, "TvY/XA": { @@ -2251,12 +3823,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 209], - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36], - ["src/views/home/components/Footer.tsx", 78], - ["src/views/home/components/Header.tsx", 36] + [ + "src/components/UserMenu.tsx", + 209 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ], + [ + "src/views/home/components/Footer.tsx", + 78 + ], + [ + "src/views/home/components/Header.tsx", + 36 + ] ], "translation": "Documentação" }, @@ -2264,7 +3854,12 @@ "message": "Don't have an account? <0><1>Sign up", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 63]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 63 + ] + ], "translation": "Não tem uma conta? <0><1>Cadastre-se" }, "DPfwMq": { @@ -2272,15 +3867,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 36], - ["src/views/board/components/CardContextLabelsModal.tsx", 48], - ["src/views/board/components/CardContextMembersModal.tsx", 68], - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 48], - ["src/views/boards/components/TemplateBoards.tsx", 61] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 36 + ], + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 48 + ], + [ + "src/views/board/components/CardContextMembersModal.tsx", + 68 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 48 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 61 + ] ], "translation": "Concluído" }, @@ -2288,7 +3910,12 @@ "message": "Download failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 142]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 142 + ] + ], "translation": "Falha no download" }, "XicmhT": { @@ -2296,9 +3923,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/Filters.tsx", 171], - ["src/views/board/components/NewCardForm.tsx", 472], - ["src/views/card/index.tsx", 153] + [ + "src/views/board/components/Filters.tsx", + 171 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 472 + ], + [ + "src/views/card/index.tsx", + 155 + ] ], "translation": "Data de vencimento" }, @@ -2306,28 +3942,48 @@ "message": "Due next month", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 132]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 132 + ] + ], "translation": "Vence no próximo mês" }, "iHcdea": { "message": "Due next week", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 127]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 127 + ] + ], "translation": "Vence na próxima semana" }, "1iShX0": { "message": "Due today", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 117]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 117 + ] + ], "translation": "Vence hoje" }, "zxKs+y": { "message": "Due tomorrow", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 122]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 122 + ] + ], "translation": "Vence amanhã" }, "euc6Ns": { @@ -2335,7 +3991,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Duplicar" }, @@ -2344,8 +4003,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 111], - ["src/views/board/components/CardContextMenu.tsx", 68] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 111 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 68 + ] ], "translation": "Duplicar cartão" }, @@ -2354,7 +4019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Duplicando…" }, @@ -2363,8 +4031,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 42], - ["src/views/settings/components/WebhookList.tsx", 132] + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 42 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 132 + ] ], "translation": "Editar" }, @@ -2373,8 +4047,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/BoardDropdown.tsx", 102], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 116] + [ + "src/views/board/components/BoardDropdown.tsx", + 102 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 116 + ] ], "translation": "Editar URL do quadro" }, @@ -2382,14 +4062,24 @@ "message": "Edit comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 111]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 111 + ] + ], "translation": "Editar comentário" }, "dgr4Kq": { "message": "Edit label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Editar etiqueta" }, "TCOMOO": { @@ -2397,8 +4087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 162], - ["src/views/members/index.tsx", 224] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 162 + ], + [ + "src/views/members/index.tsx", + 224 + ] ], "translation": "Editar permissões" }, @@ -2406,35 +4102,60 @@ "message": "Edit webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Editar webhook" }, "klpSmb": { "message": "Edit workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 162]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 162 + ] + ], "translation": "Editar URL do workspace" }, "PRofO0": { "message": "Edit YouTube Video", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 108]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 108 + ] + ], "translation": "Editar vídeo do YouTube" }, "gGx5tM": { "message": "Editing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 44]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 44 + ] + ], "translation": "Editando" }, "b/LfJo": { "message": "email", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "email" }, "O3oNi5": { @@ -2442,8 +4163,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 272], - ["src/views/settings/AccountSettings.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 272 + ], + [ + "src/views/settings/AccountSettings.tsx", + 43 + ] ], "translation": "Email" }, @@ -2452,7 +4179,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 191] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 191 + ] ], "translation": "Notificações por email" }, @@ -2460,14 +4190,24 @@ "message": "Email notifications for mentions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 60]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 60 + ] + ], "translation": "Notificações por email para menções" }, "IqjpYe": { "message": "Email visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 100 + ] + ], "translation": "Visibilidade do email" }, "bFREhu": { @@ -2475,7 +4215,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 200] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 200 + ] ], "translation": "Fim da lista" }, @@ -2483,7 +4226,12 @@ "message": "Engineering", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Engenharia" }, "0+ewPp": { @@ -2491,9 +4239,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Melhoria" }, @@ -2501,14 +4258,24 @@ "message": "Enter a custom title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 131]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 131 + ] + ], "translation": "Insira um título personalizado" }, "rQRXo8": { "message": "Enter new secret to update", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "Digite o novo segredo para atualizar" }, "fR9laE": { @@ -2516,7 +4283,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 122] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 122 + ] ], "translation": "Insira sua senha atual" }, @@ -2525,7 +4295,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 111] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 111 + ] ], "translation": "Insira sua senha atual e escolha uma nova senha segura." }, @@ -2533,14 +4306,24 @@ "message": "Enter your email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 402]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 402 + ] + ], "translation": "Insira seu endereço de email" }, "n9V+ps": { "message": "Enter your name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 390]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 390 + ] + ], "translation": "Insira seu nome" }, "0StR7t": { @@ -2548,7 +4331,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 136] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 136 + ] ], "translation": "Insira sua nova senha" }, @@ -2556,7 +4342,12 @@ "message": "Enter your password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 416]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 416 + ] + ], "translation": "Insira sua senha" }, "GpB8YV": { @@ -2564,8 +4355,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 334], - ["src/views/pricing/components/PricingTiers.tsx", 92] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 334 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 92 + ] ], "translation": "Enterprise" }, @@ -2574,9 +4371,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 77], - ["src/views/boards/components/NewBoardForm.tsx", 92], - ["src/views/members/components/InviteMemberForm.tsx", 215] + [ + "src/views/boards/components/NewBoardForm.tsx", + 77 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 92 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 215 + ] ], "translation": "Erro" }, @@ -2585,7 +4391,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 89] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 89 + ] ], "translation": "Erro ao alterar senha" }, @@ -2593,21 +4402,36 @@ "message": "Error connecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 106]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 106 + ] + ], "translation": "Erro ao conectar GitHub" }, "cji2nM": { "message": "Error creating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 128]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 128 + ] + ], "translation": "Erro ao criar link de convite" }, "USVCGU": { "message": "Error deactivating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 144]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 144 + ] + ], "translation": "Erro ao desativar link de convite" }, "bqAQaT": { @@ -2615,7 +4439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 39] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 39 + ] ], "translation": "Erro ao excluir conta" }, @@ -2623,7 +4450,12 @@ "message": "Error deleting label", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 25]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 25 + ] + ], "translation": "Erro ao excluir etiqueta" }, "9s9O5h": { @@ -2631,7 +4463,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 45] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 45 + ] ], "translation": "Erro ao excluir workspace" }, @@ -2639,14 +4474,24 @@ "message": "Error disconnecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 129]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 129 + ] + ], "translation": "Erro ao desconectar GitHub" }, "lKAvEd": { "message": "Error disconnecting Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 86 + ] + ], "translation": "Erro ao desconectar Trello" }, "rarRW/": { @@ -2654,8 +4499,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 97], - ["src/views/members/components/InviteMemberForm.tsx", 103] + [ + "src/views/members/components/InviteMemberForm.tsx", + 97 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 103 + ] ], "translation": "Erro ao convidar membro" }, @@ -2663,7 +4514,12 @@ "message": "Error updating display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 54]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 54 + ] + ], "translation": "Erro ao atualizar nome de exibição" }, "CkVV1t": { @@ -2671,7 +4527,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 63 + ] ], "translation": "Erro ao atualizar descrição do workspace" }, @@ -2680,7 +4539,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 58] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 58 + ] ], "translation": "Erro ao atualizar nome do workspace" }, @@ -2689,7 +4551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 75] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 75 + ] ], "translation": "Erro ao atualizar URL do workspace" }, @@ -2698,8 +4563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 240 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 43 + ] ], "translation": "Erro ao fazer upgrade da assinatura" }, @@ -2707,7 +4578,12 @@ "message": "Error upgrading to Pro", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 146]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 146 + ] + ], "translation": "Erro ao fazer upgrade para Pro", "obsolete": true }, @@ -2716,8 +4592,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/Avatar.tsx", 69], - ["src/views/settings/components/Avatar.tsx", 199] + [ + "src/views/settings/components/Avatar.tsx", + 69 + ], + [ + "src/views/settings/components/Avatar.tsx", + 199 + ] ], "translation": "Erro ao fazer upload da imagem de perfil" }, @@ -2726,8 +4608,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 245], - ["src/views/settings/components/WebhookList.tsx", 224] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 245 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 224 + ] ], "translation": "Eventos" }, @@ -2735,42 +4623,72 @@ "message": "Everything in the free plan, plus:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 52 + ] + ], "translation": "Tudo do plano gratuito, mais:" }, "ANyn0x": { "message": "Everything you need, free forever. Unlimited boards, unlimited lists, unlimited cards. Upgrade any time.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 33]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 33 + ] + ], "translation": "Tudo que você precisa, grátis para sempre. Quadros ilimitados, listas ilimitadas, cartões ilimitados. Faça upgrade a qualquer momento." }, "t+R8+P": { "message": "Execution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 91]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 91 + ] + ], "translation": "Execução" }, "GwNIE2": { "message": "Extended Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 34]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 34 + ] + ], "translation": "Roadmap estendido" }, "HYV6Lq": { "message": "Failed to accept invitation. Please try again later, or contact customer support.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 41]], + "origin": [ + [ + "src/views/invite/index.tsx", + 41 + ] + ], "translation": "Falha ao aceitar convite. Por favor, tente novamente mais tarde ou entre em contato com o suporte." }, "lXvXNI": { "message": "Failed to copy invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 216]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 216 + ] + ], "translation": "Falha ao copiar link de convite" }, "53QYh8": { @@ -2778,8 +4696,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 78], - ["src/views/boards/components/NewBoardForm.tsx", 93] + [ + "src/views/boards/components/NewBoardForm.tsx", + 78 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 93 + ] ], "translation": "Falha ao criar quadro" }, @@ -2787,7 +4711,12 @@ "message": "Failed to create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 109]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 109 + ] + ], "translation": "Falha ao criar webhook" }, "9YPBHv": { @@ -2795,7 +4724,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 28 + ] ], "translation": "Falha ao excluir webhook" }, @@ -2803,16 +4735,28 @@ "message": "Failed to fetch video information", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 82]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 82 + ] + ], "translation": "Falha ao buscar informações do vídeo" }, "YtUfwW": { "message": "Failed to login with {0}. Please try again.", "placeholders": { - "0": ["provider.at(0)?.toUpperCase() + provider.slice(1)"] + "0": [ + "provider.at(0)?.toUpperCase() + provider.slice(1)" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 291]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 291 + ] + ], "translation": "Falha ao fazer login com {0}. Por favor, tente novamente." }, "5ntVtp": { @@ -2820,8 +4764,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 143], - ["src/views/settings/components/WebhookList.tsx", 184] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 143 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 184 + ] ], "translation": "Falha ao testar webhook" }, @@ -2829,21 +4779,36 @@ "message": "Failed to update webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 123]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 123 + ] + ], "translation": "Falha ao atualizar webhook" }, "ZL1A+p": { "message": "Failed to upload attachment. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 52]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 52 + ] + ], "translation": "Falha ao fazer upload do anexo. Por favor, tente novamente." }, "/lDBHm": { "message": "FAQ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 41 + ] + ], "translation": "FAQ" }, "aJ4pMe": { @@ -2851,8 +4816,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Faqs.tsx", 143], - ["src/views/home/components/Footer.tsx", 52] + [ + "src/views/home/components/Faqs.tsx", + 143 + ], + [ + "src/views/home/components/Footer.tsx", + 52 + ] ], "translation": "FAQs" }, @@ -2861,9 +4832,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Funcionalidade" }, @@ -2871,7 +4851,12 @@ "message": "Feature Request", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 65]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 65 + ] + ], "translation": "Solicitação de funcionalidade" }, "PpZkda": { @@ -2879,10 +4864,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 132], - ["src/views/home/components/Footer.tsx", 50], - ["src/views/home/components/Header.tsx", 17], - ["src/views/home/components/Header.tsx", 33] + [ + "src/views/home/components/Features.tsx", + 132 + ], + [ + "src/views/home/components/Footer.tsx", + 50 + ], + [ + "src/views/home/components/Header.tsx", + 17 + ], + [ + "src/views/home/components/Header.tsx", + 33 + ] ], "translation": "Funcionalidades" }, @@ -2891,8 +4888,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 59], - ["src/components/UserMenu.tsx", 217] + [ + "src/components/FeedbackModal.tsx", + 59 + ], + [ + "src/components/UserMenu.tsx", + 217 + ] ], "translation": "Feedback" }, @@ -2900,42 +4903,72 @@ "message": "Feedback sent", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 33]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 33 + ] + ], "translation": "Feedback enviado" }, "F6m23G": { "message": "File uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 89]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 89 + ] + ], "translation": "Upload de arquivos" }, "o7J4JM": { "message": "Filter", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 221]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 221 + ] + ], "translation": "Filtrar" }, "l31EoQ": { "message": "Find answers to common questions about Kan. Can't find what you're looking for? Feel free to <0>contact us.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 150]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 150 + ] + ], "translation": "Encontre respostas para perguntas comuns sobre o Kan. Não encontrou o que procura? Sinta-se à vontade para <0>entrar em contato." }, "q3il6U": { "message": "Font size", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 60]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 60 + ] + ], "translation": "Tamanho da fonte" }, "+3TYXa": { "message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 41 + ] + ], "translation": "Para sustentabilidade a longo prazo, reconhecemos que todos os bons projetos de código aberto precisam de uma fonte de receita. A nossa vem da oferta paga na nuvem para espaços de trabalho com múltiplos usuários e para slugs de espaço de trabalho personalizados. Não há obrigação de usá-la, e você pode hospedar o software em sua própria infraestrutura gratuitamente." }, "2POOFK": { @@ -2943,12 +4976,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 77], - ["src/views/onboarding/select-plan/index.tsx", 78], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 331], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/PricingTiers.tsx", 26] + [ + "src/views/onboarding/select-plan/index.tsx", + 77 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 78 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 331 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 26 + ] ], "translation": "Grátis" }, @@ -2956,7 +5007,12 @@ "message": "Free for everyone", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 31]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 31 + ] + ], "translation": "Grátis para todos" }, "W/nQk1": { @@ -2964,8 +5020,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 333], - ["src/views/members/index.tsx", 293] + [ + "src/views/members/components/InviteMemberForm.tsx", + 333 + ], + [ + "src/views/members/index.tsx", + 293 + ] ], "translation": "Plano gratuito" }, @@ -2973,7 +5035,12 @@ "message": "Free, forever", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 34]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 34 + ] + ], "translation": "Grátis, para sempre" }, "6uBU1F": { @@ -2981,9 +5048,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 239], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 240], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 241] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 239 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 240 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 241 + ] ], "translation": "Acesso completo à API" }, @@ -2991,21 +5067,36 @@ "message": "Full-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Tempo integral" }, "rmN315": { "message": "Fun", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Diversão" }, "Weq9zb": { "message": "General", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 54]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 54 + ] + ], "translation": "Geral" }, "ZDIydz": { @@ -3013,12 +5104,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 71], - ["src/views/home/components/Cta.tsx", 61], - ["src/views/home/components/Header.tsx", 106], - ["src/views/pricing/components/PricingTiers.tsx", 29], - ["src/views/pricing/components/PricingTiers.tsx", 50], - ["src/views/pricing/components/PricingTiers.tsx", 73] + [ + "src/views/auth/signup/index.tsx", + 71 + ], + [ + "src/views/home/components/Cta.tsx", + 61 + ], + [ + "src/views/home/components/Header.tsx", + 106 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 29 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 50 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 73 + ] ], "translation": "Começar" }, @@ -3027,53 +5136,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 31], - ["src/views/pricing/components/Pricing.tsx", 49] + [ + "src/views/pricing/components/Pricing.tsx", + 31 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 49 + ] ], "translation": "Começar" }, "6FsGbN": { "message": "Get started by creating a new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Comece criando um novo {0}" }, "zC8Whw": { "message": "Get started by creating a new list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 656]], + "origin": [ + [ + "src/views/board/index.tsx", + 661 + ] + ], "translation": "Comece criando uma nova lista" }, "oW13KZ": { "message": "Get started for free today", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 54]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 54 + ] + ], "translation": "Comece gratuitamente hoje" }, "+OhFss": { "message": "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 92]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 92 + ] + ], "translation": "Comece gratuitamente, sem limites de uso. Para colaboração, faça upgrade para um plano que se ajuste ao tamanho da sua equipe." }, "rD6UIt": { "message": "Get started on Cloud", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 75]], + "origin": [ + [ + "src/views/home/index.tsx", + 75 + ] + ], "translation": "Começar na nuvem" }, "7hktsm": { "message": "Getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 25 + ] + ], "translation": "Primeiros passos" }, "RkXlPZ": { @@ -3081,8 +5228,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 37], - ["src/views/settings/IntegrationsSettings.tsx", 186] + [ + "src/views/home/components/Footer.tsx", + 37 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 186 + ] ], "translation": "GitHub" }, @@ -3090,21 +5243,36 @@ "message": "GitHub connected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 99]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 99 + ] + ], "translation": "GitHub conectado" }, "/bBVaD": { "message": "GitHub disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 122]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 122 + ] + ], "translation": "GitHub desconectado" }, "7eMo+U": { "message": "Go Home", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 113]], + "origin": [ + [ + "src/views/invite/index.tsx", + 113 + ] + ], "translation": "Ir para a página inicial" }, "UveK6V": { @@ -3112,8 +5280,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Header.tsx", 100], - ["src/views/invite/index.tsx", 144] + [ + "src/views/home/components/Header.tsx", + 100 + ], + [ + "src/views/invite/index.tsx", + 144 + ] ], "translation": "Ir para o app" }, @@ -3122,8 +5296,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 107], - ["src/pages/404.tsx", 44] + [ + "src/components/SideNavigation.tsx", + 108 + ], + [ + "src/pages/404.tsx", + 44 + ] ], "translation": "Ir para quadros" }, @@ -3131,35 +5311,60 @@ "message": "Go to homepage", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 38]], + "origin": [ + [ + "src/pages/404.tsx", + 38 + ] + ], "translation": "Ir para a página inicial" }, "KAsRdK": { "message": "Go to members", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 131]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 132 + ] + ], "translation": "Ir para membros" }, "1WuwiM": { "message": "Go to settings", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 143]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 144 + ] + ], "translation": "Ir para configurações" }, "csFbe+": { "message": "Go to templates", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 119]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 120 + ] + ], "translation": "Ir para modelos" }, "SUvm1Y": { "message": "Good for individuals starting out who just need the essentials.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 79]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 79 + ] + ], "translation": "Bom para indivíduos começando que precisam apenas do essencial." }, "cdyS7J": { @@ -3167,9 +5372,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 257], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 258], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 259] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 257 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 258 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 259 + ] ], "translation": "Google SSO" }, @@ -3178,7 +5392,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 260] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 260 + ] ], "translation": "Google SSO + SAML" }, @@ -3186,77 +5403,132 @@ "message": "Guest", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 203]], + "origin": [ + [ + "src/views/members/index.tsx", + 203 + ] + ], "translation": "Convidado" }, "CB/NpV": { "message": "High Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Alta prioridade" }, "XXbgHS": { "message": "Hired", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 80]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 80 + ] + ], "translation": "Contratado" }, "SRvxId": { "message": "HMAC secret for signature verification", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "Segredo HMAC para verificação de assinatura" }, "LrcnbT": { "message": "Host Kan on your own infrastructure. Ideal for organisations that need complete control over their data.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 69]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 69 + ] + ], "translation": "Hospede o Kan em sua própria infraestrutura. Ideal para organizações que precisam de controle total sobre seus dados." }, "WI4eGo": { "message": "How do I get a custom URL?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 64]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 64 + ] + ], "translation": "Como obtenho uma URL personalizada?" }, "yV7o5I": { "message": "How do I import my Trello boards?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 46]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 46 + ] + ], "translation": "Como importo meus quadros do Trello?" }, "nol/Fb": { "message": "How do I invite team members?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 108]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 108 + ] + ], "translation": "Como convido membros da equipe?" }, "KuSt9W": { "message": "How do I self-host?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 124]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 124 + ] + ], "translation": "Como faço auto-hospedagem?" }, "UeDFpo": { "message": "How is the project funded?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 38]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 38 + ] + ], "translation": "Como o projeto é financiado?" }, "6S8zjx": { "message": "https://www.youtube.com/watch?v=...", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 151]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 151 + ] + ], "translation": "https://www.youtube.com/watch?v=..." }, "2liqDZ": { @@ -3264,7 +5536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 82] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 82 + ] ], "translation": "Reconheço que todos os dados da minha conta serão permanentemente excluídos e desejo prosseguir." }, @@ -3273,7 +5548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 92] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 92 + ] ], "translation": "Reconheço que todos os dados do workspace serão permanentemente excluídos e desejo prosseguir." }, @@ -3281,21 +5559,36 @@ "message": "Ideas", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 88]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 88 + ] + ], "translation": "Ideias" }, "F/vB2g": { "message": "Ideas to improve this page...", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 75]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 75 + ] + ], "translation": "Ideias para melhorar esta página..." }, "l3s5ri": { "message": "Import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 73]], + "origin": [ + [ + "src/views/boards/index.tsx", + 73 + ] + ], "translation": "Importar" }, "2MPcep": { @@ -3303,8 +5596,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 229], - ["src/views/boards/components/ImportBoardsForm.tsx", 381] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 229 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 381 + ] ], "translation": "Importação concluída" }, @@ -3313,8 +5612,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 242], - ["src/views/boards/components/ImportBoardsForm.tsx", 394] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 242 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 394 + ] ], "translation": "Falha na importação" }, @@ -3322,28 +5627,48 @@ "message": "Import your Trello boards and hit the ground running.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 96]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 96 + ] + ], "translation": "Importe seus quadros do Trello e comece a trabalhar imediatamente." }, "c/IAuR": { "message": "Important", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Importante" }, "xMn+V9": { "message": "Importing from Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 27]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 27 + ] + ], "translation": "Importando do Trello" }, "g2xBxu": { "message": "Importing your Trello boards into Kan is easy. You can follow our step-by-step guide <0>here.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 49]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 49 + ] + ], "translation": "Importar seus quadros do Trello para o Kan é fácil. Você pode seguir nosso guia passo a passo <0>aqui." }, "02i3WU": { @@ -3351,7 +5676,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 313] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 313 + ] ], "translation": "Importações" }, @@ -3359,7 +5687,12 @@ "message": "in", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 167]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 167 + ] + ], "translation": "em" }, "WbTDwg": { @@ -3367,11 +5700,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 58] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 58 + ] ], "translation": "Em andamento" }, @@ -3379,14 +5727,24 @@ "message": "Inactive", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 106]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] + ], "translation": "Inativo" }, "6mbe4b": { "message": "Individuals", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 28]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 28 + ] + ], "translation": "Indivíduos" }, "nbfdhU": { @@ -3394,8 +5752,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 77], - ["src/views/home/components/Features.tsx", 121] + [ + "src/components/SettingsLayout.tsx", + 77 + ], + [ + "src/views/home/components/Features.tsx", + 121 + ] ], "translation": "Integrações" }, @@ -3404,7 +5768,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 140] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 140 + ] ], "translation": "Busca inteligente" }, @@ -3412,42 +5779,72 @@ "message": "Interviewing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 77]], - "translation": "Entrevistando" - }, - "XILg0L": { + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 77 + ] + ], + "translation": "Entrevistando" + }, + "XILg0L": { "message": "Invalid email address", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 51]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 51 + ] + ], "translation": "Endereço de e-mail inválido" }, "odFCYX": { "message": "Invalid invitation", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 105]], + "origin": [ + [ + "src/views/invite/index.tsx", + 105 + ] + ], "translation": "Convite inválido" }, "MFKlMB": { "message": "Invite", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 306]], + "origin": [ + [ + "src/views/members/index.tsx", + 306 + ] + ], "translation": "Convidar" }, "KLJ4eD": { "message": "Invite link copied", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 209]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 209 + ] + ], "translation": "Link de convite copiado" }, "mZGPxt": { "message": "Invite link copied to clipboard", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 210]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 210 + ] + ], "translation": "Link de convite copiado para a área de transferência" }, "D9ROdV": { @@ -3455,8 +5852,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 207], - ["src/views/pricing/components/PricingTiers.tsx", 58] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 207 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 58 + ] ], "translation": "Links de convite" }, @@ -3464,7 +5867,12 @@ "message": "Invite links require a Team or Pro subscription. Please upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 123]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 123 + ] + ], "translation": "Links de convite exigem uma assinatura Team ou Pro. Faça upgrade do seu workspace." }, "+djOzj": { @@ -3472,8 +5880,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 115], - ["src/views/members/components/InviteMemberForm.tsx", 367] + [ + "src/views/card/components/MemberSelector.tsx", + 115 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 367 + ] ], "translation": "Convidar membro" }, @@ -3481,7 +5895,12 @@ "message": "Inviting members requires a Team Plan. You'll be redirected to upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 336]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 336 + ] + ], "translation": "Convidar membros requer um plano Team. Você será redirecionado para fazer upgrade do seu workspace." }, "c9AJhn": { @@ -3489,8 +5908,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/invite/index.tsx", 79], - ["src/views/invite/index.tsx", 129] + [ + "src/views/invite/index.tsx", + 79 + ], + [ + "src/views/invite/index.tsx", + 129 + ] ], "translation": "Entrar no workspace" }, @@ -3498,28 +5923,48 @@ "message": "Join workspace | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 91]], + "origin": [ + [ + "src/views/invite/index.tsx", + 91 + ] + ], "translation": "Entrar no workspace | kan.bn" }, "wM8xd8": { "message": "Junior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Júnior" }, "aWDhU5": { "message": "Kanban is better with a team. Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 51]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 51 + ] + ], "translation": "Kanban é melhor com uma equipe. Perfeito para equipes pequenas e em crescimento que buscam colaborar." }, "Xjj/kS": { "message": "Kanban reimagined", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 136]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 136 + ] + ], "translation": "Kanban reimaginado" }, "JbXXUW": { @@ -3527,8 +5972,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 57], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 67] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 57 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 67 + ] ], "translation": "Tenha em mente que esta ação é irreversível." }, @@ -3536,7 +5987,12 @@ "message": "Keyboard Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 321]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 321 + ] + ], "translation": "Atalhos de teclado" }, "h8DugX": { @@ -3544,10 +6000,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextLabelsModal.tsx", 31], - ["src/views/board/components/Filters.tsx", 155], - ["src/views/board/components/NewCardForm.tsx", 421], - ["src/views/card/index.tsx", 133] + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 31 + ], + [ + "src/views/board/components/Filters.tsx", + 155 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 421 + ], + [ + "src/views/card/index.tsx", + 135 + ] ], "translation": "Etiquetas" }, @@ -3556,7 +6024,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 124] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 124 + ] ], "translation": "Etiquetas e filtros" }, @@ -3564,21 +6035,36 @@ "message": "Labels & Filters", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 100]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 100 + ] + ], "translation": "Etiquetas e filtros" }, "vXIe7J": { "message": "Language", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 50]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 50 + ] + ], "translation": "Idioma" }, "k7rCa/": { "message": "Large", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 9]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 9 + ] + ], "translation": "Grande" }, "8Is1ih": { @@ -3586,9 +6072,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 300], - ["src/views/pricing/components/PricingTiers.tsx", 159], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 71] + [ + "src/components/NewWorkspaceForm.tsx", + 300 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 159 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 71 + ] ], "translation": "Oferta de lançamento" }, @@ -3596,49 +6091,84 @@ "message": "Launch offer: Get unlimited members with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 276]], + "origin": [ + [ + "src/views/members/index.tsx", + 276 + ] + ], "translation": "Oferta de lançamento: membros ilimitados com Pro" }, "sDuhfK": { "message": "Launch offer: unlimited seats for just $29/month with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 98 + ] + ], "translation": "Oferta de lançamento: assentos ilimitados por apenas $29/mês com Pro" }, "zwWKhA": { "message": "Learn more", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 110]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 110 + ] + ], "translation": "Saiba mais" }, "wqxglO": { "message": "Learning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Aprendizado" }, "vifyyw": { "message": "Legal", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 131]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 131 + ] + ], "translation": "Jurídico" }, "iQmbPb": { "message": "License", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 45]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 45 + ] + ], "translation": "Licença" }, "1njn7W": { "message": "Light", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 172]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 172 + ] + ], "translation": "Claro" }, "TCt/8K": { @@ -3646,7 +6176,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 238] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 238 + ] ], "translation": "Acesso limitado à API" }, @@ -3655,11 +6188,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 80], - ["src/views/board/index.tsx", 306], - ["src/views/card/components/Dropdown.tsx", 42], - ["src/views/public/board/CardModal.tsx", 36], - ["src/views/public/board/index.tsx", 77] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 80 + ], + [ + "src/views/board/index.tsx", + 310 + ], + [ + "src/views/card/components/Dropdown.tsx", + 42 + ], + [ + "src/views/public/board/CardModal.tsx", + 36 + ], + [ + "src/views/public/board/index.tsx", + 77 + ] ], "translation": "Link copiado" }, @@ -3668,8 +6216,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 117], - ["src/views/card/index.tsx", 124] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 117 + ], + [ + "src/views/card/index.tsx", + 126 + ] ], "translation": "Lista" }, @@ -3677,21 +6231,36 @@ "message": "List name", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 129]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 129 + ] + ], "translation": "Nome da lista" }, "h16FyT": { "message": "Lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 163]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 163 + ] + ], "translation": "Listas" }, "1rVAfU": { "message": "Load more activities", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Carregar mais atividades" }, "0qyZ4b": { @@ -3699,7 +6268,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 180] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 180 + ] ], "translation": "Carregando permissões..." }, @@ -3707,56 +6279,96 @@ "message": "Loading...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Carregando..." }, "N/bcWA": { "message": "Login | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 33]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 33 + ] + ], "translation": "Login | kan.bn" }, "nOhz3x": { "message": "Logout", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 227]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 227 + ] + ], "translation": "Sair" }, "vuxdLS": { "message": "Long-term", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Longo prazo" }, "RHZu7R": { "message": "Loved by teams worldwide", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 236]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 236 + ] + ], "translation": "Amado por equipes no mundo todo" }, "O9jVbx": { "message": "Low Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Prioridade baixa" }, "JnWJXY": { "message": "magic link", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "magic link" }, "DbZgsJ": { "message": "Make template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 91]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 91 + ] + ], "translation": "Criar modelo" }, "hB02vO": { @@ -3764,46 +6376,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMembersModal.tsx", 51], - ["src/views/board/components/CardContextMenu.tsx", 38] + [ + "src/views/board/components/CardContextMembersModal.tsx", + 51 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 38 + ] ], "translation": "Gerenciar membros" }, + "onllUU": { + "message": "Mark all as read", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 155 + ] + ], + "translation": "" + }, "IDvohQ": { "message": "marked a checklist item as incomplete", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 138]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 138 + ] + ], "translation": "marcou um item da checklist como incompleto" }, "jl3aEJ": { "message": "marked checklist item <0>{0} as incomplete", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 258]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 258 + ] + ], "translation": "marcou o item da checklist <0>{0} como incompleto" }, "vo2a+a": { "message": "Marketing", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Marketing" }, "agPptk": { "message": "Medium", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 8]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 8 + ] + ], "translation": "Médio" }, "W/Elkg": { "message": "Medium Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Prioridade média" }, "OvoEq7": { @@ -3811,9 +6468,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 55], - ["src/views/card/components/ActivityList.tsx", 88], - ["src/views/members/index.tsx", 202] + [ + "src/views/card/components/ActivityList.tsx", + 55 + ], + [ + "src/views/card/components/ActivityList.tsx", + 88 + ], + [ + "src/views/members/index.tsx", + 202 + ] ], "translation": "Membro" }, @@ -3822,22 +6488,47 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 123], - ["src/views/board/components/Filters.tsx", 147], - ["src/views/board/components/NewCardForm.tsx", 379], - ["src/views/card/index.tsx", 143], - ["src/views/members/index.tsx", 263], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 81] + [ + "src/components/SideNavigation.tsx", + 124 + ], + [ + "src/views/board/components/Filters.tsx", + 147 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 379 + ], + [ + "src/views/card/index.tsx", + 145 + ], + [ + "src/views/members/index.tsx", + 263 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 81 + ] ], "translation": "Membros" }, "9u5BOr": { "message": "Members | {0}", "placeholders": { - "0": ["workspace.name ?? t`Workspace`"] + "0": [ + "workspace.name ?? t`Workspace`" + ] }, "comments": [], - "origin": [["src/views/members/index.tsx", 258]], + "origin": [ + [ + "src/views/members/index.tsx", + 258 + ] + ], "translation": "Membros | {0}" }, "/bZzdR": { @@ -3845,7 +6536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 183] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 183 + ] ], "translation": "Menções" }, @@ -3854,7 +6548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 53 + ] ], "translation": "Segunda-feira" }, @@ -3863,9 +6560,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 62], - ["src/views/pricing/components/Pricing.tsx", 14], - ["src/views/pricing/index.tsx", 20] + [ + "src/views/onboarding/select-plan/index.tsx", + 62 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 14 + ], + [ + "src/views/pricing/index.tsx", + 20 + ] ], "translation": "Mensal" }, @@ -3873,45 +6579,79 @@ "message": "monthly billing", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 159]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 159 + ] + ], "translation": "cobrança mensal" }, "51UCsN": { "message": "Move to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 44]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 44 + ] + ], "translation": "Mover para outra lista" }, "J4+OTA": { "message": "Move to list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 70]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 70 + ] + ], "translation": "Mover para lista" }, "BOqTi5": { "message": "moved the card from <0>{0} to<1>{1}", "placeholders": { - "0": ["truncate(fromList)"], - "1": ["truncate(toList)"] + "0": [ + "truncate(fromList)" + ], + "1": [ + "truncate(toList)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 160]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 160 + ] + ], "translation": "moveu o cartão de <0>{0} para <1>{1}" }, "T7LJic": { "message": "moved the card to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 127]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 127 + ] + ], "translation": "moveu o cartão para outra lista" }, "uEGGDs": { "message": "My webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 209]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 209 + ] + ], "translation": "Meu webhook" }, "6YtxFj": { @@ -3919,11 +6659,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 135], - ["src/views/board/components/NewTemplateForm.tsx", 118], - ["src/views/boards/components/NewBoardForm.tsx", 134], - ["src/views/settings/components/NewWebhookModal.tsx", 205], - ["src/views/settings/components/WebhookList.tsx", 212] + [ + "src/components/LabelForm.tsx", + 135 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 118 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 134 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 205 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 212 + ] ], "translation": "Nome" }, @@ -3931,14 +6686,24 @@ "message": "Navigation", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 55]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 55 + ] + ], "translation": "Navegação" }, "HBI6nY": { "message": "Need help?", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 95]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 95 + ] + ], "translation": "Precisa de ajuda?" }, "isRobC": { @@ -3946,53 +6711,115 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 95], - ["src/views/home/components/Features.tsx", 73] + [ + "src/views/boards/index.tsx", + 95 + ], + [ + "src/views/home/components/Features.tsx", + 73 + ] ], "translation": "Novo" }, "6WSYbN": { "message": "New {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 120]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 120 + ] + ], "translation": "Novo {0}" }, "TjREUS": { "message": "New API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 147]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 147 + ] + ], "translation": "Nova chave de API" }, "pnrmSP": { "message": "New card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 304]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 304 + ] + ], "translation": "Novo cartão" }, "cWcxrL": { "message": "New checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 103]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 103 + ] + ], "translation": "Nova checklist" }, + "7Qqqyu": { + "message": "New comment on", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 49 + ] + ], + "translation": "" + }, + "K4xHKu": { + "message": "New comment on a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 50 + ] + ], + "translation": "" + }, "WYwN1G": { "message": "New import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 513]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 513 + ] + ], "translation": "Nova importação" }, "n1GRql": { "message": "New label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Nova etiqueta" }, "Sb2gYF": { @@ -4000,17 +6827,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewListForm.tsx", 113], - ["src/views/board/index.tsx", 620] + [ + "src/views/board/components/NewListForm.tsx", + 113 + ], + [ + "src/views/board/index.tsx", + 624 + ] ], "translation": "Nova lista" }, + "pM1sn/": { + "message": "New notification", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 56 + ] + ], + "translation": "" + }, "+MdEsf": { "message": "New password is required", "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 23] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 23 + ] ], "translation": "A nova senha é obrigatória" }, @@ -4019,7 +6867,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 31] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 31 + ] ], "translation": "A nova senha deve ser diferente da senha atual" }, @@ -4027,151 +6878,292 @@ "message": "New template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 104]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 104 + ] + ], "translation": "Novo modelo" }, "RJA+sg": { "message": "New Ticket", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 56]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 56 + ] + ], "translation": "Novo ticket" }, "sbNNyi": { "message": "New webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Novo webhook" }, "curoK5": { "message": "New workspace", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 208]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 208 + ] + ], "translation": "Novo workspace" }, "5ACX4z": { "message": "Newsletter", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Newsletter" }, "HeFWjW": { "message": "Next Steps", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 93]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 93 + ] + ], "translation": "Próximos passos" }, "/glL9Q": { "message": "No {0}", "placeholders": { - "0": ["isTemplate ? \"templates\" : \"boards\""] + "0": [ + "isTemplate ? \"templates\" : \"boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "Nenhum {0}" }, "tlhgDC": { "message": "No archived boards", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "Nenhum quadro arquivado" }, "Eg99Sc": { "message": "No authentication methods are currently available", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 369]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 369 + ] + ], "translation": "Nenhum método de autenticação está disponível no momento" }, "2Bu8xj": { "message": "No boards found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 432]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 432 + ] + ], "translation": "Nenhum quadro encontrado" }, "OpNhRn": { "message": "No credit card required", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 85]], + "origin": [ + [ + "src/views/home/index.tsx", + 85 + ] + ], "translation": "Não é necessário cartão de crédito" }, "MK16u2": { "message": "No dates", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 137]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 137 + ] + ], "translation": "Nenhuma data" }, "sY2lzr": { "message": "No download URL available for this attachment.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 143]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 143 + ] + ], "translation": "Nenhuma URL de download disponível para este anexo." }, "TXO5TM": { "message": "No keyboard shortcuts registered.", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 334]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 334 + ] + ], "translation": "Nenhum atalho de teclado registrado." }, "hXMFoN": { "message": "No lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 652]], + "origin": [ + [ + "src/views/board/index.tsx", + 657 + ] + ], "translation": "Nenhuma lista" }, "fvLNDy": { "message": "No lists have been created yet", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 657]], + "origin": [ + [ + "src/views/board/index.tsx", + 662 + ] + ], "translation": "Nenhuma lista foi criada ainda" }, + "HbXReU": { + "message": "No notifications yet", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 192 + ] + ], + "translation": "" + }, "i30J2U": { "message": "No projects found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 283]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 283 + ] + ], "translation": "Nenhum projeto encontrado" }, "ERpq2P": { "message": "No results found for \"{debouncedQuery}\".", "placeholders": { - "debouncedQuery": ["debouncedQuery"] + "debouncedQuery": [ + "debouncedQuery" + ] }, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 183]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 183 + ] + ], "translation": "Nenhum resultado encontrado para \"{debouncedQuery}\"." }, "Q9pQaX": { "message": "No roles found for this workspace yet.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 110]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 110 + ] + ], "translation": "Nenhuma função encontrada para este workspace ainda." }, "TX0bT7": { "message": "No webhooks configured. Add a webhook to receive notifications.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 194]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 194 + ] + ], "translation": "Nenhum webhook configurado. Adicione um webhook para receber notificações." }, + "iDNBZe": { + "message": "Notifications", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 119 + ], + [ + "src/components/NotificationBell.tsx", + 131 + ], + [ + "src/components/NotificationBell.tsx", + 147 + ] + ], + "translation": "" + }, "9h7RDh": { "message": "Offer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 78]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 78 + ] + ], "translation": "Oferta" }, "QnzD50": { @@ -4179,7 +7171,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 245] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 245 + ] ], "translation": "On-premise" }, @@ -4187,42 +7182,72 @@ "message": "On-premise deployment option", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 106]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 106 + ] + ], "translation": "Opção de implantação on-premise" }, "gukxZ5": { "message": "Onboarding", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 79]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 79 + ] + ], "translation": "Onboarding" }, "usVytm": { "message": "Once you delete your account, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 73]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 73 + ] + ], "translation": "Depois de excluir sua conta, não há como voltar atrás. Esta ação não pode ser desfeita." }, "dmKdk0": { "message": "Once you delete your workspace, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 128]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 128 + ] + ], "translation": "Depois de excluir seu workspace, não há como voltar atrás. Esta ação não pode ser desfeita." }, "69b7aE": { "message": "Open command menu", "placeholders": {}, "comments": [], - "origin": [["src/components/WorkspaceMenu.tsx", 34]], + "origin": [ + [ + "src/components/WorkspaceMenu.tsx", + 34 + ] + ], "translation": "Abrir menu de comandos" }, "cFQEU/": { "message": "Open keyboard shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 172]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 172 + ] + ], "translation": "Abrir atalhos de teclado" }, "v+Wp++": { @@ -4230,7 +7255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 229] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 229 + ] ], "translation": "Open source" }, @@ -4238,21 +7266,36 @@ "message": "Open Source Friends", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 58]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 58 + ] + ], "translation": "Amigos open source" }, "BzEFor": { "message": "or", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 380]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 380 + ] + ], "translation": "ou" }, "ZqDqbi": { "message": "Organize and find cards quickly with powerful filtering tools.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 101]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 101 + ] + ], "translation": "Organize e encontre cartões rapidamente com ferramentas de filtragem poderosas." }, "Un80BR": { @@ -4260,8 +7303,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 39], - ["src/views/oss-friends/index.tsx", 52] + [ + "src/views/home/components/Footer.tsx", + 39 + ], + [ + "src/views/oss-friends/index.tsx", + 52 + ] ], "translation": "Amigos OSS" }, @@ -4269,35 +7318,60 @@ "message": "Overdue", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 112]], - "translation": "Atrasado" - }, - "P6dJdq": { + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 112 + ] + ], + "translation": "Atrasado" + }, + "P6dJdq": { "message": "Overrides cleared", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 25 + ] + ], "translation": "Substituições removidas" }, "SPLN9O": { "message": "Own your data", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 73]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 73 + ] + ], "translation": "Seja dono dos seus dados" }, "8F1i42": { "message": "Page not found", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 24]], + "origin": [ + [ + "src/pages/404.tsx", + 24 + ] + ], "translation": "Página não encontrada" }, "Uworke": { "message": "Part-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Meio período" }, "IrZaAn": { @@ -4305,7 +7379,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 69] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 69 + ] ], "translation": "Senha alterada" }, @@ -4313,14 +7390,24 @@ "message": "Password is required to login.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 258]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 258 + ] + ], "translation": "A senha é obrigatória para fazer login." }, "tTbref": { "message": "Password is required to sign up.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 257]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 257 + ] + ], "translation": "A senha é obrigatória para se cadastrar." }, "vwGkYB": { @@ -4328,7 +7415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 22] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 22 + ] ], "translation": "A senha deve ter pelo menos 8 caracteres" }, @@ -4337,7 +7427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 27] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 27 + ] ], "translation": "As senhas não coincidem" }, @@ -4345,7 +7438,12 @@ "message": "Paused", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "Pausado" }, "UbYdrA": { @@ -4353,8 +7451,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 120] + [ + "src/views/pricing/components/Pricing.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 120 + ] ], "translation": "Frequência de pagamento" }, @@ -4362,7 +7466,12 @@ "message": "Pending", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "Pendente" }, "oVBq1w": { @@ -4370,10 +7479,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 15], - ["src/views/pricing/components/Pricing.tsx", 20], - ["src/views/pricing/index.tsx", 21], - ["src/views/pricing/index.tsx", 26] + [ + "src/views/pricing/components/Pricing.tsx", + 15 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 20 + ], + [ + "src/views/pricing/index.tsx", + 21 + ], + [ + "src/views/pricing/index.tsx", + 26 + ] ], "translation": "por usuário/mês" }, @@ -4381,28 +7502,48 @@ "message": "Per-seat pricing", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 83]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 83 + ] + ], "translation": "Preço por assento" }, "mrhyIB": { "message": "Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 52 + ] + ], "translation": "Perfeito para equipes pequenas e em crescimento que buscam colaborar." }, "TH3Irz": { "message": "Permission", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 119]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 119 + ] + ], "translation": "Permissão" }, "9cDpsw": { "message": "Permissions", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 53]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 53 + ] + ], "translation": "Permissões" }, "Jgaz7E": { @@ -4410,7 +7551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 80] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 80 + ] ], "translation": "Permissões redefinidas" }, @@ -4419,8 +7563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 34], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 57] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 34 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 57 + ] ], "translation": "Permissões atualizadas" }, @@ -4428,14 +7578,24 @@ "message": "Personal Project", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 86]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 86 + ] + ], "translation": "Projeto pessoal" }, "Oi+J+N": { "message": "Pick a plan to get started. All paid plans include a 14-day free trial.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 125]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 125 + ] + ], "translation": "Escolha um plano para começar. Todos os planos pagos incluem 14 dias de teste grátis." }, "Iqh0Uv": { @@ -4443,8 +7603,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Planejado" }, @@ -4452,7 +7618,12 @@ "message": "Planning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 90]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 90 + ] + ], "translation": "Planejamento" }, "F3bW6y": { @@ -4460,7 +7631,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 317] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 317 + ] ], "translation": "Plataforma" }, @@ -4469,7 +7643,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 24] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 24 + ] ], "translation": "Confirme sua nova senha" }, @@ -4477,28 +7654,48 @@ "message": "Please enter a valid email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 406]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 406 + ] + ], "translation": "Por favor, insira um endereço de e-mail válido" }, "CJ3zUq": { "message": "Please enter a valid name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 394]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 394 + ] + ], "translation": "Por favor, insira um nome válido" }, "7b2yuC": { "message": "Please enter a valid password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 421]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 421 + ] + ], "translation": "Por favor, insira uma senha válida" }, "jEw0Mr": { "message": "Please enter a valid URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 24 + ] + ], "translation": "Por favor, insira uma URL válida" }, "tmlJN1": { @@ -4506,8 +7703,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 58], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 98] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 58 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 98 + ] ], "translation": "Por favor, insira uma URL válida do YouTube" }, @@ -4515,7 +7718,12 @@ "message": "Please select a file to upload.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 70]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 70 + ] + ], "translation": "Por favor, selecione um arquivo para enviar." }, "tyHiOa": { @@ -4523,56 +7731,206 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 26], - ["src/components/FeedbackModal.tsx", 41], - ["src/components/NewWorkspaceForm.tsx", 123], - ["src/views/board/components/BoardDropdown.tsx", 65], - ["src/views/board/components/NewCardForm.tsx", 186], - ["src/views/board/components/NewListForm.tsx", 79], - ["src/views/board/components/NewTemplateForm.tsx", 61], - ["src/views/board/components/NewTemplateForm.tsx", 77], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 73], - ["src/views/board/components/VisibilityButton.tsx", 57], - ["src/views/board/index.tsx", 218], - ["src/views/board/index.tsx", 274], - ["src/views/boards/components/ImportBoardsForm.tsx", 243], - ["src/views/boards/components/ImportBoardsForm.tsx", 395], - ["src/views/card/components/AttachmentThumbnails.tsx", 74], - ["src/views/card/components/ChecklistItemRow.tsx", 67], - ["src/views/card/components/ChecklistItemRow.tsx", 95], - ["src/views/card/components/ChecklistNameInput.tsx", 47], - ["src/views/card/components/Checklists.tsx", 81], - ["src/views/card/components/Comment.tsx", 93], - ["src/views/card/components/DeleteCardConfirmation.tsx", 52], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 38], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 46], - ["src/views/card/components/DueDateSelector.tsx", 64], - ["src/views/card/components/LabelSelector.tsx", 75], - ["src/views/card/components/ListSelector.tsx", 55], - ["src/views/card/components/MemberSelector.tsx", 82], - ["src/views/card/components/NewChecklistForm.tsx", 71], - ["src/views/card/components/NewChecklistItemForm.tsx", 90], - ["src/views/card/components/NewCommentForm.tsx", 37], - ["src/views/card/index.tsx", 232], - ["src/views/card/index.tsx", 245], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 28], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 42], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 65], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 93], - ["src/views/members/components/InviteMemberForm.tsx", 104], - ["src/views/members/components/InviteMemberForm.tsx", 241], - ["src/views/members/index.tsx", 66], - ["src/views/onboarding/workspace-details/index.tsx", 101], - ["src/views/onboarding/workspace-details/index.tsx", 150], - ["src/views/settings/components/Avatar.tsx", 200], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 40], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 46], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 55], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 44], - ["src/views/settings/PermissionsSettings.tsx", 40] + [ + "src/components/DeleteLabelConfirmation.tsx", + 26 + ], + [ + "src/components/FeedbackModal.tsx", + 41 + ], + [ + "src/components/NewWorkspaceForm.tsx", + 123 + ], + [ + "src/views/board/components/BoardDropdown.tsx", + 65 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 186 + ], + [ + "src/views/board/components/NewListForm.tsx", + 79 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 61 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 77 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 73 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 57 + ], + [ + "src/views/board/index.tsx", + 222 + ], + [ + "src/views/board/index.tsx", + 278 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 243 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 395 + ], + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 74 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 68 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 96 + ], + [ + "src/views/card/components/ChecklistNameInput.tsx", + 47 + ], + [ + "src/views/card/components/Checklists.tsx", + 81 + ], + [ + "src/views/card/components/Comment.tsx", + 93 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 52 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 38 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 46 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 64 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 75 + ], + [ + "src/views/card/components/ListSelector.tsx", + 55 + ], + [ + "src/views/card/components/MemberSelector.tsx", + 82 + ], + [ + "src/views/card/components/NewChecklistForm.tsx", + 71 + ], + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 90 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 37 + ], + [ + "src/views/card/index.tsx", + 274 + ], + [ + "src/views/card/index.tsx", + 287 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 28 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 42 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 65 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 93 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 104 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 241 + ], + [ + "src/views/members/index.tsx", + 66 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 101 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 150 + ], + [ + "src/views/settings/components/Avatar.tsx", + 200 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 40 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 46 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 55 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 64 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 59 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 76 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 44 + ], + [ + "src/views/settings/PermissionsSettings.tsx", + 40 + ] ], "translation": "Por favor, tente novamente mais tarde ou entre em contato com o suporte ao cliente." }, @@ -4581,8 +7939,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 129], - ["src/views/members/components/InviteMemberForm.tsx", 145] + [ + "src/views/members/components/InviteMemberForm.tsx", + 129 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 145 + ] ], "translation": "Por favor, tente novamente mais tarde." }, @@ -4591,12 +7955,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 76], - ["src/views/board/components/CardContextMoveListModal.tsx", 42], - ["src/views/board/index.tsx", 315], - ["src/views/card/components/Dropdown.tsx", 51], - ["src/views/public/board/CardModal.tsx", 45], - ["src/views/public/board/index.tsx", 86] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 76 + ], + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 42 + ], + [ + "src/views/board/index.tsx", + 319 + ], + [ + "src/views/card/components/Dropdown.tsx", + 51 + ], + [ + "src/views/public/board/CardModal.tsx", + 45 + ], + [ + "src/views/public/board/index.tsx", + 86 + ] ], "translation": "Por favor, tente novamente." }, @@ -4605,7 +7987,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 193] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 193 + ] ], "translation": "Posição na lista (0 = primeira, deixe vazio para o final)" }, @@ -4614,12 +7999,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 51], - ["src/views/home/components/Header.tsx", 18], - ["src/views/home/components/Header.tsx", 34], - ["src/views/pricing/components/Pricing.tsx", 85], - ["src/views/pricing/index.tsx", 34], - ["src/views/pricing/index.tsx", 40] + [ + "src/views/home/components/Footer.tsx", + 51 + ], + [ + "src/views/home/components/Header.tsx", + 18 + ], + [ + "src/views/home/components/Header.tsx", + 34 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 85 + ], + [ + "src/views/pricing/index.tsx", + 34 + ], + [ + "src/views/pricing/index.tsx", + 40 + ] ], "translation": "Preços" }, @@ -4628,10 +8031,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 275], - ["src/views/pricing/components/Pricing.tsx", 56], - ["src/views/pricing/components/PricingTiers.tsx", 61], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 95] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 275 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 56 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 61 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 95 + ] ], "translation": "Suporte prioritário por e-mail" }, @@ -4639,14 +8054,24 @@ "message": "Privacy policy", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 43]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 43 + ] + ], "translation": "Política de privacidade" }, "zwBp5t": { "message": "Private", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 84]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 84 + ] + ], "translation": "Privado" }, "3fPjUY": { @@ -4654,9 +8079,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 333], - ["src/views/pricing/components/PricingTiers.tsx", 70] + [ + "src/views/onboarding/select-plan/index.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 333 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 70 + ] ], "translation": "Pro" }, @@ -4664,84 +8098,156 @@ "message": "Pro Plan", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 290]], + "origin": [ + [ + "src/views/members/index.tsx", + 290 + ] + ], "translation": "Plano Pro" }, "Qtzfdk": { "message": "Pro Plan ∞", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 322]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ] + ], "translation": "Plano Pro ∞" }, "0rPv1T": { "message": "Profile image updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 189]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 189 + ] + ], "translation": "Imagem de perfil atualizada" }, "4XF0BB": { "message": "Profile picture", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 30 + ] + ], "translation": "Foto de perfil" }, "7d1a0d": { "message": "Public", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 79]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 79 + ] + ], "translation": "Público" }, "ABCjd9": { "message": "Publishing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 47]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 47 + ] + ], "translation": "Publicação" }, "bfgr/e": { "message": "Question", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 66 + ] + ], "translation": "Pergunta" }, "1H5u1m": { "message": "Questions?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 147]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 147 + ] + ], "translation": "Dúvidas?" }, "kfOGMr": { "message": "Quick Win", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Vitória rápida" }, + "09Tv5j": { + "message": "Reconnecting…", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/ConnectionStatus.tsx", + 30 + ] + ], + "translation": "" + }, "6EWT6T": { "message": "Recruitment", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 73]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 73 + ] + ], "translation": "Recrutamento" }, "ekCRTP": { "message": "Rejected", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "Rejeitado" }, "qlAIQ1": { "message": "Remote", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Remoto" }, "t/YqKh": { @@ -4749,7 +8255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 58] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 58 + ] ], "translation": "Remover" }, @@ -4757,70 +8266,123 @@ "message": "Remove from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 121]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 121 + ] + ], "translation": "Remover dos favoritos" }, "99VIgC": { "message": "Remove member", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 233]], + "origin": [ + [ + "src/views/members/index.tsx", + 233 + ] + ], "translation": "Remover membro" }, "BZkYSt": { "message": "removed {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 116]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 116 + ] + ], "translation": "removeu {0} etiquetas: <0>{labelList}" }, "kQwvU8": { "message": "removed a label from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 129]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 129 + ] + ], "translation": "removeu uma etiqueta do cartão" }, "uck1tz": { "message": "removed a member from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 131]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 131 + ] + ], "translation": "removeu um membro do cartão" }, "KEim/+": { "message": "removed an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 141]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 141 + ] + ], "translation": "removeu um anexo" }, "zwTiVn": { "message": "removed an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 288]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 288 + ] + ], "translation": "removeu um anexo <0>{0}" }, "Qh7QmR": { "message": "Removed from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 54]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 54 + ] + ], "translation": "Removido dos favoritos" }, "YVT40D": { "message": "removed label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 200]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 200 + ] + ], "translation": "removeu a etiqueta <0>{0}" }, "aHRWVI": { @@ -4828,8 +8390,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 144], - ["src/views/card/components/ActivityList.tsx", 324] + [ + "src/views/card/components/ActivityList.tsx", + 144 + ], + [ + "src/views/card/components/ActivityList.tsx", + 324 + ] ], "translation": "removeu a data de vencimento" }, @@ -4837,25 +8405,44 @@ "message": "renamed a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 133]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 133 + ] + ], "translation": "renomeou uma lista de verificação" }, "3ZjRJY": { "message": "renamed checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 216]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 216 + ] + ], "translation": "renomeou a lista de verificação <0>{0}" }, "NH54UR": { "message": "renamed checklist item to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 240]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 240 + ] + ], "translation": "renomeou o item da lista de verificação para <0>{0}" }, "Yx0Ud8": { @@ -4863,8 +8450,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Solicitado" }, @@ -4872,7 +8465,12 @@ "message": "Research", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 89]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 89 + ] + ], "translation": "Pesquisa" }, "e4hPSt": { @@ -4880,7 +8478,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 245] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 245 + ] ], "translation": "Redefinir para padrões da função" }, @@ -4888,21 +8489,36 @@ "message": "Resolution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 60]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 60 + ] + ], "translation": "Resolução" }, "s+MGs7": { "message": "Resources", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 114 + ] + ], "translation": "Recursos" }, "5k0NLb": { "message": "Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 92]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 92 + ] + ], "translation": "Revisão" }, "/gaSVU": { @@ -4910,10 +8526,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 36], - ["src/views/home/components/Header.tsx", 13], - ["src/views/home/components/Header.tsx", 28], - ["src/views/onboarding/workspace-details/index.tsx", 161] + [ + "src/views/home/components/Footer.tsx", + 36 + ], + [ + "src/views/home/components/Header.tsx", + 13 + ], + [ + "src/views/home/components/Header.tsx", + 28 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] ], "translation": "Roadmap" }, @@ -4921,14 +8549,24 @@ "message": "Role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 328]], + "origin": [ + [ + "src/views/members/index.tsx", + 328 + ] + ], "translation": "Função" }, "jQ6I8X": { "message": "Role updated", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 58]], + "origin": [ + [ + "src/views/members/index.tsx", + 58 + ] + ], "translation": "Função atualizada" }, "RzxgOE": { @@ -4936,7 +8574,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 164] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 164 + ] ], "translation": "Funções e permissões" }, @@ -4944,14 +8585,24 @@ "message": "Run on your own infrastructure", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 72]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 72 + ] + ], "translation": "Execute em sua própria infraestrutura" }, "YEOVrT": { "message": "SAML SSO", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 102]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 102 + ] + ], "translation": "SAML SSO" }, "+5kO8P": { @@ -4959,7 +8610,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 54 + ] ], "translation": "Sábado" }, @@ -4968,9 +8622,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 183], - ["src/views/card/components/Comment.tsx", 202], - ["src/views/settings/components/Avatar.tsx", 290] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 183 + ], + [ + "src/views/card/components/Comment.tsx", + 202 + ], + [ + "src/views/settings/components/Avatar.tsx", + 290 + ] ], "translation": "Salvar" }, @@ -4978,42 +8641,72 @@ "message": "Save changes", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Salvar alterações" }, "MdwUGG": { "message": "Save time with reusable board templates.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 116]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 116 + ] + ], "translation": "Economize tempo com modelos de quadro reutilizáveis." }, "cOh+MI": { "message": "Screening", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 76]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 76 + ] + ], "translation": "Triagem" }, "SkCNhl": { "message": "Search boards and cards...", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 104]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 104 + ] + ], "translation": "Pesquisar quadros e cartões..." }, "e1v+J3": { "message": "Secret (optional)", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 229]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 229 + ] + ], "translation": "Segredo (opcional)" }, "OkTY4+": { "message": "Secret cannot exceed 512 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 28]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 28 + ] + ], "translation": "O segredo não pode exceder 512 caracteres" }, "a3LDKx": { @@ -5021,7 +8714,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 321] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 321 + ] ], "translation": "Segurança" }, @@ -5029,7 +8725,12 @@ "message": "See what our users are saying about Kan", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 239]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 239 + ] + ], "translation": "Veja o que nossos usuários estão dizendo sobre o Kan" }, "zYRVNp": { @@ -5037,7 +8738,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 131] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 131 + ] ], "translation": "Selecione uma lista" }, @@ -5046,8 +8750,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 315], - ["src/views/boards/components/ImportBoardsForm.tsx", 464] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 315 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 464 + ] ], "translation": "Selecionar tudo" }, @@ -5055,56 +8765,96 @@ "message": "Select at least one event", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 32]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 32 + ] + ], "translation": "Selecione pelo menos um evento" }, "rYUZIe": { "message": "Select source", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Selecionar origem" }, "ppaRWv": { "message": "Self Host", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 64]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 64 + ] + ], "translation": "Auto-hospedagem" }, "l2PIAy": { "message": "Self host with Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 81]], + "origin": [ + [ + "src/views/home/index.tsx", + 81 + ] + ], "translation": "Auto-hospedar com Github" }, "VXk54Y": { "message": "self-assigned the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 169 + ] + ], "translation": "autoatribuiu o cartão" }, "RoafuO": { "message": "Send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 116]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 116 + ] + ], "translation": "Enviar feedback" }, "eus61c": { "message": "Send test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 310]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 310 + ] + ], "translation": "Enviar teste" }, "v3YoMA": { "message": "Senior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Sênior" }, "8AbRER": { @@ -5112,9 +8862,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 20], - ["src/views/board/components/CardContextMenu.tsx", 56], - ["src/views/card/components/DueDateSelector.tsx", 121] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 20 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 56 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 121 + ] ], "translation": "Definir data de vencimento" }, @@ -5122,14 +8881,24 @@ "message": "set the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 142]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 142 + ] + ], "translation": "definiu a data de vencimento" }, "JjEJSy": { "message": "Set up your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 179]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 179 + ] + ], "translation": "Configure seu workspace" }, "Tz0i8g": { @@ -5137,8 +8906,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 102], - ["src/components/SideNavigation.tsx", 135] + [ + "src/components/SettingsLayout.tsx", + 102 + ], + [ + "src/components/SideNavigation.tsx", + 136 + ] ], "translation": "Configurações" }, @@ -5146,70 +8921,120 @@ "message": "Settings | Account", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 26 + ] + ], "translation": "Configurações | Conta" }, "iy1wb+": { "message": "Settings | API", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 18]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 18 + ] + ], "translation": "Configurações | API" }, "ADEin1": { "message": "Settings | Billing", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 35]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 35 + ] + ], "translation": "Configurações | Faturamento" }, "hYzsXr": { "message": "Settings | Integrations", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 138]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 138 + ] + ], "translation": "Configurações | Integrações" }, "F/FPk/": { "message": "Settings | Permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 49 + ] + ], "translation": "Configurações | Permissões" }, "+h2faV": { "message": "Settings | Webhooks", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 24]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 24 + ] + ], "translation": "Configurações | Webhooks" }, "Ci/KUX": { "message": "Settings | Workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 59]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 59 + ] + ], "translation": "Configurações | Workspace" }, "CTqTgr": { "message": "Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 187]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 187 + ] + ], "translation": "Atalhos" }, "5lWFkC": { "message": "Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 104]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 104 + ] + ], "translation": "Entrar" }, "n1ekoW": { "message": "Sign In", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 154]], + "origin": [ + [ + "src/views/invite/index.tsx", + 154 + ] + ], "translation": "Entrar" }, "fcWrnU": { @@ -5217,8 +9042,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 284], - ["src/views/onboarding/workspace-details/index.tsx", 362] + [ + "src/views/onboarding/select-plan/index.tsx", + 284 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 362 + ] ], "translation": "Sair" }, @@ -5226,7 +9057,12 @@ "message": "Sign Up", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 162]], + "origin": [ + [ + "src/views/invite/index.tsx", + 162 + ] + ], "translation": "Cadastrar" }, "sUZo7y": { @@ -5234,8 +9070,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 36], - ["src/views/auth/signup/index.tsx", 61] + [ + "src/views/auth/signup/index.tsx", + 36 + ], + [ + "src/views/auth/signup/index.tsx", + 61 + ] ], "translation": "Cadastrar | kan.bn" }, @@ -5243,21 +9085,36 @@ "message": "Sign up disabled", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 46]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 46 + ] + ], "translation": "Cadastro desabilitado" }, "s6iE/c": { "message": "Sign up is currently disabled. Please try again later.", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 49]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 49 + ] + ], "translation": "O cadastro está temporariamente desabilitado. Por favor, tente novamente mais tarde." }, "6FDocz": { "message": "Sign up with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "Cadastrar com " }, "m2nk0i": { @@ -5265,8 +9122,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 89], - ["src/views/pricing/index.tsx", 44] + [ + "src/views/pricing/components/Pricing.tsx", + 89 + ], + [ + "src/views/pricing/index.tsx", + 44 + ] ], "translation": "Preços simples" }, @@ -5274,7 +9137,12 @@ "message": "Simple, visual task management that just works. Drag and drop cards, collaborate with your team, and get more done.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 139]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 139 + ] + ], "translation": "Gerenciamento de tarefas visual e simples que funciona. Arraste e solte cartões, colabore com sua equipe e faça mais." }, "zEcnBA": { @@ -5282,7 +9150,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 291] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 291 + ] ], "translation": "SLA" }, @@ -5290,28 +9161,48 @@ "message": "Small", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 7]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 7 + ] + ], "translation": "Pequeno" }, "++rVAm": { "message": "Social Media", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Redes sociais" }, "wIb7Ng": { "message": "Software Development", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 22 + ] + ], "translation": "Desenvolvimento de software" }, "6sKjjx": { "message": "Solo", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 76]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 76 + ] + ], "translation": "Solo" }, "vnS6Rf": { @@ -5319,7 +9210,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 256] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 256 + ] ], "translation": "SSO" }, @@ -5327,7 +9221,12 @@ "message": "Star on Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 37]], + "origin": [ + [ + "src/views/home/index.tsx", + 37 + ] + ], "translation": "Favoritar no Github" }, "veIDCY": { @@ -5335,8 +9234,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 359], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 113] + [ + "src/views/members/components/InviteMemberForm.tsx", + 359 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 113 + ] ], "translation": "Iniciar teste grátis de 14 dias" }, @@ -5344,21 +9249,36 @@ "message": "Start free. Upgrade as your team grows. No hidden fees, no contracts.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/index.tsx", 47]], + "origin": [ + [ + "src/views/pricing/index.tsx", + 47 + ] + ], "translation": "Comece grátis. Faça upgrade conforme sua equipe cresce. Sem taxas ocultas, sem contratos." }, "uAQUqI": { "message": "Status", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 230]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 230 + ] + ], "translation": "Status" }, "WYDptz": { "message": "Subscription Required", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 122]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 122 + ] + ], "translation": "Assinatura necessária" }, "zzDlyQ": { @@ -5366,8 +9286,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/AuthForm.tsx", 215], - ["src/components/AuthForm.tsx", 232] + [ + "src/components/AuthForm.tsx", + 215 + ], + [ + "src/components/AuthForm.tsx", + 232 + ] ], "translation": "Sucesso" }, @@ -5376,7 +9302,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 52 + ] ], "translation": "Domingo" }, @@ -5385,7 +9314,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 59] + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 59 + ] ], "translation": "Turbine seu workspace por apenas $29/mês. Veja o que você vai receber:" }, @@ -5394,8 +9326,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 198], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 325] + [ + "src/components/UserMenu.tsx", + 198 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 325 + ] ], "translation": "Suporte" }, @@ -5403,21 +9341,36 @@ "message": "Support the development of the project", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 57]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 57 + ] + ], "translation": "Apoie o desenvolvimento do projeto" }, "D+NlUC": { "message": "System", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 144]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 144 + ] + ], "translation": "Sistema" }, "KM6m8p": { "message": "Team", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 83]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 83 + ] + ], "translation": "Equipe" }, "bff61F": { @@ -5425,8 +9378,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 322], - ["src/views/members/index.tsx", 292] + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ], + [ + "src/views/members/index.tsx", + 292 + ] ], "translation": "Plano de equipe" }, @@ -5435,9 +9394,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 332], - ["src/views/pricing/components/Pricing.tsx", 46], - ["src/views/pricing/components/PricingTiers.tsx", 47] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 332 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 46 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 47 + ] ], "translation": "Equipes" }, @@ -5446,8 +9414,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/board/index.tsx", 566] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/board/index.tsx", + 570 + ] ], "translation": "Modelo" }, @@ -5455,28 +9429,48 @@ "message": "Template created", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 67]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 67 + ] + ], "translation": "Modelo criado" }, "QHhZeE": { "message": "Template created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 68]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 68 + ] + ], "translation": "Template criado com sucesso" }, "notwF1": { "message": "Template name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 19]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 19 + ] + ], "translation": "O nome do template não pode exceder 100 caracteres" }, "6OTo9n": { "message": "Template name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 18]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 18 + ] + ], "translation": "O nome do template é obrigatório" }, "iTylMl": { @@ -5484,8 +9478,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 111], - ["src/views/home/components/Features.tsx", 115] + [ + "src/components/SideNavigation.tsx", + 112 + ], + [ + "src/views/home/components/Features.tsx", + 115 + ] ], "translation": "Templates" }, @@ -5493,14 +9493,24 @@ "message": "Terms of service", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 42]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 42 + ] + ], "translation": "Termos de serviço" }, "NnH3pK": { "message": "Test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 136]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 136 + ] + ], "translation": "Testar" }, "itgYbC": { @@ -5508,8 +9518,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 132], - ["src/views/settings/components/WebhookList.tsx", 174] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 132 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 174 + ] ], "translation": "Webhook de teste enviado com sucesso!" }, @@ -5517,28 +9533,48 @@ "message": "Testimonials", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 232]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 232 + ] + ], "translation": "Depoimentos" }, "nhMhRr": { "message": "Thank you for your feedback!", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 34]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 34 + ] + ], "translation": "Obrigado pelo seu feedback!" }, "NcFrgC": { "message": "The board has been archived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 46]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 46 + ] + ], "translation": "O quadro foi arquivado." }, "C6gv54": { "message": "The board has been unarchived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 47]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 47 + ] + ], "translation": "O quadro foi desarquivado." }, "nKBUeF": { @@ -5546,7 +9582,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 69] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 69 + ] ], "translation": "O cartão foi duplicado." }, @@ -5555,7 +9594,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 84] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 84 + ] ], "translation": "A senha atual que você digitou está incorreta." }, @@ -5563,7 +9605,12 @@ "message": "The main difference between Kan and Trello is that Kan is open source, allowing anyone to view, modify, and contribute to our code. Our cloud offering also offers no restrictions on features for individual use, whereas Trello locks basic features such as the number of boards you can create behind a paywall.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 33]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 33 + ] + ], "translation": "A principal diferença entre Kan e Trello é que o Kan é open source, permitindo que qualquer pessoa visualize, modifique e contribua com nosso código. Nossa oferta na nuvem também não oferece restrições de recursos para uso individual, enquanto o Trello bloqueia recursos básicos, como o número de quadros que você pode criar, atrás de um paywall." }, "6tDFBe": { @@ -5571,8 +9618,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 35], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 58] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 35 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 58 + ] ], "translation": "As permissões do membro foram atualizadas." }, @@ -5580,37 +9633,64 @@ "message": "The member's role has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 59]], + "origin": [ + [ + "src/views/members/index.tsx", + 59 + ] + ], "translation": "A função do membro foi atualizada." }, "gUX7b+": { "message": "The open source <0/> alternative to Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 65]], + "origin": [ + [ + "src/views/home/index.tsx", + 65 + ] + ], "translation": "A alternativa open source <0/> ao Trello" }, "0xD8Of": { "message": "The page you're looking for doesn't exist or has been moved.", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 29]], + "origin": [ + [ + "src/pages/404.tsx", + 29 + ] + ], "translation": "A página que você está procurando não existe ou foi movida." }, "fQCrjt": { "message": "The visibility of your board has been set to {0}.", "placeholders": { - "0": ["isPublic ? \"public\" : \"private\""] + "0": [ + "isPublic ? \"public\" : \"private\"" + ] }, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 50]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 50 + ] + ], "translation": "A visibilidade do seu quadro foi definida como {0}." }, "FEr96N": { "message": "Theme", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 131]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 131 + ] + ], "translation": "Tema" }, "Yf9FAx": { @@ -5618,7 +9698,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 50] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 50 + ] ], "translation": "Eles não poderão acessar este workspace." }, @@ -5627,11 +9710,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 44], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 39], - ["src/views/card/components/DeleteCardConfirmation.tsx", 78], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 59], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 69] + [ + "src/components/DeleteLabelConfirmation.tsx", + 44 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 39 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 78 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 59 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 69 + ] ], "translation": "Esta ação não pode ser desfeita." }, @@ -5639,28 +9737,48 @@ "message": "This API key will only be shown once. Please save it in a secure location.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 129]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 129 + ] + ], "translation": "Esta chave de API será mostrada apenas uma vez. Por favor, salve-a em um local seguro." }, "l4asa1": { "message": "This board is private or does not exist", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 184]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 184 + ] + ], "translation": "Este quadro é privado ou não existe" }, "wY+6Ye": { "message": "This board URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 136]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 136 + ] + ], "translation": "Esta URL de quadro já foi utilizada" }, "mTwGOf": { "message": "This invitation link is invalid or has expired.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 108]], + "origin": [ + [ + "src/views/invite/index.tsx", + 108 + ] + ], "translation": "Este link de convite é inválido ou expirou." }, "vlxQFL": { @@ -5668,7 +9786,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 81] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 81 + ] ], "translation": "As permissões deste membro foram redefinidas para os padrões de sua função." }, @@ -5676,14 +9797,24 @@ "message": "This URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 73]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 73 + ] + ], "translation": "Esta URL já está em uso" }, "gKmoow": { "message": "This URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 75]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 75 + ] + ], "translation": "Esta URL é reservada" }, "OAYToL": { @@ -5703,7 +9834,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 70] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 70 + ] ], "translation": "Isso resultará na exclusão permanente de todos os dados associados a este workspace." }, @@ -5712,7 +9846,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 60 + ] ], "translation": "Isso resultará na exclusão permanente de todos os dados associados à sua conta." }, @@ -5720,14 +9857,24 @@ "message": "This workspace URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 252]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 252 + ] + ], "translation": "Esta URL de workspace já foi utilizada" }, "bJtM0P": { "message": "This workspace URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 254]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 254 + ] + ], "translation": "Esta URL de workspace está reservada" }, "kp6L3T": { @@ -5735,7 +9882,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 125] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 125 + ] ], "translation": "Este nome de usuário de workspace já está em uso" }, @@ -5743,7 +9893,12 @@ "message": "Title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 127]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 127 + ] + ], "translation": "Título" }, "wK4OTM": { @@ -5751,7 +9906,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 180] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 180 + ] ], "translation": "Título (opcional)" }, @@ -5760,8 +9918,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] ], "translation": "A fazer" }, @@ -5769,21 +9933,36 @@ "message": "Toggle menu", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 114 + ] + ], "translation": "Alternar menu" }, "L5WQLg": { "message": "Token is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 19]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 19 + ] + ], "translation": "Token é obrigatório" }, "eEQyz+": { "message": "Track all card changes with detailed activity history.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 111 + ] + ], "translation": "Acompanhe todas as alterações do card com histórico detalhado de atividades." }, "dtbpdR": { @@ -5791,8 +9970,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 218], - ["src/views/settings/IntegrationsSettings.tsx", 142] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 218 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 142 + ] ], "translation": "Trello" }, @@ -5800,56 +9985,96 @@ "message": "Trello disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 79]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 79 + ] + ], "translation": "Trello desconectado" }, "kxEs5t": { "message": "Trello imports", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 95 + ] + ], "translation": "Importações do Trello" }, "HO+uOC": { "message": "Triaging", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 57]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 57 + ] + ], "translation": "Triagem" }, "o+JCfN": { "message": "Trusted by fast-moving teams<0/>around the world", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Logos.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Logos.tsx", + 67 + ] + ], "translation": "Confiado por equipes ágeis<0/>ao redor do mundo" }, "bZSICm": { "message": "Unable to add checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 89]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 89 + ] + ], "translation": "Não foi possível adicionar item da checklist" }, "T7DJ2k": { "message": "Unable to add comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewCommentForm.tsx", 36]], + "origin": [ + [ + "src/views/card/components/NewCommentForm.tsx", + 36 + ] + ], "translation": "Não foi possível adicionar comentário" }, "2Q871c": { "message": "Unable to add label", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 244]], + "origin": [ + [ + "src/views/card/index.tsx", + 286 + ] + ], "translation": "Não foi possível adicionar etiqueta" }, "LeM5RY": { "message": "Unable to clear overrides", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 39]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 39 + ] + ], "translation": "Não foi possível limpar substituições" }, "W1ewR0": { @@ -5857,10 +10082,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 313], - ["src/views/card/components/Dropdown.tsx", 49], - ["src/views/public/board/CardModal.tsx", 43], - ["src/views/public/board/index.tsx", 84] + [ + "src/views/board/index.tsx", + 317 + ], + [ + "src/views/card/components/Dropdown.tsx", + 49 + ], + [ + "src/views/public/board/CardModal.tsx", + 43 + ], + [ + "src/views/public/board/index.tsx", + 84 + ] ], "translation": "Não foi possível copiar link" }, @@ -5868,21 +10105,36 @@ "message": "Unable to create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 183]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 183 + ] + ], "translation": "Não foi possível criar card" }, "mHhffx": { "message": "Unable to create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 70]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 70 + ] + ], "translation": "Não foi possível criar checklist" }, "TztLaN": { "message": "Unable to create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 78]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 78 + ] + ], "translation": "Não foi possível criar lista" }, "YcyP2z": { @@ -5890,8 +10142,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewTemplateForm.tsx", 60], - ["src/views/board/components/NewTemplateForm.tsx", 76] + [ + "src/views/board/components/NewTemplateForm.tsx", + 60 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 76 + ] ], "translation": "Não foi possível criar template" }, @@ -5900,8 +10158,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 122], - ["src/views/onboarding/workspace-details/index.tsx", 100] + [ + "src/components/NewWorkspaceForm.tsx", + 122 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 100 + ] ], "translation": "Não foi possível criar workspace" }, @@ -5909,14 +10173,24 @@ "message": "Unable to delete attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 73]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 73 + ] + ], "translation": "Não foi possível excluir anexo" }, "Z6r9z1": { "message": "Unable to delete card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 51]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 51 + ] + ], "translation": "Não foi possível excluir card" }, "DahTzR": { @@ -5924,7 +10198,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 37] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 37 + ] ], "translation": "Não foi possível excluir checklist" }, @@ -5932,14 +10209,24 @@ "message": "Unable to delete checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 95 + ] + ], "translation": "Não foi possível excluir item da checklist" }, "2QGEbi": { "message": "Unable to delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 45]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 45 + ] + ], "translation": "Não foi possível excluir o comentário" }, "Oo4E6p": { @@ -5947,7 +10234,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 75] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 75 + ] ], "translation": "Não foi possível duplicar o cartão" }, @@ -5955,7 +10245,12 @@ "message": "Unable to move card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 41]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 41 + ] + ], "translation": "Não foi possível mover o cartão" }, "8yFGGF": { @@ -5963,7 +10258,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 27] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 27 + ] ], "translation": "Não foi possível remover o membro" }, @@ -5971,7 +10269,12 @@ "message": "Unable to reorder checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Checklists.tsx", 80]], + "origin": [ + [ + "src/views/card/components/Checklists.tsx", + 80 + ] + ], "translation": "Não foi possível reordenar o item da checklist" }, "vfRdCZ": { @@ -5979,7 +10282,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 92] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 92 + ] ], "translation": "Não foi possível redefinir as permissões" }, @@ -5987,35 +10293,60 @@ "message": "Unable to send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 40]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 40 + ] + ], "translation": "Não foi possível enviar o feedback" }, "Q60WUZ": { "message": "Unable to start checkout", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 149]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 149 + ] + ], "translation": "Não foi possível iniciar o checkout" }, "T7Mywq": { "message": "Unable to update board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 64]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 64 + ] + ], "translation": "Não foi possível atualizar o quadro" }, "XpcjLO": { "message": "Unable to update board URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 72]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 72 + ] + ], "translation": "Não foi possível atualizar a URL do quadro" }, "Wy6pcF": { "message": "Unable to update board visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 56]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 56 + ] + ], "translation": "Não foi possível atualizar a visibilidade do quadro" }, "o9WLwO": { @@ -6023,8 +10354,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 273], - ["src/views/card/index.tsx", 231] + [ + "src/views/board/index.tsx", + 277 + ], + [ + "src/views/card/index.tsx", + 273 + ] ], "translation": "Não foi possível atualizar o cartão" }, @@ -6032,35 +10369,60 @@ "message": "Unable to update checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistNameInput.tsx", 46]], + "origin": [ + [ + "src/views/card/components/ChecklistNameInput.tsx", + 46 + ] + ], "translation": "Não foi possível atualizar a checklist" }, "WQPDcG": { "message": "Unable to update checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 67 + ] + ], "translation": "Não foi possível atualizar o item da checklist" }, "fYVH36": { "message": "Unable to update comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 92]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 92 + ] + ], "translation": "Não foi possível atualizar o comentário" }, "C56tim": { "message": "Unable to update due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DueDateSelector.tsx", 63]], + "origin": [ + [ + "src/views/card/components/DueDateSelector.tsx", + 63 + ] + ], "translation": "Não foi possível atualizar a data de vencimento" }, "delOXn": { "message": "Unable to update labels", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/LabelSelector.tsx", 74]], + "origin": [ + [ + "src/views/card/components/LabelSelector.tsx", + 74 + ] + ], "translation": "Não foi possível atualizar as etiquetas" }, "I0gAKM": { @@ -6068,8 +10430,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 217], - ["src/views/card/components/ListSelector.tsx", 54] + [ + "src/views/board/index.tsx", + 221 + ], + [ + "src/views/card/components/ListSelector.tsx", + 54 + ] ], "translation": "Não foi possível atualizar a lista" }, @@ -6077,7 +10445,12 @@ "message": "Unable to update members", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/MemberSelector.tsx", 81]], + "origin": [ + [ + "src/views/card/components/MemberSelector.tsx", + 81 + ] + ], "translation": "Não foi possível atualizar os membros" }, "GYv20o": { @@ -6085,8 +10458,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 41], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 64] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 41 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 64 + ] ], "translation": "Não foi possível atualizar as permissões" }, @@ -6094,44 +10473,76 @@ "message": "Unable to update role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 65]], + "origin": [ + [ + "src/views/members/index.tsx", + 65 + ] + ], "translation": "Não foi possível atualizar a função" }, "It4/FS": { "message": "Unarchive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Desarquivar quadro" }, "E8zYtd": { "message": "unassigned <0>{0} from the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 183]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 183 + ] + ], "translation": "removeu a atribuição de <0>{0} do cartão" }, "hAMddS": { "message": "unassigned themselves from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 180]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 180 + ] + ], "translation": "removeu a própria atribuição do cartão" }, "9Xigls": { "message": "Under Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "Em análise" }, "M9p3Vw": { "message": "Unlimited activity log", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 41]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 41 + ] + ], "translation": "Registro de atividades ilimitado" }, "1wCGT0": { @@ -6139,12 +10550,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 74], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 75], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 76], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 77], - ["src/views/pricing/components/Pricing.tsx", 37], - ["src/views/pricing/components/PricingTiers.tsx", 36] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 74 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 75 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 76 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 77 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 37 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 36 + ] ], "translation": "Quadros ilimitados" }, @@ -6152,7 +10581,12 @@ "message": "Unlimited boards, unlimited lists, unlimited cards. No credit card required.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 57]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 57 + ] + ], "translation": "Quadros ilimitados, listas ilimitadas, cartões ilimitados. Não é necessário cartão de crédito." }, "Zz1qkk": { @@ -6160,8 +10594,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 39], - ["src/views/pricing/components/PricingTiers.tsx", 37] + [ + "src/views/pricing/components/Pricing.tsx", + 39 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 37 + ] ], "translation": "Cartões ilimitados" }, @@ -6169,7 +10609,12 @@ "message": "Unlimited comments", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 40]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 40 + ] + ], "translation": "Comentários ilimitados" }, "86FLn5": { @@ -6177,10 +10622,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 92], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 93], - ["src/views/pricing/components/PricingTiers.tsx", 59] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 92 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 93 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 59 + ] ], "translation": "Uploads de arquivos ilimitados" }, @@ -6188,7 +10645,12 @@ "message": "Unlimited lists", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 38 + ] + ], "translation": "Listas ilimitadas" }, "mx8+1u": { @@ -6196,11 +10658,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 297], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 84], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 85], - ["src/views/pricing/components/PricingTiers.tsx", 80], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 68] + [ + "src/components/NewWorkspaceForm.tsx", + 297 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 84 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 85 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 80 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 68 + ] ], "translation": "Membros ilimitados" }, @@ -6208,14 +10685,24 @@ "message": "Unlimited members and a custom workspace username for teams ready to scale.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 94]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 94 + ] + ], "translation": "Membros ilimitados e um nome de usuário personalizado para equipes prontas para crescer." }, "Ws+3X+": { "message": "Unlimited seats and advanced features for growing teams.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 75]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 75 + ] + ], "translation": "Assentos ilimitados e recursos avançados para equipes em crescimento." }, "SMaFdc": { @@ -6223,8 +10710,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/pages/unsubscribe/index.tsx", 68], - ["src/pages/unsubscribe/index.tsx", 93] + [ + "src/pages/unsubscribe/index.tsx", + 68 + ], + [ + "src/pages/unsubscribe/index.tsx", + 93 + ] ], "translation": "Cancelar inscrição" }, @@ -6233,11 +10726,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugForm.tsx", 175], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 80], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 94], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 89], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 157] + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 175 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 80 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 94 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 89 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 157 + ] ], "translation": "Atualizar" }, @@ -6245,44 +10753,76 @@ "message": "Update label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Atualizar etiqueta" }, "L5ZPjz": { "message": "updated a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 136]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 136 + ] + ], "translation": "atualizou um item da checklist" }, "tGwwnq": { "message": "updated the description", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 126]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 126 + ] + ], "translation": "atualizou a descrição" }, "RfgJqw": { "message": "updated the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 143]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 143 + ] + ], "translation": "atualizou a data de vencimento" }, "V3MPSQ": { "message": "updated the title", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 125]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 125 + ] + ], "translation": "atualizou o título" }, "zERArS": { "message": "updated the title to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 152]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 152 + ] + ], "translation": "atualizou o título para <0>{0}" }, "IelE1h": { @@ -6290,9 +10830,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 55], - ["src/views/settings/WorkspaceSettings.tsx", 118] + [ + "src/components/SideNavigation.tsx", + 242 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 55 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 118 + ] ], "translation": "Fazer upgrade para Pro" }, @@ -6301,8 +10850,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 337], - ["src/views/onboarding/workspace-details/index.tsx", 243] + [ + "src/components/NewWorkspaceForm.tsx", + 337 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 243 + ] ], "translation": "Fazer upgrade para Pro ($29/mês)" }, @@ -6310,7 +10865,12 @@ "message": "Upload failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 51]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 51 + ] + ], "translation": "Falha no upload" }, "BBUDfW": { @@ -6318,8 +10878,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 50], - ["src/views/boards/components/TemplateBoards.tsx", 67] + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 67 + ] ], "translation": "Urgente" }, @@ -6328,8 +10894,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 217], - ["src/views/settings/components/WebhookList.tsx", 218] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 217 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 218 + ] ], "translation": "URL" }, @@ -6338,8 +10910,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 38], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 38] + [ + "src/components/NewWorkspaceForm.tsx", + 38 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 38 + ] ], "translation": "A URL pode conter apenas letras, números e hífens" }, @@ -6347,7 +10925,12 @@ "message": "URL cannot exceed 2048 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 25 + ] + ], "translation": "A URL não pode exceder 2048 caracteres" }, "i5rE2/": { @@ -6355,8 +10938,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 36], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 36] + [ + "src/components/NewWorkspaceForm.tsx", + 36 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 36 + ] ], "translation": "A URL não pode exceder 64 caracteres" }, @@ -6365,8 +10954,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 34], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 34] + [ + "src/components/NewWorkspaceForm.tsx", + 34 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 34 + ] ], "translation": "A URL deve ter pelo menos 3 caracteres" }, @@ -6374,112 +10969,208 @@ "message": "Use template", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 154]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 154 + ] + ], "translation": "Usar template" }, "n6EWYz": { "message": "Used to sign webhook payloads for verification. Leave blank to keep existing secret.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 239]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 239 + ] + ], "translation": "Usado para assinar cargas úteis de webhook para verificação. Deixe em branco para manter o segredo existente." }, "7PzzBU": { "message": "User", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 322]], + "origin": [ + [ + "src/views/members/index.tsx", + 322 + ] + ], "translation": "Usuário" }, "tYN21H": { "message": "User is already a member of this workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 98]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 98 + ] + ], "translation": "O usuário já é membro deste workspace" }, "vSJd18": { "message": "Video", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Vídeo" }, "FmfJjN": { "message": "View and manage your API keys.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 25 + ] + ], "translation": "Visualize e gerencie suas chaves de API." }, "t2nDzl": { "message": "View and manage your billing and subscription.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 42]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 42 + ] + ], "translation": "Visualize e gerencie sua cobrança e assinatura." }, "aiHZVP": { "message": "View docs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 67]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 67 + ] + ], "translation": "Ver documentação" }, "F8DaWi": { "message": "View only", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 153]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 153 + ] + ], "translation": "Somente visualização" }, "fSf2ee": { "message": "View our roadmap.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 154]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 154 + ] + ], "translation": "Veja nosso roadmap." }, "U5dMR6": { "message": "View workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 187]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 187 + ] + ], "translation": "Ver workspace" }, + "V8YRD4": { + "message": "Viewing now: {0}", + "placeholders": { + "0": [ + "viewers.map((v) => v.userName).join(\", \")" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 61 + ] + ], + "translation": "" + }, "2q/Q7x": { "message": "Visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 103]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 103 + ] + ], "translation": "Visibilidade" }, "BJbLe4": { "message": "We are using the <0>AGPL-3.0 license.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 94]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 94 + ] + ], "translation": "Estamos usando a <0>licença AGPL-3.0." }, "+EkBs0": { "message": "We couldn't update your preferences. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 63]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 63 + ] + ], "translation": "Não foi possível atualizar suas preferências. Tente novamente." }, "9y1RcT": { "message": "We're just getting started. ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 152]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 152 + ] + ], "translation": "Estamos apenas começando. " }, "GdWB+V": { "message": "Webhook created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 104]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 104 + ] + ], "translation": "Webhook criado com sucesso" }, "2X4ecw": { @@ -6487,7 +11178,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 23] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 23 + ] ], "translation": "Webhook excluído com sucesso" }, @@ -6495,14 +11189,24 @@ "message": "Webhook name cannot exceed 255 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 20]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 20 + ] + ], "translation": "O nome do webhook não pode exceder 255 caracteres" }, "U2+rn0": { "message": "Webhook name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 19 + ] + ], "translation": "O nome do webhook é obrigatório" }, "8iP9oQ": { @@ -6510,8 +11214,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 135], - ["src/views/settings/components/WebhookList.tsx", 177] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 135 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 177 + ] ], "translation": "O teste do webhook falhou" }, @@ -6519,14 +11229,24 @@ "message": "Webhook updated successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 118]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 118 + ] + ], "translation": "Webhook atualizado com sucesso" }, "Hf1cEZ": { "message": "Webhook URL is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 23]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 23 + ] + ], "translation": "A URL do webhook é obrigatória" }, "v1kQyJ": { @@ -6534,8 +11254,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 71], - ["src/views/settings/WebhookSettings.tsx", 28] + [ + "src/components/SettingsLayout.tsx", + 71 + ], + [ + "src/views/settings/WebhookSettings.tsx", + 28 + ] ], "translation": "Webhooks" }, @@ -6543,42 +11269,72 @@ "message": "Week start day", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 91 + ] + ], "translation": "Dia de início da semana" }, "9eF5oV": { "message": "Welcome back", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 43]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 43 + ] + ], "translation": "Bem-vindo de volta" }, "xEbBrW": { "message": "What license are you using?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 91 + ] + ], "translation": "Qual licença você está usando?" }, "H5G+qG": { "message": "What's the difference between Kan and Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 30]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 30 + ] + ], "translation": "Qual é a diferença entre Kan e Trello?" }, "mVZH9V": { "message": "When Trello launched in 2011, it blew everyone away with its carefully designed simplicity, but over the years it lost its magic and grew into something closer to \"Jira Lite\". This project is our attempt to recapture the original magic of Trello's simplicity, in open source.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 25 + ] + ], "translation": "Quando o Trello foi lançado em 2011, impressionou a todos com sua simplicidade cuidadosamente projetada, mas ao longo dos anos perdeu sua magia e se transformou em algo mais próximo de \"Jira Lite\". Este projeto é nossa tentativa de resgatar a magia original da simplicidade do Trello, em código aberto." }, "SFnH1j": { "message": "Why make an open source Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 22]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 22 + ] + ], "translation": "Por que fazer um Trello de código aberto?" }, "pmUArF": { @@ -6586,12 +11342,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 47], - ["src/views/board/index.tsx", 530], - ["src/views/boards/index.tsx", 48], - ["src/views/members/index.tsx", 258], - ["src/views/public/board/index.tsx", 125], - ["src/views/public/boards/index.tsx", 75] + [ + "src/components/SettingsLayout.tsx", + 47 + ], + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/members/index.tsx", + 258 + ], + [ + "src/views/public/board/index.tsx", + 125 + ], + [ + "src/views/public/boards/index.tsx", + 75 + ] ], "translation": "Workspace" }, @@ -6599,7 +11373,12 @@ "message": "Workspace created successfully. You can upgrade later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 147]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 147 + ] + ], "translation": "Workspace criado com sucesso. Você pode fazer upgrade depois nas configurações.", "obsolete": true }, @@ -6608,7 +11387,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 26] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 26 + ] ], "translation": "Workspace excluído" }, @@ -6617,8 +11399,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 253], - ["src/views/settings/WorkspaceSettings.tsx", 82] + [ + "src/views/onboarding/workspace-details/index.tsx", + 253 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 82 + ] ], "translation": "Descrição do workspace" }, @@ -6627,7 +11415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 30] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 30 + ] ], "translation": "A descrição do workspace não pode exceder 280 caracteres" }, @@ -6636,7 +11427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 27] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 27 + ] ], "translation": "A descrição do workspace deve ter pelo menos 3 caracteres" }, @@ -6645,7 +11439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 50] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 50 + ] ], "translation": "Descrição do workspace atualizada" }, @@ -6654,9 +11451,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 90], - ["src/views/pricing/components/Pricing.tsx", 54], - ["src/views/pricing/components/PricingTiers.tsx", 57] + [ + "src/views/home/components/Features.tsx", + 90 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 54 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 57 + ] ], "translation": "Membros do workspace" }, @@ -6665,9 +11471,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 227], - ["src/views/onboarding/workspace-details/index.tsx", 188], - ["src/views/settings/WorkspaceSettings.tsx", 63] + [ + "src/components/NewWorkspaceForm.tsx", + 227 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 188 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 63 + ] ], "translation": "Nome do workspace" }, @@ -6676,8 +11491,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 30], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 15] + [ + "src/components/NewWorkspaceForm.tsx", + 30 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 15 + ] ], "translation": "O nome do workspace não pode exceder 64 caracteres" }, @@ -6685,7 +11506,12 @@ "message": "Workspace name is required", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 29]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 29 + ] + ], "translation": "O nome do workspace é obrigatório" }, "jZBHkN": { @@ -6693,7 +11519,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 14] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 14 + ] ], "translation": "O nome do workspace deve ter pelo menos 3 caracteres" }, @@ -6702,7 +11531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 45] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 45 + ] ], "translation": "Nome do workspace atualizado" }, @@ -6710,7 +11542,12 @@ "message": "Workspace permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 53 + ] + ], "translation": "Permissões do workspace" }, "MN6YzG": { @@ -6718,7 +11555,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 62] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 62 + ] ], "translation": "Slug do workspace atualizado" }, @@ -6726,28 +11566,48 @@ "message": "Workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 72]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 72 + ] + ], "translation": "URL do workspace" }, "DSGzV+": { "message": "Workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 97 + ] + ], "translation": "Nome de usuário do workspace" }, "/8pTF/": { "message": "workspace-url", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 241]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 241 + ] + ], "translation": "workspace-url" }, "4kJRen": { "message": "Writing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 43]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 43 + ] + ], "translation": "Escrevendo" }, "zkWmBh": { @@ -6755,8 +11615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 19], - ["src/views/pricing/index.tsx", 25] + [ + "src/views/pricing/components/Pricing.tsx", + 19 + ], + [ + "src/views/pricing/index.tsx", + 25 + ] ], "translation": "Anual" }, @@ -6764,42 +11630,72 @@ "message": "Yes, we offer an forever free plan for individual use. No restrictions, no paywalls, no limits.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 86 + ] + ], "translation": "Sim, oferecemos um plano gratuito para sempre para uso individual. Sem restrições, sem paywalls, sem limites." }, "RtlIYB": { "message": "You are about to change your password.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 91 + ] + ], "translation": "Você está prestes a alterar sua senha." }, "3WXdoZ": { "message": "You can always change these later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 182]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 182 + ] + ], "translation": "Você pode alterar isso depois nas configurações." }, "aelko+": { "message": "You can get a custom workspace URL, like <0>kan.bn/kan, by going into your <1>workspace settings and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 67 + ] + ], "translation": "Você pode obter uma URL personalizada para o workspace, como <0>kan.bn/kan, acessando as <1>configurações do workspace e adquirindo uma assinatura pro do workspace. Todas as assinaturas ajudam a financiar o desenvolvimento do projeto!" }, "kSxwQL": { "message": "You can invite team members by clicking the \"Invite\" button in the top right corner of the <0>members page and entering their email address. They will receive an email with a link to join the workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 111 + ] + ], "translation": "Você pode convidar membros da equipe clicando no botão \"Convidar\" no canto superior direito da <0>página de membros e inserindo o endereço de e-mail deles. Eles receberão um e-mail com um link para entrar no workspace." }, "vAj6xG": { "message": "You can self-host by following the instructions in our <0>repo.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 127]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 127 + ] + ], "translation": "Você pode fazer self-host seguindo as instruções em nosso <0>repositório." }, "h2FKMV": { @@ -6807,14 +11703,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/List.tsx", 117], - ["src/views/board/components/UpdateBoardSlugButton.tsx", 58], - ["src/views/board/components/VisibilityButton.tsx", 72], - ["src/views/board/index.tsx", 604], - ["src/views/board/index.tsx", 662], - ["src/views/boards/components/BoardsList.tsx", 71], - ["src/views/boards/index.tsx", 59], - ["src/views/boards/index.tsx", 80] + [ + "src/views/board/components/List.tsx", + 117 + ], + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 58 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 72 + ], + [ + "src/views/board/index.tsx", + 608 + ], + [ + "src/views/board/index.tsx", + 667 + ], + [ + "src/views/boards/components/BoardsList.tsx", + 71 + ], + [ + "src/views/boards/index.tsx", + 59 + ], + [ + "src/views/boards/index.tsx", + 80 + ] ], "translation": "Você não tem permissão" }, @@ -6822,49 +11742,180 @@ "message": "You have been logged in successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 233]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 233 + ] + ], "translation": "Você foi autenticado com sucesso." }, "mchgzf": { "message": "You have been signed up successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 216]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 216 + ] + ], "translation": "Você se cadastrou com sucesso." }, "raHesj": { "message": "You have been unsubscribed!", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 98]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 98 + ] + ], "translation": "Você cancelou a inscrição!" }, "R275Pz": { "message": "You have unlimited seats with your Pro Plan. There is no additional charge for new members!", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 326]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 326 + ] + ], "translation": "Você tem assentos ilimitados com seu plano pro. Não há cobrança adicional para novos membros!" }, "MdN5zD": { "message": "You need to be an admin to manage workspace permissions.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 86 + ] + ], "translation": "Você precisa ser um administrador para gerenciar as permissões do workspace." }, + "Cb5YSG": { + "message": "You were added to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 33 + ] + ], + "translation": "" + }, + "EYpSRU": { + "message": "You were added to a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 34 + ] + ], + "translation": "" + }, + "j77sVH": { + "message": "You were assigned to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 45 + ] + ], + "translation": "" + }, + "4sxGcV": { + "message": "You were assigned to a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 46 + ] + ], + "translation": "" + }, + "9HDx2Z": { + "message": "You were mentioned in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 29 + ] + ], + "translation": "" + }, + "e6wIqm": { + "message": "You were mentioned in a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 30 + ] + ], + "translation": "" + }, + "11dHnN": { + "message": "You were removed from", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 37 + ] + ], + "translation": "" + }, + "YdIn4I": { + "message": "You were removed from a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 38 + ] + ], + "translation": "" + }, "2SePRT": { "message": "You've been invited to join a workspace on kan.bn.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 134]], + "origin": [ + [ + "src/views/invite/index.tsx", + 134 + ] + ], "translation": "Você foi convidado para entrar em um workspace no kan.bn." }, "uOqaMC": { "message": "You've been invited to join a workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 135]], + "origin": [ + [ + "src/views/invite/index.tsx", + 135 + ] + ], "translation": "Você foi convidado para entrar em um workspace." }, "GoDLB9": { @@ -6872,7 +11923,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 28 + ] ], "translation": "Sua conta foi excluída." }, @@ -6880,49 +11934,84 @@ "message": "Your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 229]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 229 + ] + ], "translation": "Seu avatar" }, "evg7+A": { "message": "Your boards have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 382]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 382 + ] + ], "translation": "Seus quadros foram importados." }, "LqWW5F": { "message": "Your display name has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 42]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 42 + ] + ], "translation": "Seu nome de exibição foi atualizado." }, "tca56/": { "message": "Your file has been uploaded successfully.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 46]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 46 + ] + ], "translation": "Seu arquivo foi enviado com sucesso." }, "HcT8J4": { "message": "Your GitHub account has been connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 100 + ] + ], "translation": "Sua conta do GitHub foi conectada." }, "AdxYds": { "message": "Your GitHub account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 123]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 123 + ] + ], "translation": "Sua conta do GitHub foi desconectada." }, "PELbXB": { "message": "Your GitHub account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 220]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 220 + ] + ], "translation": "Sua conta do GitHub está conectada." }, "Ozt2vv": { @@ -6930,7 +12019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 70] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 70 + ] ], "translation": "Sua senha foi alterada." }, @@ -6938,49 +12030,108 @@ "message": "Your profile image has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 190]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 190 + ] + ], "translation": "Sua imagem de perfil foi atualizada." }, "+jbXzb": { "message": "Your projects have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 230]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 230 + ] + ], "translation": "Seus projetos foram importados." }, + "0AfkMq": { + "message": "Your role changed in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 41 + ] + ], + "translation": "" + }, + "GKeVeM": { + "message": "Your role was changed", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 42 + ] + ], + "translation": "" + }, "CJWDTP": { "message": "Your Trello account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 80]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 80 + ] + ], "translation": "Sua conta do Trello foi desconectada." }, "WRsbHO": { "message": "Your Trello account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 171]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 171 + ] + ], "translation": "Sua conta do Trello está conectada." }, "25fAUC": { "message": "Your unsubscribe link is missing a token. Please open the latest email and try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 33]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 33 + ] + ], "translation": "Seu link de cancelamento de inscrição está sem um token. Por favor, abra o e-mail mais recente e tente novamente." }, "GRAGsB": { "message": "Your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 322]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 322 + ] + ], "translation": "Seu workspace" }, "j0o6ml": { "message": "Your workspace description", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 325]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 325 + ] + ], "translation": "Descrição do seu workspace" }, "GnSSGm": { @@ -6988,7 +12139,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 51] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 51 + ] ], "translation": "A descrição do seu workspace foi atualizada." }, @@ -6997,7 +12151,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 27 + ] ], "translation": "Seu workspace foi excluído." }, @@ -7006,7 +12163,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 46] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 46 + ] ], "translation": "O nome do seu workspace foi atualizado." }, @@ -7015,7 +12175,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 63 + ] ], "translation": "O slug do seu workspace foi atualizado." }, @@ -7024,8 +12187,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 197], - ["src/views/onboarding/workspace-details/index.tsx", 198] + [ + "src/views/onboarding/workspace-details/index.tsx", + 197 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 198 + ] ], "translation": "seu-workspace" }, @@ -7033,7 +12202,12 @@ "message": "YouTube URL", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 147]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 147 + ] + ], "translation": "URL do YouTube" } } \ No newline at end of file diff --git a/apps/web/src/locales/pt-BR/messages.ts b/apps/web/src/locales/pt-BR/messages.ts index 5375d6ea4..9ee7456df 100644 --- a/apps/web/src/locales/pt-BR/messages.ts +++ b/apps/web/src/locales/pt-BR/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Redes sociais\"],\"+3TYXa\":[\"Para sustentabilidade a longo prazo, reconhecemos que todos os bons projetos de código aberto precisam de uma fonte de receita. A nossa vem da oferta paga na nuvem para espaços de trabalho com múltiplos usuários e para slugs de espaço de trabalho personalizados. Não há obrigação de usá-la, e você pode hospedar o software em sua própria infraestrutura gratuitamente.\"],\"+5kO8P\":[\"Sábado\"],\"+8Nek/\":[\"Mensal\"],\"+EkBs0\":[\"Não foi possível atualizar suas preferências. Tente novamente.\"],\"+MdEsf\":[\"A nova senha é obrigatória\"],\"+OhFss\":[\"Comece gratuitamente, sem limites de uso. Para colaboração, faça upgrade para um plano que se ajuste ao tamanho da sua equipe.\"],\"+VoTOr\":[\"cobrado mensalmente\"],\"+djOzj\":[\"Convidar membro\"],\"+h2faV\":[\"Configurações | Webhooks\"],\"+jbXzb\":[\"Seus projetos foram importados.\"],\"+nvZ6j\":[\"Etiquetas e filtros\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Modelo\"],\"/asTmx\":[\"Relatório de bug\"],\"/bBVaD\":[\"GitHub desconectado\"],\"/bZzdR\":[\"Menções\"],\"/f3t6v\":[\"Configure quais ações são permitidas para cada função do workspace. Essas permissões se aplicam a todos os membros com essa função.\"],\"/gaSVU\":[\"Roadmap\"],\"/glL9Q\":[\"Nenhum \",[\"0\"]],\"/jd3aj\":[\"Funções avançadas de administrador\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"Um aplicativo kanban poderoso e flexível que ajuda você a organizar o trabalho, acompanhar o progresso e entregar resultados — tudo em um só lugar.\"],\"/tOdd2\":[\"Sua imagem de perfil foi atualizada.\"],\"0+0/3e\":[\"Criar nova etiqueta\"],\"0+ewPp\":[\"Melhoria\"],\"02i3WU\":[\"Importações\"],\"06EQqT\":[\"Duplicando…\"],\"0KjpAr\":[\"Pode visualizar membros\"],\"0RE1AJ\":[\"Os quadros que você arquivar aparecerão aqui.\"],\"0StR7t\":[\"Insira sua nova senha\"],\"0jV46i\":[\"Não foi possível excluir item da checklist\"],\"0qyZ4b\":[\"Carregando permissões...\"],\"0rPv1T\":[\"Imagem de perfil atualizada\"],\"0utuU6\":[\"Copiar checklists\"],\"0xD8Of\":[\"A página que você está procurando não existe ou foi movida.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Importar quadro (1)\"],\"other\":[\"Importar quadros (\",[\"boardCount\"],\")\"]}]],\"14Xi3Z\":[\"Adicionar um novo membro custará \",[\"price\"],\" (\",[\"billingType\"],\") adicionais por assento.\"],\"1H5u1m\":[\"Dúvidas?\"],\"1WuwiM\":[\"Ir para configurações\"],\"1bJKhj\":[\"Copiar link do cartão\"],\"1hzdxO\":[\"Permissões do workspace\"],\"1iShX0\":[\"Vence hoje\"],\"1njn7W\":[\"Claro\"],\"1rVAfU\":[\"Carregar mais atividades\"],\"1rWxEw\":[\"Aguardando cliente\"],\"1sRmLC\":[\"Discuta e colabore em cartões.\"],\"1wCGT0\":[\"Quadros ilimitados\"],\"25fAUC\":[\"Seu link de cancelamento de inscrição está sem um token. Por favor, abra o e-mail mais recente e tente novamente.\"],\"25mvI+\":[\"Links de convite exigem uma assinatura Team ou Pro. Faça upgrade do seu workspace.\"],\"29sSki\":[\"concluiu o item da checklist <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"Lista\"],\"2Bu8xj\":[\"Nenhum quadro encontrado\"],\"2M84k3\":[\"Permissões personalizadas\"],\"2MPcep\":[\"Importação concluída\"],\"2POOFK\":[\"Grátis\"],\"2Py5S/\":[\"Reconheço que todos os dados do workspace serão permanentemente excluídos e desejo prosseguir.\"],\"2Q871c\":[\"Não foi possível adicionar etiqueta\"],\"2QGEbi\":[\"Não foi possível excluir o comentário\"],\"2SePRT\":[\"Você foi convidado para entrar em um workspace no kan.bn.\"],\"2X4ecw\":[\"Webhook excluído com sucesso\"],\"2h4PVB\":[\"O nome do seu workspace foi atualizado.\"],\"2liqDZ\":[\"Reconheço que todos os dados da minha conta serão permanentemente excluídos e desejo prosseguir.\"],\"2q/Q7x\":[\"Visibilidade\"],\"2roTVj\":[\"Feedback enviado\"],\"3LDCpD\":[\"Esta ação não pode ser desfeita.\"],\"3WXdoZ\":[\"Você pode alterar isso depois nas configurações.\"],\"3ZjRJY\":[\"renomeou a lista de verificação <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Qualquer pessoa com este link pode entrar no seu workspace\"],\"3d54Wj\":[\"Webhook atualizado com sucesso\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Conectar GitHub\"],\"3pIq39\":[\"Funções de administrador\"],\"479pdJ\":[\"Confirme sua nova senha\"],\"4DOCMI\":[\"URL do YouTube\"],\"4Revpc\":[\"Pequeno\"],\"4RoY9J\":[\"Post de blog\"],\"4XF0BB\":[\"Foto de perfil\"],\"4gAX8s\":[\"Alternar menu\"],\"4kJRen\":[\"Escrevendo\"],\"4obmDr\":[\"404 - Página Não Encontrada | kan.bn\"],\"51UCsN\":[\"Mover para outra lista\"],\"53QYh8\":[\"Falha ao criar quadro\"],\"55xJ/O\":[\"Erro ao alterar senha\"],\"58AiWX\":[\"Confirme sua nova senha\"],\"5ACX4z\":[\"Newsletter\"],\"5IXWmO\":[\"Verifique sua caixa de entrada\"],\"5P4rhH\":[\"Não foi possível atualizar os membros\"],\"5RkSzq\":[\"Copiar link do quadro\"],\"5eZwRW\":[\"Conecte sua conta do Trello para importar quadros.\"],\"5h8ooz\":[\"Chaves de API\"],\"5iplxh\":[\"A nova senha deve ser diferente da senha atual\"],\"5k0NLb\":[\"Revisão\"],\"5lWFkC\":[\"Entrar\"],\"5ntVtp\":[\"Falha ao testar webhook\"],\"5y6qY8\":[\"adicionou um anexo\"],\"69b7aE\":[\"Abrir menu de comandos\"],\"6EWT6T\":[\"Recrutamento\"],\"6FDocz\":[\"Cadastrar com \"],\"6FsGbN\":[\"Comece criando um novo \",[\"0\"]],\"6OTo9n\":[\"O nome do template é obrigatório\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Novo \",[\"0\"]],\"6YtxFj\":[\"Nome\"],\"6mbe4b\":[\"Indivíduos\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"As permissões do membro foram atualizadas.\"],\"6uBU1F\":[\"Acesso completo à API\"],\"6zeSBB\":[\"Pode criar cartões\"],\"74F7N/\":[\"Tem certeza de que deseja excluir sua conta?\"],\"7EhE4k\":[\"Atualizar etiqueta\"],\"7L01XJ\":[\"Ações\"],\"7PzzBU\":[\"Usuário\"],\"7RpHg/\":[\"Nome de usuário personalizado\"],\"7Ufoyg\":[\"Listas ilimitadas\"],\"7aONWr\":[\"A URL não pode exceder 2048 caracteres\"],\"7b2yuC\":[\"Por favor, insira uma senha válida\"],\"7d1a0d\":[\"Público\"],\"7eMo+U\":[\"Ir para a página inicial\"],\"7hktsm\":[\"Primeiros passos\"],\"7i8j3G\":[\"Empresa\"],\"8+BY11\":[\"URL do quadro copiada para a área de transferência\"],\"86FLn5\":[\"Uploads de arquivos ilimitados\"],\"86XI28\":[\"Confirme suas preferências de e-mail:\"],\"8AbRER\":[\"Definir data de vencimento\"],\"8AwlaR\":[\"Membros ilimitados e um nome de usuário personalizado para equipes prontas para crescer.\"],\"8F1i42\":[\"Página não encontrada\"],\"8Is1ih\":[\"Oferta de lançamento\"],\"8RdLDU\":[\"Projeto pessoal\"],\"8TveY+\":[\"Quadros\"],\"8Z4pNX\":[\"Pode criar listas\"],\"8iP0S8\":[\"Tudo do plano gratuito, mais:\"],\"8iP9oQ\":[\"O teste do webhook falhou\"],\"8yFGGF\":[\"Não foi possível remover o membro\"],\"99VIgC\":[\"Remover membro\"],\"9PaIxv\":[\"Recursos principais\"],\"9Xigls\":[\"Em análise\"],\"9YPBHv\":[\"Falha ao excluir webhook\"],\"9cDpsw\":[\"Permissões\"],\"9eF5oV\":[\"Bem-vindo de volta\"],\"9h7RDh\":[\"Oferta\"],\"9lFfqv\":[\"/mês\"],\"9s9O5h\":[\"Erro ao excluir workspace\"],\"9u5BOr\":[\"Membros | \",[\"0\"]],\"9wdpwp\":[\"Portal de cobrança\"],\"9x4DAL\":[[\"0\"],\" não encontrado\"],\"9y1RcT\":[\"Estamos apenas começando. \"],\"A23Y7X\":[\"Entrar no workspace | kan.bn\"],\"A42Dqn\":[\"Marca personalizada\"],\"A5hiCy\":[\"Criar template\"],\"A8jqN7\":[\"Não foi possível enviar o feedback\"],\"ABCjd9\":[\"Publicação\"],\"ADEin1\":[\"Configurações | Faturamento\"],\"ALhEZV\":[\"Pode convidar membros\"],\"ANyn0x\":[\"Tudo que você precisa, grátis para sempre. Quadros ilimitados, listas ilimitadas, cartões ilimitados. Faça upgrade a qualquer momento.\"],\"ARvBT/\":[\"cobrado anualmente\"],\"ASjvm9\":[\"URL do workspace\"],\"AUYALh\":[\"Em breve\"],\"AX4ktp\":[\"Criação de conteúdo\"],\"AZI/wb\":[\"Etiquetas e filtros\"],\"AdxYds\":[\"Sua conta do GitHub foi desconectada.\"],\"AeXO77\":[\"Conta\"],\"Alp2ti\":[\"Falar com vendas\"],\"Ax/hYa\":[\"A descrição do workspace não pode exceder 280 caracteres\"],\"B3xxao\":[\"Adicionar um cartão\"],\"BBUDfW\":[\"Urgente\"],\"BEVzjL\":[\"Falha na importação\"],\"BJbLe4\":[\"Estamos usando a <0>licença AGPL-3.0.\"],\"BMkVQ3\":[\"excluiu a checklist <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"moveu o cartão de <0>\",[\"0\"],\" para <1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Duplicar cartão\"],\"BZkYSt\":[\"removeu \",[\"0\"],\" etiquetas: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Tem certeza de que deseja excluir o workspace \",[\"0\"],\"?\"],\"Bhgd0l\":[\"Entre em contato\"],\"BzEFor\":[\"ou\"],\"C56tim\":[\"Não foi possível atualizar a data de vencimento\"],\"C6gv54\":[\"O quadro foi desarquivado.\"],\"CAL6E9\":[\"Equipes\"],\"CB/NpV\":[\"Alta prioridade\"],\"CHZ1jC\":[\"excluiu o item da checklist <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Por favor, insira um nome válido\"],\"CJWDTP\":[\"Sua conta do Trello foi desconectada.\"],\"CJukzS\":[[\"0\"],\" etiquetas\"],\"CTqTgr\":[\"Atalhos\"],\"CYWHT+\":[\"Erro ao fazer upload da imagem de perfil\"],\"Cd4sTD\":[\"Ideal para indivíduos e criadores solo que estão começando\"],\"Ci/KUX\":[\"Configurações | Workspace\"],\"CkVV1t\":[\"Erro ao atualizar descrição do workspace\"],\"Cmudpi\":[\"Pode excluir workspace\"],\"CozWO1\":[\"Nome do workspace\"],\"CujNX4\":[\"adicionou um anexo <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"Sistema\"],\"D0esZz\":[\"Registro de atividades\"],\"D3C4Yx\":[\"Senha atual é obrigatória\"],\"D7/JvJ\":[\"Ajuste o recorte quadrado para caber no seu avatar.\"],\"D9ROdV\":[\"Links de convite\"],\"DAV3uK\":[\"Permissões atualizadas\"],\"DBC3t5\":[\"Domingo\"],\"DFjdv0\":[\"Excluir modelo\"],\"DMeWZD\":[\"Tem certeza de que deseja excluir este \",[\"0\"],\"?\"],\"DPfwMq\":[\"Concluído\"],\"DSGzV+\":[\"Nome de usuário do workspace\"],\"DahTzR\":[\"Não foi possível excluir checklist\"],\"DbZgsJ\":[\"Criar modelo\"],\"DtXlZq\":[\"Não foi possível atualizar a checklist\"],\"Dz63YI\":[\"Ocorreu um erro ao desconectar sua conta do GitHub.\"],\"E0t3jO\":[\"adicionou item do checklist <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Preço por assento\"],\"E8zYtd\":[\"removeu a atribuição de <0>\",[\"0\"],\" do cartão\"],\"ECJKc4\":[\"Chave de API criada\"],\"EEHmPC\":[\"Oferta de lançamento: membros ilimitados com Pro\"],\"EH8IL3\":[\"Checklists\"],\"EII/X8\":[\"Todos os recursos Teams +\"],\"ERpq2P\":[\"Nenhum resultado encontrado para \\\"\",[\"debouncedQuery\"],\"\\\".\"],\"ESClHO\":[\"Suporte prioritário por e-mail\"],\"Eg99Sc\":[\"Nenhum método de autenticação está disponível no momento\"],\"Eit43O\":[\"definiu a data de vencimento\"],\"EkH9pt\":[\"Atualizar\"],\"EvArWh\":[\"Colabore perfeitamente com sua equipe.\"],\"F/FPk/\":[\"Configurações | Permissões\"],\"F/vB2g\":[\"Ideias para melhorar esta página...\"],\"F0YmUY\":[\"Copiar link do cartão\"],\"F3bW6y\":[\"Plataforma\"],\"F4KRmY\":[\"$8/mês\"],\"F4PLG4\":[\"Descrição do workspace atualizada\"],\"F6m23G\":[\"Upload de arquivos\"],\"F6pfE9\":[\"Ativo\"],\"F8DaWi\":[\"Somente visualização\"],\"FEr96N\":[\"Tema\"],\"FdtSNC\":[\"Criar workspace\"],\"FmN5me\":[\"Resolução\"],\"FmfJjN\":[\"Visualize e gerencie suas chaves de API.\"],\"Fpci8b\":[\"Tem certeza de que deseja excluir esta checklist?\"],\"G1Gw0v\":[\"Novo modelo\"],\"GAD3Dx\":[\"Domínio personalizado\"],\"GDvlUT\":[\"Função\"],\"GRAGsB\":[\"Seu workspace\"],\"GYv20o\":[\"Não foi possível atualizar as permissões\"],\"GdWB+V\":[\"Webhook criado com sucesso\"],\"GnRmu4\":[\"Nome da checklist\"],\"GnSSGm\":[\"A descrição do seu workspace foi atualizada.\"],\"GoDLB9\":[\"Sua conta foi excluída.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Roadmap estendido\"],\"Gxxi5J\":[\"Adicionar checklist\"],\"H5G+qG\":[\"Qual é a diferença entre Kan e Trello?\"],\"HBI6nY\":[\"Precisa de ajuda?\"],\"HO+uOC\":[\"Triagem\"],\"HQVm6e\":[\"Esta URL já está em uso\"],\"HVIzNO\":[\"Pode visualizar listas\"],\"HYV6Lq\":[\"Falha ao aceitar convite. Por favor, tente novamente mais tarde ou entre em contato com o suporte.\"],\"HcT8J4\":[\"Sua conta do GitHub foi conectada.\"],\"HeFWjW\":[\"Próximos passos\"],\"Hf1cEZ\":[\"A URL do webhook é obrigatória\"],\"Hg1qE9\":[\"O slug do seu workspace foi atualizado.\"],\"I+AROe\":[\"Pode editar cartões\"],\"I0gAKM\":[\"Não foi possível atualizar a lista\"],\"IDvohQ\":[\"marcou um item da checklist como incompleto\"],\"IFgUX6\":[\"Pode remover membros\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Fazer upgrade para Pro\"],\"Iqh0Uv\":[\"Planejado\"],\"IqjpYe\":[\"Visibilidade do email\"],\"IrZaAn\":[\"Senha alterada\"],\"It4/FS\":[\"Desarquivar quadro\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Continuar com \"],\"J4+OTA\":[\"Mover para lista\"],\"J5nbej\":[\"Crítico\"],\"J5pbP6\":[\"Pode editar funções e permissões de membros\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JCdzgZ\":[\"Solicitação de funcionalidade\"],\"JUce1S\":[\"Responsáveis\"],\"JbXXUW\":[\"Tenha em mente que esta ação é irreversível.\"],\"JcCDm9\":[\"Modelo criado\"],\"Jgaz7E\":[\"Permissões redefinidas\"],\"JjEJSy\":[\"Configure seu workspace\"],\"JnWJXY\":[\"magic link\"],\"JxhWxU\":[\"em\"],\"JyXBgS\":[\"docs\"],\"K3iLeO\":[\"Veja o que nossos usuários estão dizendo sobre o Kan\"],\"K7k9u3\":[\"Não foi possível mover o cartão\"],\"KAsRdK\":[\"Ir para membros\"],\"KEim/+\":[\"removeu um anexo\"],\"KFJgmZ\":[\"O nome de exibição deve ter pelo menos 3 caracteres\"],\"KLJ4eD\":[\"Link de convite copiado\"],\"KM6m8p\":[\"Equipe\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Controles avançados de administrador\"],\"KiVc+q\":[\"Tempo integral\"],\"KuSt9W\":[\"Como faço auto-hospedagem?\"],\"L5WQLg\":[\"Token é obrigatório\"],\"L5ZPjz\":[\"atualizou um item da checklist\"],\"LTGE7Y\":[\"Workspace criado com sucesso. Você pode fazer upgrade depois nas configurações.\"],\"LeM5RY\":[\"Não foi possível limpar substituições\"],\"LoUCpj\":[\"Erro ao atualizar nome do workspace\"],\"LqWW5F\":[\"Seu nome de exibição foi atualizado.\"],\"LrcnbT\":[\"Hospede o Kan em sua própria infraestrutura. Ideal para organizações que precisam de controle total sobre seus dados.\"],\"Lt+ZP3\":[\"concluiu um item da checklist\"],\"M9p3Vw\":[\"Registro de atividades ilimitado\"],\"MCIXdZ\":[\"Conecte sua conta do GitHub para importar projetos.\"],\"MFKlMB\":[\"Convidar\"],\"MHrjPM\":[\"Título\"],\"MI5OBT\":[\"A URL pode conter apenas letras, números e hífens\"],\"MK16u2\":[\"Nenhuma data\"],\"MKAScN\":[\"Pode visualizar quadros\"],\"MN6YzG\":[\"Slug do workspace atualizado\"],\"MWrbWq\":[\"Configurações | Conta\"],\"MdN5zD\":[\"Você precisa ser um administrador para gerenciar as permissões do workspace.\"],\"MdwUGG\":[\"Economize tempo com modelos de quadro reutilizáveis.\"],\"MeO/vH\":[\"Isso resultará na exclusão permanente de todos os dados associados a este workspace.\"],\"MlyjJu\":[\"O nome de exibição não pode exceder 280 caracteres\"],\"MxQXhL\":[\"Não foi possível criar workspace\"],\"N/bcWA\":[\"Login | kan.bn\"],\"N3380t\":[\"Pode criar quadros\"],\"N7aud6\":[\"Busca inteligente\"],\"NH54UR\":[\"renomeou o item da lista de verificação para <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"O quadro foi arquivado.\"],\"NgaR6B\":[\"Insira sua senha\"],\"NnH3pK\":[\"Testar\"],\"NoNwIX\":[\"Inativo\"],\"NypLoL\":[\"renomeou uma lista de verificação\"],\"O0li0W\":[\"Insira sua senha atual e escolha uma nova senha segura.\"],\"O1wAlQ\":[\"Convidado\"],\"O3oNi5\":[\"Email\"],\"O83K21\":[\"adicionou um item do checklist\"],\"O9jVbx\":[\"Prioridade baixa\"],\"OAYToL\":[\"Isso removerá todas as permissões personalizadas de membros neste workspace. Os membros herdarão permissões apenas de suas funções.\"],\"OIA0ad\":[\"Nome do workspace atualizado\"],\"OTxjpR\":[\"seu-workspace\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Desconectar GitHub\"],\"Oi+J+N\":[\"Escolha um plano para começar. Todos os planos pagos incluem 14 dias de teste grátis.\"],\"OkTY4+\":[\"O segredo não pode exceder 512 caracteres\"],\"Oo4E6p\":[\"Não foi possível duplicar o cartão\"],\"OpNhRn\":[\"Não é necessário cartão de crédito\"],\"OtjenF\":[\"Por favor, insira um endereço de e-mail válido\"],\"OvoEq7\":[\"Membro\"],\"OwneeH\":[\"Nome de usuário do workspace personalizado\"],\"Ozt2vv\":[\"Sua senha foi alterada.\"],\"P6dJdq\":[\"Substituições removidas\"],\"P8Cunr\":[\"Nome de usuário padrão\"],\"PCIlOO\":[\"Adicionar membro\"],\"PELbXB\":[\"Sua conta do GitHub está conectada.\"],\"PRjvDT\":[\"Tem certeza de que deseja excluir este comentário?\"],\"PRofO0\":[\"Editar vídeo do YouTube\"],\"PTzsxH\":[\"Visibilidade do quadro atualizada\"],\"PVT7q7\":[\"GitHub conectado\"],\"PZCqeW\":[\"Por favor, tente novamente mais tarde.\"],\"Pat4r8\":[\"Roadmap básico\"],\"PpZkda\":[\"Funcionalidades\"],\"PyYD/v\":[\"atribuiu <0>\",[\"0\"],\" ao cartão\"],\"Q60WUZ\":[\"Não foi possível iniciar o checkout\"],\"Q9pQaX\":[\"Nenhuma função encontrada para este workspace ainda.\"],\"QD8opX\":[\"Quadro\"],\"QHhZeE\":[\"Template criado com sucesso\"],\"QNtP5M\":[\"Usar template\"],\"Qh7QmR\":[\"Removido dos favoritos\"],\"QnzD50\":[\"On-premise\"],\"QtACvI\":[\"Criar etiqueta\"],\"Qtzfdk\":[\"Plano Pro ∞\"],\"R+w/Va\":[\"Cobrança\"],\"R1c3Mq\":[\"O nome do quadro é obrigatório\"],\"R275Pz\":[\"Você tem assentos ilimitados com seu plano pro. Não há cobrança adicional para novos membros!\"],\"R3FsF4\":[\"Falha no download\"],\"R41XLH\":[\"Falha ao atualizar webhook\"],\"R6pB8R\":[\"Favoritar no Github\"],\"RHZu7R\":[\"Amado por equipes no mundo todo\"],\"RJA+sg\":[\"Novo ticket\"],\"RRn9jf\":[\"Clique no link que enviamos para \",[\"magicLinkRecipient\"],\" para fazer login.\"],\"RSGOS1\":[\"Pode excluir listas\"],\"RfgJqw\":[\"atualizou a data de vencimento\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Enviar feedback\"],\"RtlIYB\":[\"Você está prestes a alterar sua senha.\"],\"RzxgOE\":[\"Funções e permissões\"],\"SFnH1j\":[\"Por que fazer um Trello de código aberto?\"],\"SMaFdc\":[\"Cancelar inscrição\"],\"SNfg0e\":[\"Pode visualizar workspace\"],\"SPLN9O\":[\"Seja dono dos seus dados\"],\"SRvxId\":[\"Segredo HMAC para verificação de assinatura\"],\"STSYcd\":[\"Pode excluir comentários\"],\"SUXBxp\":[\"Engenharia\"],\"SUvm1Y\":[\"Bom para indivíduos começando que precisam apenas do essencial.\"],\"SWEskc\":[\"A URL deve ter pelo menos 3 caracteres\"],\"Sb2gYF\":[\"Nova lista\"],\"ScJ9fj\":[\"Política de privacidade\"],\"Se/UIp\":[\"A fazer\"],\"SiPp29\":[\"Criar webhook\"],\"SkCNhl\":[\"Pesquisar quadros e cartões...\"],\"SlfejT\":[\"Erro\"],\"T/pF0Z\":[\"Remover dos favoritos\"],\"T21jY/\":[\"adicionou uma etiqueta ao cartão\"],\"T7DJ2k\":[\"Não foi possível adicionar comentário\"],\"T7LJic\":[\"moveu o cartão para outra lista\"],\"T7Mywq\":[\"Não foi possível atualizar o quadro\"],\"TCOMOO\":[\"Editar permissões\"],\"TCt/8K\":[\"Acesso limitado à API\"],\"TFv5tM\":[\"Não foi possível atualizar a função\"],\"TH3Irz\":[\"Permissão\"],\"TKFUnX\":[\"Conta excluída\"],\"TX0bT7\":[\"Nenhum webhook configurado. Adicione um webhook para receber notificações.\"],\"TXO5TM\":[\"Nenhum atalho de teclado registrado.\"],\"TYli1B\":[\"Pode editar comentários\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Revisão de código\"],\"TdfEV7\":[\"Arquivado\"],\"TjREUS\":[\"Nova chave de API\"],\"TmvrjU\":[\"A URL do quadro deve ter pelo menos 3 caracteres\"],\"TvY/XA\":[\"Documentação\"],\"Tz0i8g\":[\"Configurações\"],\"TztLaN\":[\"Não foi possível criar lista\"],\"U2+rn0\":[\"O nome do webhook é obrigatório\"],\"U3pytU\":[\"Administrador\"],\"U5dMR6\":[\"Ver workspace\"],\"UCLeG0\":[\"Termos de serviço\"],\"UGCIzB\":[\"Adicionar / editar etiqueta\"],\"UQbwrz\":[\"Todos os sistemas operacionais\"],\"URAE3q\":[\"Pausado\"],\"USVCGU\":[\"Erro ao desativar link de convite\"],\"UbRKMZ\":[\"Pendente\"],\"UbYdrA\":[\"Frequência de pagamento\"],\"UeDFpo\":[\"Como o projeto é financiado?\"],\"UirJfL\":[\"SLA personalizado\"],\"UlhdTP\":[\"Workspace excluído\"],\"Un80BR\":[\"Amigos OSS\"],\"UoSI+i\":[\"Ideal para equipes pequenas e em crescimento que precisam de colaboração\"],\"UveK6V\":[\"Ir para o app\"],\"Uworke\":[\"Meio período\"],\"UxKoFf\":[\"Navegação\"],\"V1KOLq\":[\"Notificações por email para menções\"],\"V3MPSQ\":[\"atualizou o título\"],\"V8YWP3\":[\"Insira um título personalizado\"],\"VHS0aJ\":[\"Limpar todas as permissões personalizadas?\"],\"VKoDQD\":[\"Criar novo \",[\"0\"]],\"VUZDlr\":[\"Depoimentos\"],\"VXk54Y\":[\"autoatribuiu o cartão\"],\"VbyRUy\":[\"Comentários\"],\"VhMDMg\":[\"Alterar senha\"],\"Vt50G1\":[\"Kanban básico\"],\"W/Elkg\":[\"Prioridade média\"],\"W/nQk1\":[\"Plano gratuito\"],\"W1ewR0\":[\"Não foi possível copiar link\"],\"W5r8Qh\":[\"excluiu um item da checklist\"],\"W8oT+L\":[\"Falha ao buscar informações do vídeo\"],\"WHHLh9\":[\"Não foi possível excluir anexo\"],\"WI4eGo\":[\"Como obtenho uma URL personalizada?\"],\"WQPDcG\":[\"Não foi possível atualizar o item da checklist\"],\"WRkpB1\":[\"Cadastro desabilitado\"],\"WRsbHO\":[\"Sua conta do Trello está conectada.\"],\"WYDptz\":[\"Assinatura necessária\"],\"WYwN1G\":[\"Nova importação\"],\"WbTDwg\":[\"Em andamento\"],\"Weq9zb\":[\"Geral\"],\"WmPhYW\":[\"Ocorreu um erro ao desconectar sua conta do Trello.\"],\"WnEwDO\":[\"Já tem uma conta? <0><1>Entrar\"],\"Ws+3X+\":[\"Assentos ilimitados e recursos avançados para equipes em crescimento.\"],\"Wy6pcF\":[\"Não foi possível atualizar a visibilidade do quadro\"],\"X0N0PA\":[\" (editado)\"],\"XDRXbZ\":[\"A descrição do workspace deve ter pelo menos 3 caracteres\"],\"XEoGkQ\":[\"Ir para a página inicial\"],\"XILg0L\":[\"Endereço de e-mail inválido\"],\"XJOV1Y\":[\"Atividade\"],\"XNxYxq\":[\"Modelos de quadro\"],\"XTKtey\":[\"Criar lista\"],\"XXbgHS\":[\"Contratado\"],\"XYLcNv\":[\"Suporte\"],\"XicmhT\":[\"Data de vencimento\"],\"Xid3K6\":[\"A URL do quadro pode conter apenas letras, números e hífens\"],\"Xjj/kS\":[\"Kanban reimaginado\"],\"XpcjLO\":[\"Não foi possível atualizar a URL do quadro\"],\"Y8yzGg\":[\"Comece grátis. Faça upgrade conforme sua equipe cresce. Sem taxas ocultas, sem contratos.\"],\"YBBifR\":[\"Desconectar Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Não foi possível reordenar o item da checklist\"],\"YRk79X\":[\"Segurança avançada, conformidade e suporte dedicado para grandes organizações.\"],\"YVT40D\":[\"removeu a etiqueta <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Erro ao fazer upgrade da assinatura\"],\"YcyP2z\":[\"Não foi possível criar template\"],\"Yf9FAx\":[\"Eles não poderão acessar este workspace.\"],\"YhvWXb\":[\"Análise do quadro\"],\"YirHq7\":[\"Feedback\"],\"YkfDoz\":[\"Anual\"],\"YoyKbT\":[\"Esta chave de API será mostrada apenas uma vez. Por favor, salve-a em um local seguro.\"],\"Ypy5pZ\":[\"Tem certeza de que deseja excluir o webhook \\\"\",[\"webhookName\"],\"\\\"? Esta ação não pode ser desfeita.\"],\"YtUfwW\":[\"Falha ao fazer login com \",[\"0\"],\". Por favor, tente novamente.\"],\"Yx0Ud8\":[\"Solicitado\"],\"Z3FXyt\":[\"Carregando...\"],\"Z3krJD\":[\"Permitir que membros do workspace vejam os endereços de e-mail uns dos outros\"],\"Z6r9z1\":[\"Não foi possível excluir card\"],\"ZAs2NN\":[\"Todos os recursos Pro +\"],\"ZDGm40\":[\"Excluir conta\"],\"ZDIydz\":[\"Começar\"],\"ZDPJBc\":[\"Nomes de usuário personalizados exigem atualização para um plano Pro\"],\"ZDo4HN\":[\"Brainstorming\"],\"ZH7TVS\":[\"Título do cartão\"],\"ZL1A+p\":[\"Falha ao fazer upload do anexo. Por favor, tente novamente.\"],\"ZT4Khw\":[\"Tem certeza de que deseja excluir este cartão?\"],\"ZU5IYI\":[\"Quadros ilimitados, listas ilimitadas, cartões ilimitados. Não é necessário cartão de crédito.\"],\"ZXSPJt\":[\"Ocorreu um erro inesperado. Por favor, tente novamente mais tarde.\"],\"ZqDqbi\":[\"Organize e encontre cartões rapidamente com ferramentas de filtragem poderosas.\"],\"Zz1qkk\":[\"Cartões ilimitados\"],\"a3LDKx\":[\"Segurança\"],\"aHCEmh\":[\"Preços\"],\"aHRWVI\":[\"removeu a data de vencimento\"],\"aJ4pMe\":[\"FAQs\"],\"aKJHG+\":[\"Arquivar quadro\"],\"aW3TOw\":[\"Notificações por email\"],\"aWDhU5\":[\"Kanban é melhor com uma equipe. Perfeito para equipes pequenas e em crescimento que buscam colaborar.\"],\"aWlSc/\":[\"Criar nova lista\"],\"abUZlY\":[\"Adicionar detalhes...\"],\"aelko+\":[\"Você pode obter uma URL personalizada para o workspace, como <0>kan.bn/kan, acessando as <1>configurações do workspace e adquirindo uma assinatura pro do workspace. Todas as assinaturas ajudam a financiar o desenvolvimento do projeto!\"],\"agPptk\":[\"Médio\"],\"aiHZVP\":[\"Ver documentação\"],\"b/LfJo\":[\"email\"],\"b3Thhd\":[\"Falha no upload\"],\"b5FKyH\":[\"adicionou etiqueta <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Criar \",[\"0\"]],\"bD8I7O\":[\"Concluir\"],\"bDI6VI\":[[\"0\"],\" foi removido dos seus favoritos.\"],\"bFREhu\":[\"Fim da lista\"],\"bJZm1W\":[\"Candidatos\"],\"bJtM0P\":[\"Esta URL de workspace está reservada\"],\"bKzM8L\":[\"Gerente de conta dedicado\"],\"bZSICm\":[\"Não foi possível adicionar item da checklist\"],\"bcIybO\":[\"O nome do workspace é obrigatório\"],\"bdztP2\":[\"Pesquisa\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"A função do membro foi atualizada.\"],\"bff61F\":[\"Plano de equipe\"],\"bfgr/e\":[\"Pergunta\"],\"bmXKoX\":[\"adicionou \",[\"0\"],\" etiquetas: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Erro ao excluir conta\"],\"c/IAuR\":[\"Importante\"],\"c3b0B0\":[\"Começar\"],\"c4nMcR\":[\"Seu avatar\"],\"c9AJhn\":[\"Entrar no workspace\"],\"cAgBMh\":[\"Controle e propriedade completos:\"],\"cFQEU/\":[\"Abrir atalhos de teclado\"],\"cOh+MI\":[\"Triagem\"],\"cWXW+7\":[\"Adicionar webhook\"],\"cWcxrL\":[\"Nova checklist\"],\"cWtfn1\":[\"Fazer upgrade para Pro ($29/mês)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Descrição do workspace\"],\"cji2nM\":[\"Erro ao criar link de convite\"],\"cnGeoo\":[\"Excluir\"],\"cp1rsD\":[\"Desativar link de convite\"],\"csFbe+\":[\"Ir para modelos\"],\"curoK5\":[\"Novo workspace\"],\"d+F6q9\":[\"Criado\"],\"d33Usy\":[\"Criar checklist\"],\"dEgA5A\":[\"Cancelar\"],\"dUh9QW\":[\"Planejamento\"],\"ddrz1m\":[\"Atrasado\"],\"delOXn\":[\"Não foi possível atualizar as etiquetas\"],\"dgr4Kq\":[\"Editar etiqueta\"],\"dmKdk0\":[\"Depois de excluir seu workspace, não há como voltar atrás. Esta ação não pode ser desfeita.\"],\"dsLT3m\":[\"Criar cartão\"],\"dtQIWT\":[\"Colaboração\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Esta URL de workspace já foi utilizada\"],\"e1v+J3\":[\"Segredo (opcional)\"],\"e4hPSt\":[\"Redefinir para padrões da função\"],\"eEQyz+\":[\"Acompanhe todas as alterações do card com histórico detalhado de atividades.\"],\"ePK91l\":[\"Editar\"],\"eZCGbT\":[\"Sim, oferecemos um plano gratuito para sempre para uso individual. Sem restrições, sem paywalls, sem limites.\"],\"edWbV6\":[\"Link copiado\"],\"ekCRTP\":[\"Rejeitado\"],\"en3oy5\":[\"Funcionalidade\"],\"euc6Ns\":[\"Duplicar\"],\"eus61c\":[\"Enviar teste\"],\"evg7+A\":[\"Seus quadros foram importados.\"],\"evj0lK\":[\"Vocês oferecem um plano gratuito?\"],\"f8fH8W\":[\"Design\"],\"f8lDFq\":[\"criou o cartão\"],\"fDQ7hA\":[\"Copiar etiquetas\"],\"fEY2vP\":[\"Cartão não encontrado\"],\"fQCrjt\":[\"A visibilidade do seu quadro foi definida como \",[\"0\"],\".\"],\"fR9laE\":[\"Insira sua senha atual\"],\"fSf2ee\":[\"Veja nosso roadmap.\"],\"fW5sSv\":[\"Editar webhook\"],\"fYVH36\":[\"Não foi possível atualizar o comentário\"],\"fcWrnU\":[\"Sair\"],\"fuwKpE\":[\"Por favor, tente novamente.\"],\"fvLNDy\":[\"Nenhuma lista foi criada ainda\"],\"fzGyWs\":[\"Altere o tamanho da fonte do aplicativo.\"],\"fziA2d\":[\"Comentários ilimitados\"],\"g2xBxu\":[\"Importar seus quadros do Trello para o Kan é fácil. Você pode seguir nosso guia passo a passo <0>aqui.\"],\"g9NChz\":[\"Gerente de conta\"],\"gGx5tM\":[\"Editando\"],\"gKmoow\":[\"Esta URL é reservada\"],\"gL/7jw\":[\"Adicionar descrição... (digite '/' para abrir comandos ou '@' para mencionar)\"],\"gQ/02p\":[\"Erro ao desconectar GitHub\"],\"gUX7b+\":[\"A alternativa open source <0/> ao Trello\"],\"gZxH/p\":[\"alterou a data de vencimento para <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"O nome do workspace não pode exceder 64 caracteres\"],\"gkxGkF\":[\"Teste gratuito de 14 dias · Mude de plano ou cancele a qualquer momento\"],\"gkzAEM\":[\"Continuar com \",[\"0\"]],\"goklcJ\":[\"Entrevistando\"],\"gpfJ3v\":[\"Grátis, para sempre\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"A URL do quadro não pode exceder 60 caracteres\"],\"h16FyT\":[\"Listas\"],\"h2FKMV\":[\"Você não tem permissão\"],\"h2ztFt\":[\"Todos os recursos gratuitos +\"],\"h4VV67\":[\"adicionou um checklist\"],\"h7MgpO\":[\"Atalhos de teclado\"],\"h8DugX\":[\"Etiquetas\"],\"hAMddS\":[\"removeu a própria atribuição do cartão\"],\"hB02vO\":[\"Gerenciar membros\"],\"hXMFoN\":[\"Nenhuma lista\"],\"hYzsXr\":[\"Configurações | Integrações\"],\"hty0d5\":[\"Segunda-feira\"],\"i0ZMQl\":[\"Quadro arquivado\"],\"i30J2U\":[\"Nenhum projeto encontrado\"],\"i5rE2/\":[\"A URL não pode exceder 64 caracteres\"],\"iH8pgl\":[\"Voltar\"],\"iHcdea\":[\"Vence na próxima semana\"],\"iLbjv+\":[\"Pode editar workspace\"],\"iQmbPb\":[\"Licença\"],\"iSLIjg\":[\"Conectar\"],\"iTylMl\":[\"Templates\"],\"iVIGZb\":[\"Anexo enviado\"],\"isRobC\":[\"Novo\"],\"itgYbC\":[\"Webhook de teste enviado com sucesso!\"],\"iwr7AP\":[\"Ideias\"],\"iy1wb+\":[\"Configurações | API\"],\"j0o6ml\":[\"Descrição do seu workspace\"],\"j1+HPc\":[\"Ocorreu um erro ao conectar sua conta do GitHub.\"],\"j2+d/o\":[\"Referência da API\"],\"j9IZZ0\":[\"URL do workspace personalizada\"],\"jDRt4n\":[\"Você deseja cancelar a assinatura?\"],\"jEw0Mr\":[\"Por favor, insira uma URL válida\"],\"jIuWsV\":[\"O nome do webhook não pode exceder 255 caracteres\"],\"jL82rC\":[\"Limpar permissões personalizadas\"],\"jNuzV/\":[\"Pode excluir cartões\"],\"jQ6I8X\":[\"Função atualizada\"],\"jZBHkN\":[\"O nome do workspace deve ter pelo menos 3 caracteres\"],\"jfC/xh\":[\"Contato\"],\"jl3aEJ\":[\"marcou o item da checklist <0>\",[\"0\"],\" como incompleto\"],\"jlB2RY\":[\"A senha atual que você digitou está incorreta.\"],\"jwI32v\":[\"Quadro não encontrado\"],\"k7rCa/\":[\"Grande\"],\"kECVpo\":[\"Tem certeza de que deseja excluir esta etiqueta?\"],\"kQwvU8\":[\"removeu uma etiqueta do cartão\"],\"kSxwQL\":[\"Você pode convidar membros da equipe clicando no botão \\\"Convidar\\\" no canto superior direito da <0>página de membros e inserindo o endereço de e-mail deles. Eles receberão um e-mail com um link para entrar no workspace.\"],\"kYu0eF\":[\"Excluir workspace\"],\"kfOGMr\":[\"Vitória rápida\"],\"klpSmb\":[\"Editar URL do workspace\"],\"kp6L3T\":[\"Este nome de usuário de workspace já está em uso\"],\"kryGs+\":[\"Cartão\"],\"kuoc68\":[\"$10/mês\"],\"kxEs5t\":[\"Importações do Trello\"],\"l2PIAy\":[\"Auto-hospedar com Github\"],\"l31EoQ\":[\"Encontre respostas para perguntas comuns sobre o Kan. Não encontrou o que procura? Sinta-se à vontade para <0>entrar em contato.\"],\"l3s5ri\":[\"Importar\"],\"l4asa1\":[\"Este quadro é privado ou não existe\"],\"lGjicL\":[\", ou veja nosso\"],\"lKAvEd\":[\"Erro ao desconectar Trello\"],\"lXvXNI\":[\"Falha ao copiar link de convite\"],\"lYT7pQ\":[\"Excluir lista\"],\"lkz85l\":[\"A principal diferença entre Kan e Trello é que o Kan é open source, permitindo que qualquer pessoa visualize, modifique e contribua com nosso código. Nossa oferta na nuvem também não oferece restrições de recursos para uso individual, enquanto o Trello bloqueia recursos básicos, como o número de quadros que você pode criar, atrás de um paywall.\"],\"lo8xBK\":[\"Tem certeza de que deseja remover \",[\"entityLabel\"],\"?\"],\"lpIMne\":[\"As senhas não coincidem\"],\"lsgnzd\":[\"Erro ao fazer upgrade para Pro\"],\"lyqwgn\":[\"Adicionar etiqueta\"],\"m2nk0i\":[\"Preços simples\"],\"mErq7F\":[\"Cadastrar\"],\"mHhffx\":[\"Não foi possível criar checklist\"],\"mTGd3+\":[\"excluiu uma checklist\"],\"mTwGOf\":[\"Este link de convite é inválido ou expirou.\"],\"mU+M00\":[[\"0\"],\" foi adicionado aos seus favoritos.\"],\"mVZH9V\":[\"Quando o Trello foi lançado em 2011, impressionou a todos com sua simplicidade cuidadosamente projetada, mas ao longo dos anos perdeu sua magia e se transformou em algo mais próximo de \\\"Jira Lite\\\". Este projeto é nossa tentativa de resgatar a magia original da simplicidade do Trello, em código aberto.\"],\"mZGPxt\":[\"Link de convite copiado para a área de transferência\"],\"mchgzf\":[\"Você se cadastrou com sucesso.\"],\"mgXgHu\":[\"Ir para quadros\"],\"mrhyIB\":[\"Perfeito para equipes pequenas e em crescimento que buscam colaborar.\"],\"mwBdZ2\":[\"Isso resultará na exclusão permanente de todos os dados associados à sua conta.\"],\"mx8+1u\":[\"Membros ilimitados\"],\"n+xLOH\":[\"Suporte ao cliente\"],\"n1GRql\":[\"Nova etiqueta\"],\"n1ekoW\":[\"Entrar\"],\"n6EWYz\":[\"Usado para assinar cargas úteis de webhook para verificação. Deixe em branco para manter o segredo existente.\"],\"n9V+ps\":[\"Insira seu nome\"],\"nKBUeF\":[\"O cartão foi duplicado.\"],\"nOhz3x\":[\"Sair\"],\"nYNMZZ\":[\"Posição na lista (0 = primeira, deixe vazio para o final)\"],\"nabda1\":[\"Excluir cartão\"],\"nbfdhU\":[\"Integrações\"],\"ngBZOd\":[\"Adicionar comentário... (digite '/' para abrir comandos ou '@' para mencionar)\"],\"nhMhRr\":[\"Obrigado pelo seu feedback!\"],\"njJFtc\":[\"Excluir comentário\"],\"nk7caK\":[\"Conectar Trello\"],\"nol/Fb\":[\"Como convido membros da equipe?\"],\"notwF1\":[\"O nome do template não pode exceder 100 caracteres\"],\"nq7q3Z\":[\"O nome da chave de API não pode exceder 30 caracteres\"],\"nqdIhs\":[\"Templates de quadro personalizados\"],\"nryrgW\":[\"Todas as substituições de permissões de membros foram redefinidas para os padrões de suas funções.\"],\"o+JCfN\":[\"Confiado por equipes ágeis<0/>ao redor do mundo\"],\"o4e/70\":[\"Selecione pelo menos um evento\"],\"o4sQAg\":[\"Falha ao criar webhook\"],\"o7J4JM\":[\"Filtrar\"],\"o8adVG\":[\"Uploads de arquivos de 10 MB\"],\"o9WLwO\":[\"Não foi possível atualizar o cartão\"],\"oVBq1w\":[\"por usuário/mês\"],\"oW13KZ\":[\"Comece gratuitamente hoje\"],\"odFCYX\":[\"Convite inválido\"],\"okpxfB\":[\"Criar nova chave\"],\"oyRjD/\":[\"Plano Pro\"],\"p/hk9N\":[\"Você foi autenticado com sucesso.\"],\"pBsoKL\":[\"Adicionar aos favoritos\"],\"pFGfsR\":[\"Confira alguns dos nossos projetos open source favoritos.\"],\"pFKC6A\":[\"Nome da chave de API\"],\"pL78ec\":[\"Adicionado aos favoritos\"],\"pVctI7\":[\"Opção de implantação on-premise\"],\"pXVFJy\":[\"Pode excluir quadros\"],\"pa9o5D\":[\"Recortar seu avatar\"],\"pfa8F0\":[\"Nome de exibição\"],\"pmUArF\":[\"Workspace\"],\"pnrmSP\":[\"Novo cartão\"],\"ppaRWv\":[\"Auto-hospedagem\"],\"pvnfJD\":[\"Escuro\"],\"q+lt9D\":[\"Erro ao excluir etiqueta\"],\"q3il6U\":[\"Tamanho da fonte\"],\"qPP4lD\":[\"Convidar membros requer um plano Team. Você será redirecionado para fazer upgrade do seu workspace.\"],\"qQXocp\":[\"Pode gerenciar configurações do workspace\"],\"qaS+1/\":[\"Ideal para equipes que desejam escalar sem limites\"],\"qfUS/w\":[\"Amigos open source\"],\"qkjvgj\":[\"Seu workspace foi excluído.\"],\"qlAIQ1\":[\"Remoto\"],\"qtE5nt\":[\"Adicionar um item...\"],\"qzdST2\":[\"Visibilidade do quadro\"],\"r6BgwX\":[\"A senha é obrigatória para fazer login.\"],\"rD6UIt\":[\"Começar na nuvem\"],\"rF8SEQ\":[\"Editar comentário\"],\"rQRXo8\":[\"Digite o novo segredo para atualizar\"],\"rQXTmd\":[\"URL do cartão copiada para a área de transferência\"],\"rRM7r0\":[\"Importe seus quadros do Trello e comece a trabalhar imediatamente.\"],\"rYUZIe\":[\"Selecionar origem\"],\"raHesj\":[\"Você cancelou a inscrição!\"],\"rarRW/\":[\"Erro ao convidar membro\"],\"ri1hHe\":[\"Vence no próximo mês\"],\"rmN315\":[\"Diversão\"],\"rs7L54\":[\"adicionou um membro ao cartão\"],\"rtbVvN\":[\"Pode editar listas\"],\"s+MGs7\":[\"Recursos\"],\"s6iE/c\":[\"O cadastro está temporariamente desabilitado. Por favor, tente novamente mais tarde.\"],\"sBhOFG\":[\"Gerenciamento de tarefas visual e simples que funciona. Arraste e solte cartões, colabore com sua equipe e faça mais.\"],\"sDLCvT\":[\"Conecte suas ferramentas favoritas para otimizar seu fluxo de trabalho.\"],\"sDuhfK\":[\"Oferta de lançamento: assentos ilimitados por apenas $29/mês com Pro\"],\"sU2uWc\":[\"Cartão duplicado\"],\"sUZo7y\":[\"Cadastrar | kan.bn\"],\"sVBn4K\":[\"Erro ao atualizar nome de exibição\"],\"sY2lzr\":[\"Nenhuma URL de download disponível para este anexo.\"],\"sbNNyi\":[\"Novo webhook\"],\"snMaH4\":[\"Excluir webhook\"],\"t+R8+P\":[\"Execução\"],\"t/YqKh\":[\"Remover\"],\"t0dTPm\":[\"Configure webhooks para receber notificações quando cartões forem criados, atualizados, movidos ou excluídos.\"],\"t2nDzl\":[\"Visualize e gerencie sua cobrança e assinatura.\"],\"t6FvJH\":[\"Pode adicionar comentários\"],\"tGwwnq\":[\"atualizou a descrição\"],\"tHcbLF\":[\"Pode editar quadros\"],\"tIdipJ\":[\"Editar URL do quadro\"],\"tMYIu7\":[\"Registros de atividades\"],\"tOZp9v\":[\"Funções de usuário e permissões configuráveis\"],\"tTbref\":[\"A senha é obrigatória para se cadastrar.\"],\"tYN21H\":[\"O usuário já é membro deste workspace\"],\"tbNcu4\":[\"Quadro desarquivado\"],\"tca56/\":[\"Seu arquivo foi enviado com sucesso.\"],\"tfDRzk\":[\"Salvar\"],\"tlhgDC\":[\"Nenhum quadro arquivado\"],\"tmlJN1\":[\"Por favor, insira uma URL válida do YouTube\"],\"tmpW+w\":[\"Excluir quadro\"],\"tst44n\":[\"Eventos\"],\"tyHiOa\":[\"Por favor, tente novamente mais tarde ou entre em contato com o suporte ao cliente.\"],\"u2+JIh\":[\"URLs personalizadas exigem upgrade para um plano Pro\"],\"u8JHrO\":[\"Limpar filtros\"],\"uAQUqI\":[\"Status\"],\"uEGGDs\":[\"Meu webhook\"],\"uOqaMC\":[\"Você foi convidado para entrar em um workspace.\"],\"uP4V6I\":[\"Grátis para todos\"],\"uXGLuq\":[\"Criar chave de API\"],\"uZg2+w\":[\"Turbine seu workspace por apenas $29/mês. Veja o que você vai receber:\"],\"uck1tz\":[\"removeu um membro do cartão\"],\"usVytm\":[\"Depois de excluir sua conta, não há como voltar atrás. Esta ação não pode ser desfeita.\"],\"uvH2xS\":[\"Copiar membros\"],\"v+Wp++\":[\"Open source\"],\"v1kQyJ\":[\"Webhooks\"],\"v3YoMA\":[\"Sênior\"],\"vAR/I8\":[\"Execute em sua própria infraestrutura\"],\"vAj6xG\":[\"Você pode fazer self-host seguindo as instruções em nosso <0>repositório.\"],\"vSJd18\":[\"Vídeo\"],\"vUr5JT\":[\"Não tem uma conta? <0><1>Cadastre-se\"],\"vXIe7J\":[\"Idioma\"],\"vXemf6\":[\"Bug\"],\"va/3u1\":[\"Controle quem pode visualizar e editar seus quadros.\"],\"vbskQn\":[\"O nome da chave de API é obrigatório\"],\"veIDCY\":[\"Iniciar teste grátis de 14 dias\"],\"vfRdCZ\":[\"Não foi possível redefinir as permissões\"],\"vgdzLf\":[\"Criar outro\"],\"vifyyw\":[\"Jurídico\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"As permissões deste membro foram redefinidas para os padrões de sua função.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"cobrança mensal\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Longo prazo\"],\"vwGkYB\":[\"A senha deve ter pelo menos 8 caracteres\"],\"wIb7Ng\":[\"Desenvolvimento de software\"],\"wK4OTM\":[\"Título (opcional)\"],\"wM8xd8\":[\"Júnior\"],\"wPZBpR\":[\"Por favor, selecione um arquivo para enviar.\"],\"wY+6Ye\":[\"Esta URL de quadro já foi utilizada\"],\"wakO3W\":[\"adicionou checklist <0>\",[\"0\"],\"\"],\"wewm3j\":[\"O nome do quadro não pode exceder 100 caracteres\"],\"wgNoIs\":[\"Selecionar tudo\"],\"wlQNTg\":[\"Membros\"],\"wqkcin\":[\"Pode visualizar comentários\"],\"wqxglO\":[\"Aprendizado\"],\"wruKPE\":[\"Apoie o desenvolvimento do projeto\"],\"wsy94z\":[\"Ideal para grandes organizações com necessidades avançadas\"],\"wtxjAY\":[\"Membros do workspace\"],\"x0kMO/\":[\"Erro ao atualizar URL do workspace\"],\"x8GeCD\":[\"Nome de exibição atualizado\"],\"xEbBrW\":[\"Qual licença você está usando?\"],\"xGVfLh\":[\"Continuar\"],\"xLTZVf\":[\"Dia de início da semana\"],\"xMn+V9\":[\"Importando do Trello\"],\"xRPn3U\":[\"Insira seu endereço de email\"],\"xvcYhz\":[\"Limpe quaisquer permissões personalizadas de membros para que todos os membros herdem apenas as permissões padrão de suas funções.\"],\"y3aU20\":[\"Salvar alterações\"],\"yD3ZSw\":[\"Altere suas preferências de idioma.\"],\"yV7o5I\":[\"Como importo meus quadros do Trello?\"],\"yb/fjw\":[\"Aprovação\"],\"yhLUU8\":[\"Erro ao conectar GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Importar projeto (1)\"],\"other\":[\"Importar projetos (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Fechar\"],\"zC8Whw\":[\"Comece criando uma nova lista\"],\"zERArS\":[\"atualizou o título para <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Criar link de convite\"],\"zMlxCA\":[\"1 usuário\"],\"zMquA7\":[\"Escolha um plano\"],\"zQPhSa\":[\"Converter em link\"],\"zQX5Dj\":[\"Nome da lista\"],\"zYRVNp\":[\"Selecione uma lista\"],\"zkWmBh\":[\"Anual\"],\"zl1b97\":[\"Não foi possível criar card\"],\"zoEbXq\":[\"Pode visualizar cartões\"],\"zt/6cS\":[\"Ideal para pequenas equipes que desejam colaborar e avançar mais rápido juntas.\"],\"zto8aj\":[\"Trello desconectado\"],\"zwBp5t\":[\"Privado\"],\"zwTiVn\":[\"removeu um anexo <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Saiba mais\"],\"zxKs+y\":[\"Vence amanhã\"],\"zzDlyQ\":[\"Sucesso\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Redes sociais\"],\"+3TYXa\":[\"Para sustentabilidade a longo prazo, reconhecemos que todos os bons projetos de código aberto precisam de uma fonte de receita. A nossa vem da oferta paga na nuvem para espaços de trabalho com múltiplos usuários e para slugs de espaço de trabalho personalizados. Não há obrigação de usá-la, e você pode hospedar o software em sua própria infraestrutura gratuitamente.\"],\"+5kO8P\":[\"Sábado\"],\"+8Nek/\":[\"Mensal\"],\"+EkBs0\":[\"Não foi possível atualizar suas preferências. Tente novamente.\"],\"+MdEsf\":[\"A nova senha é obrigatória\"],\"+OhFss\":[\"Comece gratuitamente, sem limites de uso. Para colaboração, faça upgrade para um plano que se ajuste ao tamanho da sua equipe.\"],\"+VoTOr\":[\"cobrado mensalmente\"],\"+djOzj\":[\"Convidar membro\"],\"+h2faV\":[\"Configurações | Webhooks\"],\"+jbXzb\":[\"Seus projetos foram importados.\"],\"+nvZ6j\":[\"Etiquetas e filtros\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Modelo\"],\"/asTmx\":[\"Relatório de bug\"],\"/bBVaD\":[\"GitHub desconectado\"],\"/bZzdR\":[\"Menções\"],\"/f3t6v\":[\"Configure quais ações são permitidas para cada função do workspace. Essas permissões se aplicam a todos os membros com essa função.\"],\"/gaSVU\":[\"Roadmap\"],\"/glL9Q\":[\"Nenhum \",[\"0\"]],\"/jd3aj\":[\"Funções avançadas de administrador\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"Um aplicativo kanban poderoso e flexível que ajuda você a organizar o trabalho, acompanhar o progresso e entregar resultados — tudo em um só lugar.\"],\"/tOdd2\":[\"Sua imagem de perfil foi atualizada.\"],\"0+0/3e\":[\"Criar nova etiqueta\"],\"0+ewPp\":[\"Melhoria\"],\"02i3WU\":[\"Importações\"],\"06EQqT\":[\"Duplicando…\"],\"09Tv5j\":[\"Reconnecting…\"],\"0AfkMq\":[\"Your role changed in\"],\"0KjpAr\":[\"Pode visualizar membros\"],\"0RE1AJ\":[\"Os quadros que você arquivar aparecerão aqui.\"],\"0StR7t\":[\"Insira sua nova senha\"],\"0jV46i\":[\"Não foi possível excluir item da checklist\"],\"0qyZ4b\":[\"Carregando permissões...\"],\"0rPv1T\":[\"Imagem de perfil atualizada\"],\"0utuU6\":[\"Copiar checklists\"],\"0xD8Of\":[\"A página que você está procurando não existe ou foi movida.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Importar quadro (1)\"],\"other\":[\"Importar quadros (\",[\"boardCount\"],\")\"]}]],\"11dHnN\":[\"You were removed from\"],\"14Xi3Z\":[\"Adicionar um novo membro custará \",[\"price\"],\" (\",[\"billingType\"],\") adicionais por assento.\"],\"1H5u1m\":[\"Dúvidas?\"],\"1WuwiM\":[\"Ir para configurações\"],\"1bJKhj\":[\"Copiar link do cartão\"],\"1hzdxO\":[\"Permissões do workspace\"],\"1iShX0\":[\"Vence hoje\"],\"1njn7W\":[\"Claro\"],\"1rVAfU\":[\"Carregar mais atividades\"],\"1rWxEw\":[\"Aguardando cliente\"],\"1sRmLC\":[\"Discuta e colabore em cartões.\"],\"1wCGT0\":[\"Quadros ilimitados\"],\"25fAUC\":[\"Seu link de cancelamento de inscrição está sem um token. Por favor, abra o e-mail mais recente e tente novamente.\"],\"25mvI+\":[\"Links de convite exigem uma assinatura Team ou Pro. Faça upgrade do seu workspace.\"],\"29sSki\":[\"concluiu o item da checklist <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"Lista\"],\"2Bu8xj\":[\"Nenhum quadro encontrado\"],\"2M84k3\":[\"Permissões personalizadas\"],\"2MPcep\":[\"Importação concluída\"],\"2POOFK\":[\"Grátis\"],\"2Py5S/\":[\"Reconheço que todos os dados do workspace serão permanentemente excluídos e desejo prosseguir.\"],\"2Q871c\":[\"Não foi possível adicionar etiqueta\"],\"2QGEbi\":[\"Não foi possível excluir o comentário\"],\"2SePRT\":[\"Você foi convidado para entrar em um workspace no kan.bn.\"],\"2X4ecw\":[\"Webhook excluído com sucesso\"],\"2h4PVB\":[\"O nome do seu workspace foi atualizado.\"],\"2liqDZ\":[\"Reconheço que todos os dados da minha conta serão permanentemente excluídos e desejo prosseguir.\"],\"2q/Q7x\":[\"Visibilidade\"],\"2roTVj\":[\"Feedback enviado\"],\"3LDCpD\":[\"Esta ação não pode ser desfeita.\"],\"3WXdoZ\":[\"Você pode alterar isso depois nas configurações.\"],\"3ZjRJY\":[\"renomeou a lista de verificação <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Qualquer pessoa com este link pode entrar no seu workspace\"],\"3d54Wj\":[\"Webhook atualizado com sucesso\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Conectar GitHub\"],\"3pIq39\":[\"Funções de administrador\"],\"4630Pc\":[\"Card updated\"],\"479pdJ\":[\"Confirme sua nova senha\"],\"4DOCMI\":[\"URL do YouTube\"],\"4Revpc\":[\"Pequeno\"],\"4RoY9J\":[\"Post de blog\"],\"4XF0BB\":[\"Foto de perfil\"],\"4gAX8s\":[\"Alternar menu\"],\"4kJRen\":[\"Escrevendo\"],\"4obmDr\":[\"404 - Página Não Encontrada | kan.bn\"],\"4sxGcV\":[\"You were assigned to a card\"],\"51UCsN\":[\"Mover para outra lista\"],\"53QYh8\":[\"Falha ao criar quadro\"],\"55xJ/O\":[\"Erro ao alterar senha\"],\"58AiWX\":[\"Confirme sua nova senha\"],\"5ACX4z\":[\"Newsletter\"],\"5IXWmO\":[\"Verifique sua caixa de entrada\"],\"5P4rhH\":[\"Não foi possível atualizar os membros\"],\"5RkSzq\":[\"Copiar link do quadro\"],\"5eZwRW\":[\"Conecte sua conta do Trello para importar quadros.\"],\"5h8ooz\":[\"Chaves de API\"],\"5iplxh\":[\"A nova senha deve ser diferente da senha atual\"],\"5k0NLb\":[\"Revisão\"],\"5lWFkC\":[\"Entrar\"],\"5ntVtp\":[\"Falha ao testar webhook\"],\"5y6qY8\":[\"adicionou um anexo\"],\"69b7aE\":[\"Abrir menu de comandos\"],\"6EWT6T\":[\"Recrutamento\"],\"6FDocz\":[\"Cadastrar com \"],\"6FsGbN\":[\"Comece criando um novo \",[\"0\"]],\"6OTo9n\":[\"O nome do template é obrigatório\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Novo \",[\"0\"]],\"6YtxFj\":[\"Nome\"],\"6mbe4b\":[\"Indivíduos\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"As permissões do membro foram atualizadas.\"],\"6uBU1F\":[\"Acesso completo à API\"],\"6zeSBB\":[\"Pode criar cartões\"],\"74F7N/\":[\"Tem certeza de que deseja excluir sua conta?\"],\"7EhE4k\":[\"Atualizar etiqueta\"],\"7L01XJ\":[\"Ações\"],\"7PzzBU\":[\"Usuário\"],\"7Qqqyu\":[\"New comment on\"],\"7RpHg/\":[\"Nome de usuário personalizado\"],\"7Ufoyg\":[\"Listas ilimitadas\"],\"7aONWr\":[\"A URL não pode exceder 2048 caracteres\"],\"7b2yuC\":[\"Por favor, insira uma senha válida\"],\"7d1a0d\":[\"Público\"],\"7eMo+U\":[\"Ir para a página inicial\"],\"7hktsm\":[\"Primeiros passos\"],\"7i8j3G\":[\"Empresa\"],\"8+BY11\":[\"URL do quadro copiada para a área de transferência\"],\"86FLn5\":[\"Uploads de arquivos ilimitados\"],\"86XI28\":[\"Confirme suas preferências de e-mail:\"],\"8AbRER\":[\"Definir data de vencimento\"],\"8AwlaR\":[\"Membros ilimitados e um nome de usuário personalizado para equipes prontas para crescer.\"],\"8F1i42\":[\"Página não encontrada\"],\"8Is1ih\":[\"Oferta de lançamento\"],\"8RdLDU\":[\"Projeto pessoal\"],\"8TveY+\":[\"Quadros\"],\"8Z4pNX\":[\"Pode criar listas\"],\"8iP0S8\":[\"Tudo do plano gratuito, mais:\"],\"8iP9oQ\":[\"O teste do webhook falhou\"],\"8yFGGF\":[\"Não foi possível remover o membro\"],\"99VIgC\":[\"Remover membro\"],\"9HDx2Z\":[\"You were mentioned in\"],\"9PaIxv\":[\"Recursos principais\"],\"9Xigls\":[\"Em análise\"],\"9YPBHv\":[\"Falha ao excluir webhook\"],\"9cDpsw\":[\"Permissões\"],\"9eF5oV\":[\"Bem-vindo de volta\"],\"9h7RDh\":[\"Oferta\"],\"9lFfqv\":[\"/mês\"],\"9s9O5h\":[\"Erro ao excluir workspace\"],\"9u5BOr\":[\"Membros | \",[\"0\"]],\"9wdpwp\":[\"Portal de cobrança\"],\"9x4DAL\":[[\"0\"],\" não encontrado\"],\"9y1RcT\":[\"Estamos apenas começando. \"],\"A23Y7X\":[\"Entrar no workspace | kan.bn\"],\"A42Dqn\":[\"Marca personalizada\"],\"A5hiCy\":[\"Criar template\"],\"A8jqN7\":[\"Não foi possível enviar o feedback\"],\"ABCjd9\":[\"Publicação\"],\"ADEin1\":[\"Configurações | Faturamento\"],\"ALhEZV\":[\"Pode convidar membros\"],\"ANyn0x\":[\"Tudo que você precisa, grátis para sempre. Quadros ilimitados, listas ilimitadas, cartões ilimitados. Faça upgrade a qualquer momento.\"],\"ARvBT/\":[\"cobrado anualmente\"],\"ASjvm9\":[\"URL do workspace\"],\"AUYALh\":[\"Em breve\"],\"AX4ktp\":[\"Criação de conteúdo\"],\"AZI/wb\":[\"Etiquetas e filtros\"],\"AdxYds\":[\"Sua conta do GitHub foi desconectada.\"],\"AeXO77\":[\"Conta\"],\"Alp2ti\":[\"Falar com vendas\"],\"Ax/hYa\":[\"A descrição do workspace não pode exceder 280 caracteres\"],\"B3xxao\":[\"Adicionar um cartão\"],\"BBUDfW\":[\"Urgente\"],\"BEVzjL\":[\"Falha na importação\"],\"BJbLe4\":[\"Estamos usando a <0>licença AGPL-3.0.\"],\"BMkVQ3\":[\"excluiu a checklist <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"moveu o cartão de <0>\",[\"0\"],\" para <1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Duplicar cartão\"],\"BZkYSt\":[\"removeu \",[\"0\"],\" etiquetas: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Tem certeza de que deseja excluir o workspace \",[\"0\"],\"?\"],\"Bhgd0l\":[\"Entre em contato\"],\"BzEFor\":[\"ou\"],\"C56tim\":[\"Não foi possível atualizar a data de vencimento\"],\"C6gv54\":[\"O quadro foi desarquivado.\"],\"CAL6E9\":[\"Equipes\"],\"CB/NpV\":[\"Alta prioridade\"],\"CHZ1jC\":[\"excluiu o item da checklist <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Por favor, insira um nome válido\"],\"CJWDTP\":[\"Sua conta do Trello foi desconectada.\"],\"CJukzS\":[[\"0\"],\" etiquetas\"],\"CTqTgr\":[\"Atalhos\"],\"CYWHT+\":[\"Erro ao fazer upload da imagem de perfil\"],\"Cb5YSG\":[\"You were added to\"],\"Cd4sTD\":[\"Ideal para indivíduos e criadores solo que estão começando\"],\"Ci/KUX\":[\"Configurações | Workspace\"],\"CkVV1t\":[\"Erro ao atualizar descrição do workspace\"],\"Cmudpi\":[\"Pode excluir workspace\"],\"CozWO1\":[\"Nome do workspace\"],\"CujNX4\":[\"adicionou um anexo <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"Sistema\"],\"D0esZz\":[\"Registro de atividades\"],\"D3C4Yx\":[\"Senha atual é obrigatória\"],\"D7/JvJ\":[\"Ajuste o recorte quadrado para caber no seu avatar.\"],\"D9ROdV\":[\"Links de convite\"],\"DAV3uK\":[\"Permissões atualizadas\"],\"DBC3t5\":[\"Domingo\"],\"DFjdv0\":[\"Excluir modelo\"],\"DMeWZD\":[\"Tem certeza de que deseja excluir este \",[\"0\"],\"?\"],\"DPfwMq\":[\"Concluído\"],\"DSGzV+\":[\"Nome de usuário do workspace\"],\"DahTzR\":[\"Não foi possível excluir checklist\"],\"DbZgsJ\":[\"Criar modelo\"],\"DtXlZq\":[\"Não foi possível atualizar a checklist\"],\"Dz63YI\":[\"Ocorreu um erro ao desconectar sua conta do GitHub.\"],\"E0t3jO\":[\"adicionou item do checklist <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Preço por assento\"],\"E8zYtd\":[\"removeu a atribuição de <0>\",[\"0\"],\" do cartão\"],\"ECJKc4\":[\"Chave de API criada\"],\"EEHmPC\":[\"Oferta de lançamento: membros ilimitados com Pro\"],\"EH8IL3\":[\"Checklists\"],\"EII/X8\":[\"Todos os recursos Teams +\"],\"ERpq2P\":[\"Nenhum resultado encontrado para \\\"\",[\"debouncedQuery\"],\"\\\".\"],\"ESClHO\":[\"Suporte prioritário por e-mail\"],\"EYpSRU\":[\"You were added to a workspace\"],\"Eg99Sc\":[\"Nenhum método de autenticação está disponível no momento\"],\"Eit43O\":[\"definiu a data de vencimento\"],\"EkH9pt\":[\"Atualizar\"],\"EvArWh\":[\"Colabore perfeitamente com sua equipe.\"],\"F/FPk/\":[\"Configurações | Permissões\"],\"F/vB2g\":[\"Ideias para melhorar esta página...\"],\"F0YmUY\":[\"Copiar link do cartão\"],\"F3bW6y\":[\"Plataforma\"],\"F4KRmY\":[\"$8/mês\"],\"F4PLG4\":[\"Descrição do workspace atualizada\"],\"F6m23G\":[\"Upload de arquivos\"],\"F6pfE9\":[\"Ativo\"],\"F8DaWi\":[\"Somente visualização\"],\"FEr96N\":[\"Tema\"],\"FdtSNC\":[\"Criar workspace\"],\"FmN5me\":[\"Resolução\"],\"FmfJjN\":[\"Visualize e gerencie suas chaves de API.\"],\"Fpci8b\":[\"Tem certeza de que deseja excluir esta checklist?\"],\"G1Gw0v\":[\"Novo modelo\"],\"GAD3Dx\":[\"Domínio personalizado\"],\"GDvlUT\":[\"Função\"],\"GKeVeM\":[\"Your role was changed\"],\"GRAGsB\":[\"Seu workspace\"],\"GYv20o\":[\"Não foi possível atualizar as permissões\"],\"GdWB+V\":[\"Webhook criado com sucesso\"],\"GnRmu4\":[\"Nome da checklist\"],\"GnSSGm\":[\"A descrição do seu workspace foi atualizada.\"],\"GoDLB9\":[\"Sua conta foi excluída.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Roadmap estendido\"],\"Gxxi5J\":[\"Adicionar checklist\"],\"H5G+qG\":[\"Qual é a diferença entre Kan e Trello?\"],\"HBI6nY\":[\"Precisa de ajuda?\"],\"HO+uOC\":[\"Triagem\"],\"HQVm6e\":[\"Esta URL já está em uso\"],\"HVIzNO\":[\"Pode visualizar listas\"],\"HYV6Lq\":[\"Falha ao aceitar convite. Por favor, tente novamente mais tarde ou entre em contato com o suporte.\"],\"HbXReU\":[\"No notifications yet\"],\"HcT8J4\":[\"Sua conta do GitHub foi conectada.\"],\"HeFWjW\":[\"Próximos passos\"],\"Hf1cEZ\":[\"A URL do webhook é obrigatória\"],\"Hg1qE9\":[\"O slug do seu workspace foi atualizado.\"],\"I+AROe\":[\"Pode editar cartões\"],\"I0gAKM\":[\"Não foi possível atualizar a lista\"],\"IDvohQ\":[\"marcou um item da checklist como incompleto\"],\"IFgUX6\":[\"Pode remover membros\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Fazer upgrade para Pro\"],\"Iqh0Uv\":[\"Planejado\"],\"IqjpYe\":[\"Visibilidade do email\"],\"IrZaAn\":[\"Senha alterada\"],\"It4/FS\":[\"Desarquivar quadro\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Continuar com \"],\"J4+OTA\":[\"Mover para lista\"],\"J5nbej\":[\"Crítico\"],\"J5pbP6\":[\"Pode editar funções e permissões de membros\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JBaoDB\":[[\"overflow\"],\" more viewers\"],\"JCdzgZ\":[\"Solicitação de funcionalidade\"],\"JUce1S\":[\"Responsáveis\"],\"JbXXUW\":[\"Tenha em mente que esta ação é irreversível.\"],\"JcCDm9\":[\"Modelo criado\"],\"Jgaz7E\":[\"Permissões redefinidas\"],\"JjEJSy\":[\"Configure seu workspace\"],\"JnWJXY\":[\"magic link\"],\"JxhWxU\":[\"em\"],\"JyXBgS\":[\"docs\"],\"K3iLeO\":[\"Veja o que nossos usuários estão dizendo sobre o Kan\"],\"K4xHKu\":[\"New comment on a card\"],\"K7k9u3\":[\"Não foi possível mover o cartão\"],\"KAsRdK\":[\"Ir para membros\"],\"KEim/+\":[\"removeu um anexo\"],\"KFJgmZ\":[\"O nome de exibição deve ter pelo menos 3 caracteres\"],\"KLJ4eD\":[\"Link de convite copiado\"],\"KM6m8p\":[\"Equipe\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Controles avançados de administrador\"],\"KiVc+q\":[\"Tempo integral\"],\"KuSt9W\":[\"Como faço auto-hospedagem?\"],\"L5WQLg\":[\"Token é obrigatório\"],\"L5ZPjz\":[\"atualizou um item da checklist\"],\"LTGE7Y\":[\"Workspace criado com sucesso. Você pode fazer upgrade depois nas configurações.\"],\"LeM5RY\":[\"Não foi possível limpar substituições\"],\"LoUCpj\":[\"Erro ao atualizar nome do workspace\"],\"LqWW5F\":[\"Seu nome de exibição foi atualizado.\"],\"LrcnbT\":[\"Hospede o Kan em sua própria infraestrutura. Ideal para organizações que precisam de controle total sobre seus dados.\"],\"Lt+ZP3\":[\"concluiu um item da checklist\"],\"M9p3Vw\":[\"Registro de atividades ilimitado\"],\"MCIXdZ\":[\"Conecte sua conta do GitHub para importar projetos.\"],\"MFKlMB\":[\"Convidar\"],\"MHrjPM\":[\"Título\"],\"MI5OBT\":[\"A URL pode conter apenas letras, números e hífens\"],\"MK16u2\":[\"Nenhuma data\"],\"MKAScN\":[\"Pode visualizar quadros\"],\"MN6YzG\":[\"Slug do workspace atualizado\"],\"MWrbWq\":[\"Configurações | Conta\"],\"MdN5zD\":[\"Você precisa ser um administrador para gerenciar as permissões do workspace.\"],\"MdwUGG\":[\"Economize tempo com modelos de quadro reutilizáveis.\"],\"MeO/vH\":[\"Isso resultará na exclusão permanente de todos os dados associados a este workspace.\"],\"MlyjJu\":[\"O nome de exibição não pode exceder 280 caracteres\"],\"MxQXhL\":[\"Não foi possível criar workspace\"],\"N/bcWA\":[\"Login | kan.bn\"],\"N3380t\":[\"Pode criar quadros\"],\"N7aud6\":[\"Busca inteligente\"],\"NH54UR\":[\"renomeou o item da lista de verificação para <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"O quadro foi arquivado.\"],\"NgaR6B\":[\"Insira sua senha\"],\"NnH3pK\":[\"Testar\"],\"NoNwIX\":[\"Inativo\"],\"NypLoL\":[\"renomeou uma lista de verificação\"],\"O0li0W\":[\"Insira sua senha atual e escolha uma nova senha segura.\"],\"O1wAlQ\":[\"Convidado\"],\"O3oNi5\":[\"Email\"],\"O83K21\":[\"adicionou um item do checklist\"],\"O9jVbx\":[\"Prioridade baixa\"],\"OAYToL\":[\"Isso removerá todas as permissões personalizadas de membros neste workspace. Os membros herdarão permissões apenas de suas funções.\"],\"OIA0ad\":[\"Nome do workspace atualizado\"],\"OTxjpR\":[\"seu-workspace\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Desconectar GitHub\"],\"Oi+J+N\":[\"Escolha um plano para começar. Todos os planos pagos incluem 14 dias de teste grátis.\"],\"OkTY4+\":[\"O segredo não pode exceder 512 caracteres\"],\"Oo4E6p\":[\"Não foi possível duplicar o cartão\"],\"OpNhRn\":[\"Não é necessário cartão de crédito\"],\"OtjenF\":[\"Por favor, insira um endereço de e-mail válido\"],\"OvoEq7\":[\"Membro\"],\"OwneeH\":[\"Nome de usuário do workspace personalizado\"],\"Ozt2vv\":[\"Sua senha foi alterada.\"],\"P6dJdq\":[\"Substituições removidas\"],\"P8Cunr\":[\"Nome de usuário padrão\"],\"PCIlOO\":[\"Adicionar membro\"],\"PELbXB\":[\"Sua conta do GitHub está conectada.\"],\"PRjvDT\":[\"Tem certeza de que deseja excluir este comentário?\"],\"PRofO0\":[\"Editar vídeo do YouTube\"],\"PTzsxH\":[\"Visibilidade do quadro atualizada\"],\"PVT7q7\":[\"GitHub conectado\"],\"PZCqeW\":[\"Por favor, tente novamente mais tarde.\"],\"Pat4r8\":[\"Roadmap básico\"],\"PpZkda\":[\"Funcionalidades\"],\"PyYD/v\":[\"atribuiu <0>\",[\"0\"],\" ao cartão\"],\"Q60WUZ\":[\"Não foi possível iniciar o checkout\"],\"Q9pQaX\":[\"Nenhuma função encontrada para este workspace ainda.\"],\"QD8opX\":[\"Quadro\"],\"QHhZeE\":[\"Template criado com sucesso\"],\"QNtP5M\":[\"Usar template\"],\"Qh7QmR\":[\"Removido dos favoritos\"],\"QnzD50\":[\"On-premise\"],\"QtACvI\":[\"Criar etiqueta\"],\"Qtzfdk\":[\"Plano Pro ∞\"],\"R+w/Va\":[\"Cobrança\"],\"R1c3Mq\":[\"O nome do quadro é obrigatório\"],\"R275Pz\":[\"Você tem assentos ilimitados com seu plano pro. Não há cobrança adicional para novos membros!\"],\"R3FsF4\":[\"Falha no download\"],\"R41XLH\":[\"Falha ao atualizar webhook\"],\"R6pB8R\":[\"Favoritar no Github\"],\"RHZu7R\":[\"Amado por equipes no mundo todo\"],\"RJA+sg\":[\"Novo ticket\"],\"RRn9jf\":[\"Clique no link que enviamos para \",[\"magicLinkRecipient\"],\" para fazer login.\"],\"RSGOS1\":[\"Pode excluir listas\"],\"RfgJqw\":[\"atualizou a data de vencimento\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Enviar feedback\"],\"RtlIYB\":[\"Você está prestes a alterar sua senha.\"],\"RzxgOE\":[\"Funções e permissões\"],\"SFnH1j\":[\"Por que fazer um Trello de código aberto?\"],\"SMaFdc\":[\"Cancelar inscrição\"],\"SNfg0e\":[\"Pode visualizar workspace\"],\"SPLN9O\":[\"Seja dono dos seus dados\"],\"SRvxId\":[\"Segredo HMAC para verificação de assinatura\"],\"STSYcd\":[\"Pode excluir comentários\"],\"SUXBxp\":[\"Engenharia\"],\"SUvm1Y\":[\"Bom para indivíduos começando que precisam apenas do essencial.\"],\"SWEskc\":[\"A URL deve ter pelo menos 3 caracteres\"],\"Sb2gYF\":[\"Nova lista\"],\"ScJ9fj\":[\"Política de privacidade\"],\"Se/UIp\":[\"A fazer\"],\"SiPp29\":[\"Criar webhook\"],\"SkCNhl\":[\"Pesquisar quadros e cartões...\"],\"SlfejT\":[\"Erro\"],\"T/pF0Z\":[\"Remover dos favoritos\"],\"T21jY/\":[\"adicionou uma etiqueta ao cartão\"],\"T7DJ2k\":[\"Não foi possível adicionar comentário\"],\"T7LJic\":[\"moveu o cartão para outra lista\"],\"T7Mywq\":[\"Não foi possível atualizar o quadro\"],\"TCOMOO\":[\"Editar permissões\"],\"TCt/8K\":[\"Acesso limitado à API\"],\"TFv5tM\":[\"Não foi possível atualizar a função\"],\"TH3Irz\":[\"Permissão\"],\"TKFUnX\":[\"Conta excluída\"],\"TX0bT7\":[\"Nenhum webhook configurado. Adicione um webhook para receber notificações.\"],\"TXO5TM\":[\"Nenhum atalho de teclado registrado.\"],\"TYli1B\":[\"Pode editar comentários\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Revisão de código\"],\"TdfEV7\":[\"Arquivado\"],\"TjREUS\":[\"Nova chave de API\"],\"TmvrjU\":[\"A URL do quadro deve ter pelo menos 3 caracteres\"],\"TvY/XA\":[\"Documentação\"],\"Tz0i8g\":[\"Configurações\"],\"TztLaN\":[\"Não foi possível criar lista\"],\"U2+rn0\":[\"O nome do webhook é obrigatório\"],\"U3pytU\":[\"Administrador\"],\"U5dMR6\":[\"Ver workspace\"],\"UCLeG0\":[\"Termos de serviço\"],\"UGCIzB\":[\"Adicionar / editar etiqueta\"],\"UQbwrz\":[\"Todos os sistemas operacionais\"],\"URAE3q\":[\"Pausado\"],\"USVCGU\":[\"Erro ao desativar link de convite\"],\"UbRKMZ\":[\"Pendente\"],\"UbYdrA\":[\"Frequência de pagamento\"],\"UeDFpo\":[\"Como o projeto é financiado?\"],\"UirJfL\":[\"SLA personalizado\"],\"UlhdTP\":[\"Workspace excluído\"],\"Un80BR\":[\"Amigos OSS\"],\"UoSI+i\":[\"Ideal para equipes pequenas e em crescimento que precisam de colaboração\"],\"UveK6V\":[\"Ir para o app\"],\"Uworke\":[\"Meio período\"],\"UxKoFf\":[\"Navegação\"],\"V1KOLq\":[\"Notificações por email para menções\"],\"V3MPSQ\":[\"atualizou o título\"],\"V8YRD4\":[\"Viewing now: \",[\"0\"]],\"V8YWP3\":[\"Insira um título personalizado\"],\"VHS0aJ\":[\"Limpar todas as permissões personalizadas?\"],\"VKoDQD\":[\"Criar novo \",[\"0\"]],\"VUZDlr\":[\"Depoimentos\"],\"VXk54Y\":[\"autoatribuiu o cartão\"],\"VbyRUy\":[\"Comentários\"],\"VhMDMg\":[\"Alterar senha\"],\"Vt50G1\":[\"Kanban básico\"],\"W/Elkg\":[\"Prioridade média\"],\"W/nQk1\":[\"Plano gratuito\"],\"W1ewR0\":[\"Não foi possível copiar link\"],\"W5r8Qh\":[\"excluiu um item da checklist\"],\"W8oT+L\":[\"Falha ao buscar informações do vídeo\"],\"WHHLh9\":[\"Não foi possível excluir anexo\"],\"WI4eGo\":[\"Como obtenho uma URL personalizada?\"],\"WQPDcG\":[\"Não foi possível atualizar o item da checklist\"],\"WRkpB1\":[\"Cadastro desabilitado\"],\"WRsbHO\":[\"Sua conta do Trello está conectada.\"],\"WYDptz\":[\"Assinatura necessária\"],\"WYwN1G\":[\"Nova importação\"],\"WbTDwg\":[\"Em andamento\"],\"Weq9zb\":[\"Geral\"],\"WmPhYW\":[\"Ocorreu um erro ao desconectar sua conta do Trello.\"],\"WnEwDO\":[\"Já tem uma conta? <0><1>Entrar\"],\"Ws+3X+\":[\"Assentos ilimitados e recursos avançados para equipes em crescimento.\"],\"Ws1I0u\":[\"A card was updated\"],\"Wy6pcF\":[\"Não foi possível atualizar a visibilidade do quadro\"],\"X0N0PA\":[\" (editado)\"],\"XDRXbZ\":[\"A descrição do workspace deve ter pelo menos 3 caracteres\"],\"XEoGkQ\":[\"Ir para a página inicial\"],\"XILg0L\":[\"Endereço de e-mail inválido\"],\"XJOV1Y\":[\"Atividade\"],\"XNxYxq\":[\"Modelos de quadro\"],\"XTKtey\":[\"Criar lista\"],\"XXbgHS\":[\"Contratado\"],\"XYLcNv\":[\"Suporte\"],\"XicmhT\":[\"Data de vencimento\"],\"Xid3K6\":[\"A URL do quadro pode conter apenas letras, números e hífens\"],\"Xjj/kS\":[\"Kanban reimaginado\"],\"XpcjLO\":[\"Não foi possível atualizar a URL do quadro\"],\"Y8yzGg\":[\"Comece grátis. Faça upgrade conforme sua equipe cresce. Sem taxas ocultas, sem contratos.\"],\"YBBifR\":[\"Desconectar Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Não foi possível reordenar o item da checklist\"],\"YRk79X\":[\"Segurança avançada, conformidade e suporte dedicado para grandes organizações.\"],\"YVT40D\":[\"removeu a etiqueta <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Erro ao fazer upgrade da assinatura\"],\"YcyP2z\":[\"Não foi possível criar template\"],\"YdIn4I\":[\"You were removed from a workspace\"],\"Yf9FAx\":[\"Eles não poderão acessar este workspace.\"],\"YhvWXb\":[\"Análise do quadro\"],\"YirHq7\":[\"Feedback\"],\"YkfDoz\":[\"Anual\"],\"YoyKbT\":[\"Esta chave de API será mostrada apenas uma vez. Por favor, salve-a em um local seguro.\"],\"Ypy5pZ\":[\"Tem certeza de que deseja excluir o webhook \\\"\",[\"webhookName\"],\"\\\"? Esta ação não pode ser desfeita.\"],\"YtUfwW\":[\"Falha ao fazer login com \",[\"0\"],\". Por favor, tente novamente.\"],\"Yx0Ud8\":[\"Solicitado\"],\"Z3FXyt\":[\"Carregando...\"],\"Z3krJD\":[\"Permitir que membros do workspace vejam os endereços de e-mail uns dos outros\"],\"Z6r9z1\":[\"Não foi possível excluir card\"],\"ZAs2NN\":[\"Todos os recursos Pro +\"],\"ZDGm40\":[\"Excluir conta\"],\"ZDIydz\":[\"Começar\"],\"ZDPJBc\":[\"Nomes de usuário personalizados exigem atualização para um plano Pro\"],\"ZDo4HN\":[\"Brainstorming\"],\"ZH7TVS\":[\"Título do cartão\"],\"ZL1A+p\":[\"Falha ao fazer upload do anexo. Por favor, tente novamente.\"],\"ZT4Khw\":[\"Tem certeza de que deseja excluir este cartão?\"],\"ZU5IYI\":[\"Quadros ilimitados, listas ilimitadas, cartões ilimitados. Não é necessário cartão de crédito.\"],\"ZXSPJt\":[\"Ocorreu um erro inesperado. Por favor, tente novamente mais tarde.\"],\"ZqDqbi\":[\"Organize e encontre cartões rapidamente com ferramentas de filtragem poderosas.\"],\"Zz1qkk\":[\"Cartões ilimitados\"],\"a3LDKx\":[\"Segurança\"],\"aHCEmh\":[\"Preços\"],\"aHRWVI\":[\"removeu a data de vencimento\"],\"aJ4pMe\":[\"FAQs\"],\"aKJHG+\":[\"Arquivar quadro\"],\"aW3TOw\":[\"Notificações por email\"],\"aWDhU5\":[\"Kanban é melhor com uma equipe. Perfeito para equipes pequenas e em crescimento que buscam colaborar.\"],\"aWlSc/\":[\"Criar nova lista\"],\"abUZlY\":[\"Adicionar detalhes...\"],\"aelko+\":[\"Você pode obter uma URL personalizada para o workspace, como <0>kan.bn/kan, acessando as <1>configurações do workspace e adquirindo uma assinatura pro do workspace. Todas as assinaturas ajudam a financiar o desenvolvimento do projeto!\"],\"agPptk\":[\"Médio\"],\"aiHZVP\":[\"Ver documentação\"],\"b/LfJo\":[\"email\"],\"b3Thhd\":[\"Falha no upload\"],\"b5FKyH\":[\"adicionou etiqueta <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Criar \",[\"0\"]],\"bD8I7O\":[\"Concluir\"],\"bDI6VI\":[[\"0\"],\" foi removido dos seus favoritos.\"],\"bFREhu\":[\"Fim da lista\"],\"bJZm1W\":[\"Candidatos\"],\"bJtM0P\":[\"Esta URL de workspace está reservada\"],\"bKzM8L\":[\"Gerente de conta dedicado\"],\"bZSICm\":[\"Não foi possível adicionar item da checklist\"],\"bcIybO\":[\"O nome do workspace é obrigatório\"],\"bdztP2\":[\"Pesquisa\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"A função do membro foi atualizada.\"],\"bff61F\":[\"Plano de equipe\"],\"bfgr/e\":[\"Pergunta\"],\"bmXKoX\":[\"adicionou \",[\"0\"],\" etiquetas: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Erro ao excluir conta\"],\"c/IAuR\":[\"Importante\"],\"c3b0B0\":[\"Começar\"],\"c4nMcR\":[\"Seu avatar\"],\"c9AJhn\":[\"Entrar no workspace\"],\"cAgBMh\":[\"Controle e propriedade completos:\"],\"cFQEU/\":[\"Abrir atalhos de teclado\"],\"cOh+MI\":[\"Triagem\"],\"cWXW+7\":[\"Adicionar webhook\"],\"cWcxrL\":[\"Nova checklist\"],\"cWtfn1\":[\"Fazer upgrade para Pro ($29/mês)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Descrição do workspace\"],\"cji2nM\":[\"Erro ao criar link de convite\"],\"cnGeoo\":[\"Excluir\"],\"cp1rsD\":[\"Desativar link de convite\"],\"csFbe+\":[\"Ir para modelos\"],\"curoK5\":[\"Novo workspace\"],\"d+F6q9\":[\"Criado\"],\"d33Usy\":[\"Criar checklist\"],\"dEgA5A\":[\"Cancelar\"],\"dUh9QW\":[\"Planejamento\"],\"ddrz1m\":[\"Atrasado\"],\"delOXn\":[\"Não foi possível atualizar as etiquetas\"],\"dgr4Kq\":[\"Editar etiqueta\"],\"dmKdk0\":[\"Depois de excluir seu workspace, não há como voltar atrás. Esta ação não pode ser desfeita.\"],\"dsLT3m\":[\"Criar cartão\"],\"dtQIWT\":[\"Colaboração\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Esta URL de workspace já foi utilizada\"],\"e1v+J3\":[\"Segredo (opcional)\"],\"e4hPSt\":[\"Redefinir para padrões da função\"],\"e6wIqm\":[\"You were mentioned in a card\"],\"eEQyz+\":[\"Acompanhe todas as alterações do card com histórico detalhado de atividades.\"],\"ePK91l\":[\"Editar\"],\"eZCGbT\":[\"Sim, oferecemos um plano gratuito para sempre para uso individual. Sem restrições, sem paywalls, sem limites.\"],\"edWbV6\":[\"Link copiado\"],\"ekCRTP\":[\"Rejeitado\"],\"en3oy5\":[\"Funcionalidade\"],\"euc6Ns\":[\"Duplicar\"],\"eus61c\":[\"Enviar teste\"],\"evg7+A\":[\"Seus quadros foram importados.\"],\"evj0lK\":[\"Vocês oferecem um plano gratuito?\"],\"f8fH8W\":[\"Design\"],\"f8lDFq\":[\"criou o cartão\"],\"fDQ7hA\":[\"Copiar etiquetas\"],\"fEY2vP\":[\"Cartão não encontrado\"],\"fQCrjt\":[\"A visibilidade do seu quadro foi definida como \",[\"0\"],\".\"],\"fR9laE\":[\"Insira sua senha atual\"],\"fSf2ee\":[\"Veja nosso roadmap.\"],\"fW5sSv\":[\"Editar webhook\"],\"fYVH36\":[\"Não foi possível atualizar o comentário\"],\"fcWrnU\":[\"Sair\"],\"fuwKpE\":[\"Por favor, tente novamente.\"],\"fvLNDy\":[\"Nenhuma lista foi criada ainda\"],\"fzGyWs\":[\"Altere o tamanho da fonte do aplicativo.\"],\"fziA2d\":[\"Comentários ilimitados\"],\"g2xBxu\":[\"Importar seus quadros do Trello para o Kan é fácil. Você pode seguir nosso guia passo a passo <0>aqui.\"],\"g9NChz\":[\"Gerente de conta\"],\"gGx5tM\":[\"Editando\"],\"gKmoow\":[\"Esta URL é reservada\"],\"gL/7jw\":[\"Adicionar descrição... (digite '/' para abrir comandos ou '@' para mencionar)\"],\"gQ/02p\":[\"Erro ao desconectar GitHub\"],\"gUX7b+\":[\"A alternativa open source <0/> ao Trello\"],\"gZxH/p\":[\"alterou a data de vencimento para <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"O nome do workspace não pode exceder 64 caracteres\"],\"gkxGkF\":[\"Teste gratuito de 14 dias · Mude de plano ou cancele a qualquer momento\"],\"gkzAEM\":[\"Continuar com \",[\"0\"]],\"goklcJ\":[\"Entrevistando\"],\"gpfJ3v\":[\"Grátis, para sempre\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"A URL do quadro não pode exceder 60 caracteres\"],\"h16FyT\":[\"Listas\"],\"h2FKMV\":[\"Você não tem permissão\"],\"h2ztFt\":[\"Todos os recursos gratuitos +\"],\"h4VV67\":[\"adicionou um checklist\"],\"h7MgpO\":[\"Atalhos de teclado\"],\"h8DugX\":[\"Etiquetas\"],\"hAMddS\":[\"removeu a própria atribuição do cartão\"],\"hB02vO\":[\"Gerenciar membros\"],\"hXMFoN\":[\"Nenhuma lista\"],\"hYzsXr\":[\"Configurações | Integrações\"],\"hty0d5\":[\"Segunda-feira\"],\"i0ZMQl\":[\"Quadro arquivado\"],\"i30J2U\":[\"Nenhum projeto encontrado\"],\"i5rE2/\":[\"A URL não pode exceder 64 caracteres\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Voltar\"],\"iHcdea\":[\"Vence na próxima semana\"],\"iLbjv+\":[\"Pode editar workspace\"],\"iQmbPb\":[\"Licença\"],\"iSLIjg\":[\"Conectar\"],\"iTylMl\":[\"Templates\"],\"iVIGZb\":[\"Anexo enviado\"],\"isRobC\":[\"Novo\"],\"itgYbC\":[\"Webhook de teste enviado com sucesso!\"],\"iwr7AP\":[\"Ideias\"],\"iy1wb+\":[\"Configurações | API\"],\"j0o6ml\":[\"Descrição do seu workspace\"],\"j1+HPc\":[\"Ocorreu um erro ao conectar sua conta do GitHub.\"],\"j2+d/o\":[\"Referência da API\"],\"j77sVH\":[\"You were assigned to\"],\"j9IZZ0\":[\"URL do workspace personalizada\"],\"jDRt4n\":[\"Você deseja cancelar a assinatura?\"],\"jEw0Mr\":[\"Por favor, insira uma URL válida\"],\"jIuWsV\":[\"O nome do webhook não pode exceder 255 caracteres\"],\"jL82rC\":[\"Limpar permissões personalizadas\"],\"jNuzV/\":[\"Pode excluir cartões\"],\"jQ6I8X\":[\"Função atualizada\"],\"jZBHkN\":[\"O nome do workspace deve ter pelo menos 3 caracteres\"],\"jfC/xh\":[\"Contato\"],\"jl3aEJ\":[\"marcou o item da checklist <0>\",[\"0\"],\" como incompleto\"],\"jlB2RY\":[\"A senha atual que você digitou está incorreta.\"],\"jwI32v\":[\"Quadro não encontrado\"],\"k7rCa/\":[\"Grande\"],\"kECVpo\":[\"Tem certeza de que deseja excluir esta etiqueta?\"],\"kQwvU8\":[\"removeu uma etiqueta do cartão\"],\"kSxwQL\":[\"Você pode convidar membros da equipe clicando no botão \\\"Convidar\\\" no canto superior direito da <0>página de membros e inserindo o endereço de e-mail deles. Eles receberão um e-mail com um link para entrar no workspace.\"],\"kYu0eF\":[\"Excluir workspace\"],\"kfOGMr\":[\"Vitória rápida\"],\"klpSmb\":[\"Editar URL do workspace\"],\"kp6L3T\":[\"Este nome de usuário de workspace já está em uso\"],\"kryGs+\":[\"Cartão\"],\"kuoc68\":[\"$10/mês\"],\"kxEs5t\":[\"Importações do Trello\"],\"l2PIAy\":[\"Auto-hospedar com Github\"],\"l31EoQ\":[\"Encontre respostas para perguntas comuns sobre o Kan. Não encontrou o que procura? Sinta-se à vontade para <0>entrar em contato.\"],\"l3s5ri\":[\"Importar\"],\"l4asa1\":[\"Este quadro é privado ou não existe\"],\"lGjicL\":[\", ou veja nosso\"],\"lKAvEd\":[\"Erro ao desconectar Trello\"],\"lXvXNI\":[\"Falha ao copiar link de convite\"],\"lYT7pQ\":[\"Excluir lista\"],\"lkz85l\":[\"A principal diferença entre Kan e Trello é que o Kan é open source, permitindo que qualquer pessoa visualize, modifique e contribua com nosso código. Nossa oferta na nuvem também não oferece restrições de recursos para uso individual, enquanto o Trello bloqueia recursos básicos, como o número de quadros que você pode criar, atrás de um paywall.\"],\"lo8xBK\":[\"Tem certeza de que deseja remover \",[\"entityLabel\"],\"?\"],\"lpIMne\":[\"As senhas não coincidem\"],\"lsgnzd\":[\"Erro ao fazer upgrade para Pro\"],\"lyqwgn\":[\"Adicionar etiqueta\"],\"m2nk0i\":[\"Preços simples\"],\"mErq7F\":[\"Cadastrar\"],\"mHhffx\":[\"Não foi possível criar checklist\"],\"mTGd3+\":[\"excluiu uma checklist\"],\"mTwGOf\":[\"Este link de convite é inválido ou expirou.\"],\"mU+M00\":[[\"0\"],\" foi adicionado aos seus favoritos.\"],\"mVZH9V\":[\"Quando o Trello foi lançado em 2011, impressionou a todos com sua simplicidade cuidadosamente projetada, mas ao longo dos anos perdeu sua magia e se transformou em algo mais próximo de \\\"Jira Lite\\\". Este projeto é nossa tentativa de resgatar a magia original da simplicidade do Trello, em código aberto.\"],\"mZGPxt\":[\"Link de convite copiado para a área de transferência\"],\"mchgzf\":[\"Você se cadastrou com sucesso.\"],\"mgXgHu\":[\"Ir para quadros\"],\"mrhyIB\":[\"Perfeito para equipes pequenas e em crescimento que buscam colaborar.\"],\"mwBdZ2\":[\"Isso resultará na exclusão permanente de todos os dados associados à sua conta.\"],\"mx8+1u\":[\"Membros ilimitados\"],\"n+xLOH\":[\"Suporte ao cliente\"],\"n1GRql\":[\"Nova etiqueta\"],\"n1ekoW\":[\"Entrar\"],\"n6EWYz\":[\"Usado para assinar cargas úteis de webhook para verificação. Deixe em branco para manter o segredo existente.\"],\"n9V+ps\":[\"Insira seu nome\"],\"nKBUeF\":[\"O cartão foi duplicado.\"],\"nOhz3x\":[\"Sair\"],\"nYNMZZ\":[\"Posição na lista (0 = primeira, deixe vazio para o final)\"],\"nabda1\":[\"Excluir cartão\"],\"nbfdhU\":[\"Integrações\"],\"ngBZOd\":[\"Adicionar comentário... (digite '/' para abrir comandos ou '@' para mencionar)\"],\"nhMhRr\":[\"Obrigado pelo seu feedback!\"],\"njJFtc\":[\"Excluir comentário\"],\"nk7caK\":[\"Conectar Trello\"],\"nol/Fb\":[\"Como convido membros da equipe?\"],\"notwF1\":[\"O nome do template não pode exceder 100 caracteres\"],\"nq7q3Z\":[\"O nome da chave de API não pode exceder 30 caracteres\"],\"nqdIhs\":[\"Templates de quadro personalizados\"],\"nryrgW\":[\"Todas as substituições de permissões de membros foram redefinidas para os padrões de suas funções.\"],\"o+JCfN\":[\"Confiado por equipes ágeis<0/>ao redor do mundo\"],\"o4e/70\":[\"Selecione pelo menos um evento\"],\"o4sQAg\":[\"Falha ao criar webhook\"],\"o7J4JM\":[\"Filtrar\"],\"o8adVG\":[\"Uploads de arquivos de 10 MB\"],\"o9WLwO\":[\"Não foi possível atualizar o cartão\"],\"oVBq1w\":[\"por usuário/mês\"],\"oW13KZ\":[\"Comece gratuitamente hoje\"],\"odFCYX\":[\"Convite inválido\"],\"okpxfB\":[\"Criar nova chave\"],\"onllUU\":[\"Mark all as read\"],\"oyRjD/\":[\"Plano Pro\"],\"p/hk9N\":[\"Você foi autenticado com sucesso.\"],\"pBsoKL\":[\"Adicionar aos favoritos\"],\"pFGfsR\":[\"Confira alguns dos nossos projetos open source favoritos.\"],\"pFKC6A\":[\"Nome da chave de API\"],\"pL78ec\":[\"Adicionado aos favoritos\"],\"pM1sn/\":[\"New notification\"],\"pVctI7\":[\"Opção de implantação on-premise\"],\"pXVFJy\":[\"Pode excluir quadros\"],\"pa9o5D\":[\"Recortar seu avatar\"],\"pfa8F0\":[\"Nome de exibição\"],\"pmUArF\":[\"Workspace\"],\"pnrmSP\":[\"Novo cartão\"],\"ppaRWv\":[\"Auto-hospedagem\"],\"pvnfJD\":[\"Escuro\"],\"q+lt9D\":[\"Erro ao excluir etiqueta\"],\"q3il6U\":[\"Tamanho da fonte\"],\"qPP4lD\":[\"Convidar membros requer um plano Team. Você será redirecionado para fazer upgrade do seu workspace.\"],\"qQXocp\":[\"Pode gerenciar configurações do workspace\"],\"qaS+1/\":[\"Ideal para equipes que desejam escalar sem limites\"],\"qfUS/w\":[\"Amigos open source\"],\"qkjvgj\":[\"Seu workspace foi excluído.\"],\"qlAIQ1\":[\"Remoto\"],\"qtE5nt\":[\"Adicionar um item...\"],\"qzdST2\":[\"Visibilidade do quadro\"],\"r6BgwX\":[\"A senha é obrigatória para fazer login.\"],\"rD6UIt\":[\"Começar na nuvem\"],\"rF8SEQ\":[\"Editar comentário\"],\"rQRXo8\":[\"Digite o novo segredo para atualizar\"],\"rQXTmd\":[\"URL do cartão copiada para a área de transferência\"],\"rRM7r0\":[\"Importe seus quadros do Trello e comece a trabalhar imediatamente.\"],\"rYUZIe\":[\"Selecionar origem\"],\"raHesj\":[\"Você cancelou a inscrição!\"],\"rarRW/\":[\"Erro ao convidar membro\"],\"ri1hHe\":[\"Vence no próximo mês\"],\"rmN315\":[\"Diversão\"],\"rs7L54\":[\"adicionou um membro ao cartão\"],\"rtbVvN\":[\"Pode editar listas\"],\"s+MGs7\":[\"Recursos\"],\"s6iE/c\":[\"O cadastro está temporariamente desabilitado. Por favor, tente novamente mais tarde.\"],\"sBhOFG\":[\"Gerenciamento de tarefas visual e simples que funciona. Arraste e solte cartões, colabore com sua equipe e faça mais.\"],\"sDLCvT\":[\"Conecte suas ferramentas favoritas para otimizar seu fluxo de trabalho.\"],\"sDuhfK\":[\"Oferta de lançamento: assentos ilimitados por apenas $29/mês com Pro\"],\"sU2uWc\":[\"Cartão duplicado\"],\"sUZo7y\":[\"Cadastrar | kan.bn\"],\"sVBn4K\":[\"Erro ao atualizar nome de exibição\"],\"sY2lzr\":[\"Nenhuma URL de download disponível para este anexo.\"],\"sbNNyi\":[\"Novo webhook\"],\"snMaH4\":[\"Excluir webhook\"],\"t+R8+P\":[\"Execução\"],\"t/YqKh\":[\"Remover\"],\"t0dTPm\":[\"Configure webhooks para receber notificações quando cartões forem criados, atualizados, movidos ou excluídos.\"],\"t2nDzl\":[\"Visualize e gerencie sua cobrança e assinatura.\"],\"t6FvJH\":[\"Pode adicionar comentários\"],\"tGwwnq\":[\"atualizou a descrição\"],\"tHcbLF\":[\"Pode editar quadros\"],\"tIdipJ\":[\"Editar URL do quadro\"],\"tMYIu7\":[\"Registros de atividades\"],\"tOZp9v\":[\"Funções de usuário e permissões configuráveis\"],\"tTbref\":[\"A senha é obrigatória para se cadastrar.\"],\"tYN21H\":[\"O usuário já é membro deste workspace\"],\"tbNcu4\":[\"Quadro desarquivado\"],\"tca56/\":[\"Seu arquivo foi enviado com sucesso.\"],\"tfDRzk\":[\"Salvar\"],\"tlhgDC\":[\"Nenhum quadro arquivado\"],\"tmlJN1\":[\"Por favor, insira uma URL válida do YouTube\"],\"tmpW+w\":[\"Excluir quadro\"],\"tst44n\":[\"Eventos\"],\"tyHiOa\":[\"Por favor, tente novamente mais tarde ou entre em contato com o suporte ao cliente.\"],\"u2+JIh\":[\"URLs personalizadas exigem upgrade para um plano Pro\"],\"u8JHrO\":[\"Limpar filtros\"],\"uAQUqI\":[\"Status\"],\"uEGGDs\":[\"Meu webhook\"],\"uOqaMC\":[\"Você foi convidado para entrar em um workspace.\"],\"uP4V6I\":[\"Grátis para todos\"],\"uXGLuq\":[\"Criar chave de API\"],\"uZg2+w\":[\"Turbine seu workspace por apenas $29/mês. Veja o que você vai receber:\"],\"uck1tz\":[\"removeu um membro do cartão\"],\"usVytm\":[\"Depois de excluir sua conta, não há como voltar atrás. Esta ação não pode ser desfeita.\"],\"uvH2xS\":[\"Copiar membros\"],\"v+Wp++\":[\"Open source\"],\"v1kQyJ\":[\"Webhooks\"],\"v3YoMA\":[\"Sênior\"],\"vAR/I8\":[\"Execute em sua própria infraestrutura\"],\"vAj6xG\":[\"Você pode fazer self-host seguindo as instruções em nosso <0>repositório.\"],\"vSJd18\":[\"Vídeo\"],\"vUr5JT\":[\"Não tem uma conta? <0><1>Cadastre-se\"],\"vXIe7J\":[\"Idioma\"],\"vXemf6\":[\"Bug\"],\"va/3u1\":[\"Controle quem pode visualizar e editar seus quadros.\"],\"vbskQn\":[\"O nome da chave de API é obrigatório\"],\"veIDCY\":[\"Iniciar teste grátis de 14 dias\"],\"vfRdCZ\":[\"Não foi possível redefinir as permissões\"],\"vgdzLf\":[\"Criar outro\"],\"vifyyw\":[\"Jurídico\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"As permissões deste membro foram redefinidas para os padrões de sua função.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"cobrança mensal\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Longo prazo\"],\"vwGkYB\":[\"A senha deve ter pelo menos 8 caracteres\"],\"wIb7Ng\":[\"Desenvolvimento de software\"],\"wK4OTM\":[\"Título (opcional)\"],\"wM8xd8\":[\"Júnior\"],\"wPZBpR\":[\"Por favor, selecione um arquivo para enviar.\"],\"wY+6Ye\":[\"Esta URL de quadro já foi utilizada\"],\"wakO3W\":[\"adicionou checklist <0>\",[\"0\"],\"\"],\"wewm3j\":[\"O nome do quadro não pode exceder 100 caracteres\"],\"wgNoIs\":[\"Selecionar tudo\"],\"wlQNTg\":[\"Membros\"],\"wqkcin\":[\"Pode visualizar comentários\"],\"wqxglO\":[\"Aprendizado\"],\"wruKPE\":[\"Apoie o desenvolvimento do projeto\"],\"wsy94z\":[\"Ideal para grandes organizações com necessidades avançadas\"],\"wtxjAY\":[\"Membros do workspace\"],\"x0kMO/\":[\"Erro ao atualizar URL do workspace\"],\"x8GeCD\":[\"Nome de exibição atualizado\"],\"xEbBrW\":[\"Qual licença você está usando?\"],\"xGVfLh\":[\"Continuar\"],\"xLTZVf\":[\"Dia de início da semana\"],\"xMn+V9\":[\"Importando do Trello\"],\"xRPn3U\":[\"Insira seu endereço de email\"],\"xvcYhz\":[\"Limpe quaisquer permissões personalizadas de membros para que todos os membros herdem apenas as permissões padrão de suas funções.\"],\"y3aU20\":[\"Salvar alterações\"],\"yD3ZSw\":[\"Altere suas preferências de idioma.\"],\"yV7o5I\":[\"Como importo meus quadros do Trello?\"],\"yb/fjw\":[\"Aprovação\"],\"yhLUU8\":[\"Erro ao conectar GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Importar projeto (1)\"],\"other\":[\"Importar projetos (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Fechar\"],\"zC8Whw\":[\"Comece criando uma nova lista\"],\"zERArS\":[\"atualizou o título para <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Criar link de convite\"],\"zMlxCA\":[\"1 usuário\"],\"zMquA7\":[\"Escolha um plano\"],\"zQPhSa\":[\"Converter em link\"],\"zQX5Dj\":[\"Nome da lista\"],\"zYRVNp\":[\"Selecione uma lista\"],\"zkWmBh\":[\"Anual\"],\"zl1b97\":[\"Não foi possível criar card\"],\"zoEbXq\":[\"Pode visualizar cartões\"],\"zt/6cS\":[\"Ideal para pequenas equipes que desejam colaborar e avançar mais rápido juntas.\"],\"zto8aj\":[\"Trello desconectado\"],\"zwBp5t\":[\"Privado\"],\"zwTiVn\":[\"removeu um anexo <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Saiba mais\"],\"zxKs+y\":[\"Vence amanhã\"],\"zzDlyQ\":[\"Sucesso\"]}")as Messages; \ No newline at end of file diff --git a/apps/web/src/locales/ru/messages.json b/apps/web/src/locales/ru/messages.json index 397f85e26..10de23e95 100644 --- a/apps/web/src/locales/ru/messages.json +++ b/apps/web/src/locales/ru/messages.json @@ -3,23 +3,40 @@ "message": " (edited)", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 153]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 153 + ] + ], "translation": " (отредактировано)" }, "lGjicL": { "message": ", or see our", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 102]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 102 + ] + ], "translation": ", или смотрите нашу" }, "J/hVSQ": { "message": "{0}", "placeholders": { - "0": ["isTemplate ? \"Templates\" : \"Boards\""] + "0": [ + "isTemplate ? \"Templates\" : \"Boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/index.tsx", 53]], + "origin": [ + [ + "src/views/boards/index.tsx", + 53 + ] + ], "translation": "{0}" }, "JArWcF": { @@ -29,74 +46,146 @@ "card?.title ?? t`Card`", "isTemplate ? \"Templates\" : \"Boards\"" ], - "1": ["board?.name ?? t`Board`", "workspace.name ?? t`Workspace`"] + "1": [ + "board?.name ?? t`Board`", + "workspace.name ?? t`Workspace`" + ] }, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 48], - ["src/views/card/index.tsx", 317] + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/card/index.tsx", + 364 + ] ], "translation": "{0} | {1}" }, "mU+M00": { "message": "{0} has been added to your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 56]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 56 + ] + ], "translation": "{0} добавлен в избранное." }, "bDI6VI": { "message": "{0} has been removed from your favorites.", "placeholders": { - "0": ["boardName ?? \"Board\""] + "0": [ + "boardName ?? \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 57]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 57 + ] + ], "translation": "{0} удалён из избранного." }, "CJukzS": { "message": "{0} labels", "placeholders": { - "0": ["labelPublicIds.length"] + "0": [ + "labelPublicIds.length" + ] }, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 455]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 455 + ] + ], "translation": "{0} метки" }, "9x4DAL": { "message": "{0} not found", "placeholders": { - "0": ["isTemplate ? \"Template\" : \"Board\""] + "0": [ + "isTemplate ? \"Template\" : \"Board\"" + ] }, "comments": [], - "origin": [["src/views/board/index.tsx", 557]], + "origin": [ + [ + "src/views/board/index.tsx", + 561 + ] + ], "translation": "{0} не найдено" }, "0xWkkH": { "message": "{boardCount, plural, one {Import board (1)} other {Import boards ({boardCount})}}", "placeholders": { - "boardCount": ["boardCount"] + "boardCount": [ + "boardCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 489]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 489 + ] + ], "translation": "{boardCount, plural, one {Импортировать доску (1)} few {Импортировать доски ({boardCount})} many {Импортировать досок ({boardCount})} other {Импортировать доски ({boardCount})}}" }, + "JBaoDB": { + "message": "{overflow} more viewers", + "placeholders": { + "overflow": [ + "overflow" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 70 + ] + ], + "translation": "" + }, "yndBF+": { "message": "{projectCount, plural, one {Import project (1)} other {Import projects ({projectCount})}}", "placeholders": { - "projectCount": ["projectCount"] + "projectCount": [ + "projectCount" + ] }, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 341]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 341 + ] + ], "translation": "{projectCount, plural, one {Импортировать проект (1)} few {Импортировать проекта ({projectCount})} many {Импортировать проектов ({projectCount})} other {Импортировать проекта ({projectCount})}}" }, "9lFfqv": { "message": "/month", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 207]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 207 + ] + ], "translation": "/месяц" }, "be30i9": { @@ -104,8 +193,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 30], - ["src/views/pricing/components/PricingTiers.tsx", 30] + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 30 + ] ], "translation": "$0" }, @@ -114,8 +209,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 158], - ["src/views/members/components/InviteMemberForm.tsx", 170] + [ + "src/views/members/components/InviteMemberForm.tsx", + 158 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] ], "translation": "$10/месяц" }, @@ -123,7 +224,12 @@ "message": "$8/month", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 170]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 170 + ] + ], "translation": "$8/месяц" }, "zMlxCA": { @@ -131,9 +237,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 82], - ["src/views/pricing/components/Pricing.tsx", 36], - ["src/views/pricing/components/PricingTiers.tsx", 35] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 82 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 36 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 35 + ] ], "translation": "1 пользователь" }, @@ -141,7 +256,12 @@ "message": "10mb file uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 90]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 90 + ] + ], "translation": "Загрузка файлов до 10 МБ" }, "gkxGkF": { @@ -149,9 +269,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/PricingTiers.tsx", 66], - ["src/views/pricing/components/PricingTiers.tsx", 88], - ["src/views/pricing/components/PricingTiers.tsx", 263] + [ + "src/views/pricing/components/PricingTiers.tsx", + 66 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 88 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 263 + ] ], "translation": "14 дней бесплатно · Сменить тариф или отменить в любой момент" }, @@ -159,21 +288,48 @@ "message": "404 - Page Not Found | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 11]], + "origin": [ + [ + "src/pages/404.tsx", + 11 + ] + ], "translation": "404 - Страница не найдена | kan.bn" }, + "Ws1I0u": { + "message": "A card was updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 54 + ] + ], + "translation": "" + }, "/rn4RE": { "message": "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 71]], + "origin": [ + [ + "src/views/home/index.tsx", + 71 + ] + ], "translation": "Мощное и гибкое kanban-приложение, которое помогает организовать работу, отслеживать прогресс и достигать результатов — всё в одном месте." }, "AeXO77": { "message": "Account", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 41]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 41 + ] + ], "translation": "Аккаунт" }, "TKFUnX": { @@ -181,7 +337,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 27 + ] ], "translation": "Аккаунт удалён" }, @@ -190,7 +349,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 283] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 283 + ] ], "translation": "Менеджер аккаунта" }, @@ -198,7 +360,12 @@ "message": "Actions", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 56]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 56 + ] + ], "translation": "Действия" }, "F6pfE9": { @@ -206,9 +373,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 26], - ["src/views/settings/components/NewWebhookModal.tsx", 293], - ["src/views/settings/components/WebhookList.tsx", 106] + [ + "src/views/boards/index.tsx", + 26 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 293 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] ], "translation": "Активно" }, @@ -217,8 +393,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 455], - ["src/views/public/board/CardModal.tsx", 200] + [ + "src/views/card/index.tsx", + 502 + ], + [ + "src/views/public/board/CardModal.tsx", + 200 + ] ], "translation": "Активность" }, @@ -227,7 +409,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 148] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 148 + ] ], "translation": "Журнал активности" }, @@ -235,35 +420,60 @@ "message": "Activity logs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 110]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 110 + ] + ], "translation": "Журналы активности" }, "UGCIzB": { "message": "Add / edit label", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 50]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 50 + ] + ], "translation": "Добавить / изменить метку" }, "B3xxao": { "message": "Add a card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 136]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 136 + ] + ], "translation": "Добавить карточку" }, "qtE5nt": { "message": "Add an item...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 141]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 141 + ] + ], "translation": "Добавить элемент..." }, "Gxxi5J": { "message": "Add checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 65]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 65 + ] + ], "translation": "Добавить чек-лист" }, "ngBZOd": { @@ -271,8 +481,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/Comment.tsx", 185], - ["src/views/card/components/NewCommentForm.tsx", 68] + [ + "src/views/card/components/Comment.tsx", + 185 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 68 + ] ], "translation": "Добавить комментарий... (введите '/' для открытия команд или '@' для упоминания)" }, @@ -280,14 +496,24 @@ "message": "Add description... (type '/' to open commands or '@' to mention)", "placeholders": {}, "comments": [], - "origin": [["src/components/Editor.tsx", 482]], + "origin": [ + [ + "src/components/Editor.tsx", + 482 + ] + ], "translation": "Добавить описание... (введите '/' для открытия команд или '@' для упоминания)" }, "abUZlY": { "message": "Add details...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 189 + ] + ], "translation": "Добавить детали..." }, "lyqwgn": { @@ -295,8 +521,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/LabelSelector.tsx", 114], - ["src/views/card/components/LabelSelector.tsx", 119] + [ + "src/views/card/components/LabelSelector.tsx", + 114 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 119 + ] ], "translation": "Добавить метку" }, @@ -305,8 +537,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 135], - ["src/views/members/components/InviteMemberForm.tsx", 257] + [ + "src/views/card/components/MemberSelector.tsx", + 135 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 257 + ] ], "translation": "Добавить участника" }, @@ -314,126 +552,222 @@ "message": "Add to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 122]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 122 + ] + ], "translation": "Добавить в избранное" }, "cWXW+7": { "message": "Add webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 36 + ] + ], "translation": "Добавить вебхук" }, "bmXKoX": { "message": "added {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 102]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 102 + ] + ], "translation": "добавлено {0} меток: <0>{labelList}" }, "h4VV67": { "message": "added a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 132]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 132 + ] + ], "translation": "добавлен чек-лист" }, "O83K21": { "message": "added a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 135]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 135 + ] + ], "translation": "добавлен элемент чек-листа" }, "T21jY/": { "message": "added a label to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 128]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 128 + ] + ], "translation": "добавлена метка на карточку" }, "rs7L54": { "message": "added a member to the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 130]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 130 + ] + ], "translation": "добавлен участник в карточку" }, "5y6qY8": { "message": "added an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 140]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 140 + ] + ], "translation": "добавлено вложение" }, "CujNX4": { "message": "added an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 278]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 278 + ] + ], "translation": "добавлено вложение <0>{0}" }, "wakO3W": { "message": "added checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 208]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 208 + ] + ], "translation": "добавлен чек-лист <0>{0}" }, "E0t3jO": { "message": "added checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 232]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 232 + ] + ], "translation": "добавлен элемент чек-листа <0>{0}" }, "b5FKyH": { "message": "added label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 192]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 192 + ] + ], "translation": "добавлена метка <0>{0}" }, "pL78ec": { "message": "Added to favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 53]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 53 + ] + ], "translation": "Добавлено в избранное" }, "14Xi3Z": { "message": "Adding a new member will cost an additional {price} ({billingType}) per seat.", "placeholders": { - "price": ["price"], - "billingType": ["billingType"] + "price": [ + "price" + ], + "billingType": [ + "billingType" + ] }, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 327]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 327 + ] + ], "translation": "Добавление нового участника будет стоить дополнительно {price} ({billingType}) за место." }, "D7/JvJ": { "message": "Adjust the square crop to fit your avatar.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 256]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 256 + ] + ], "translation": "Отрегулируйте квадратную обрезку для вашего аватара." }, "U3pytU": { "message": "Admin", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 201]], + "origin": [ + [ + "src/views/members/index.tsx", + 201 + ] + ], "translation": "Админ" }, "3pIq39": { @@ -441,19 +775,39 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 264], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 265], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 266], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 267], - ["src/views/pricing/components/Pricing.tsx", 55] - ], - "translation": "Роли администратора" - }, + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 264 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 265 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 266 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 267 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 55 + ] + ], + "translation": "Роли администратора" + }, "Kec+/t": { "message": "Advanced admin controls", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 103]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 103 + ] + ], "translation": "Расширенные настройки администратора" }, "/jd3aj": { @@ -461,7 +815,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 268] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 268 + ] ], "translation": "Расширенные роли администратора" }, @@ -469,42 +826,72 @@ "message": "Advanced security, compliance, and dedicated support for large organizations.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 97 + ] + ], "translation": "Расширенная безопасность, соответствие требованиям и выделенная поддержка для крупных организаций." }, "h2ztFt": { "message": "All Free features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 56]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 56 + ] + ], "translation": "Все функции Free +" }, "nryrgW": { "message": "All member permission overrides have been reset to their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 26 + ] + ], "translation": "Все индивидуальные разрешения участников были сброшены к значениям по умолчанию для их ролей." }, "ZAs2NN": { "message": "All Pro features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 101]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 101 + ] + ], "translation": "Все функции Pro +" }, "UQbwrz": { "message": "All systems operational", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 18]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 18 + ] + ], "translation": "Все системы работают нормально" }, "EII/X8": { "message": "All Teams features +", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 79]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 79 + ] + ], "translation": "Все функции Teams +" }, "Z3krJD": { @@ -523,28 +910,48 @@ "message": "Already have an account? <0><1>Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 90]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 90 + ] + ], "translation": "Уже есть аккаунт? <0><1>Войти" }, "j1+HPc": { "message": "An error occurred while connecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 107]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 107 + ] + ], "translation": "Произошла ошибка при подключении вашего аккаунта GitHub." }, "Dz63YI": { "message": "An error occurred while disconnecting your GitHub account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 130]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 130 + ] + ], "translation": "Произошла ошибка при отключении вашего аккаунта GitHub." }, "WmPhYW": { "message": "An error occurred while disconnecting your Trello account.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 87]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 87 + ] + ], "translation": "Произошла ошибка при отключении вашей учетной записи Trello." }, "ZXSPJt": { @@ -552,7 +959,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 90] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 90 + ] ], "translation": "Произошла непредвиденная ошибка. Пожалуйста, попробуйте позже." }, @@ -560,14 +970,24 @@ "message": "Annual", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 63]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 63 + ] + ], "translation": "Ежегодно" }, "3bqt9U": { "message": "Anyone with this link can join your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 311]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 311 + ] + ], "translation": "Любой, у кого есть эта ссылка, может присоединиться к вашему рабочему пространству" }, "OZtEcz": { @@ -575,8 +995,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 65], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 237] + [ + "src/components/SettingsLayout.tsx", + 65 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 237 + ] ], "translation": "API" }, @@ -584,119 +1010,196 @@ "message": "API key created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 91]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 91 + ] + ], "translation": "Ключ API создан" }, "pFKC6A": { "message": "API key name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 161]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 161 + ] + ], "translation": "Имя ключа API" }, "nq7q3Z": { "message": "API key name cannot exceed 30 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 25 + ] + ], "translation": "Имя ключа API не может превышать 30 символов" }, "vbskQn": { "message": "API key name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 24 + ] + ], "translation": "Требуется имя ключа API" }, "5h8ooz": { "message": "API keys", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 22]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 22 + ] + ], "translation": "Ключи API" }, "j2+d/o": { "message": "API Reference", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 31]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 31 + ] + ], "translation": "Справочник по API" }, "bJZm1W": { "message": "Applicants", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 75]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 75 + ] + ], "translation": "Кандидаты" }, "yb/fjw": { "message": "Approval", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 46]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 46 + ] + ], "translation": "Одобрение" }, "aKJHG+": { "message": "Archive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Архивировать доску" }, "TdfEV7": { "message": "Archived", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 27]], + "origin": [ + [ + "src/views/boards/index.tsx", + 27 + ] + ], "translation": "В архиве" }, "lo8xBK": { "message": "Are you sure want to remove {entityLabel}?", "placeholders": { - "entityLabel": ["entityLabel"] + "entityLabel": [ + "entityLabel" + ] }, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 47] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 47 + ] ], "translation": "Вы уверены, что хотите удалить {entityLabel}?" }, "Ypy5pZ": { "message": "Are you sure you want to delete the webhook \"{webhookName}\"? This action cannot be undone.", "placeholders": { - "webhookName": ["webhookName"] + "webhookName": [ + "webhookName" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 60 + ] ], "translation": "Вы уверены, что хотите удалить вебхук \"{webhookName}\"? Это действие невозможно отменить." }, "BhDZlc": { "message": "Are you sure you want to delete the workspace {0}?", "placeholders": { - "0": ["workspace.name"] + "0": [ + "workspace.name" + ] }, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 62] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 62 + ] ], "translation": "Вы уверены, что хотите удалить рабочее пространство {0}?" }, "DMeWZD": { "message": "Are you sure you want to delete this {0}?", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/board/components/DeleteBoardConfirmation.tsx", 36]], + "origin": [ + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 36 + ] + ], "translation": "Вы уверены, что хотите удалить этот объект {0}?" }, "ZT4Khw": { "message": "Are you sure you want to delete this card?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 75]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 75 + ] + ], "translation": "Вы уверены, что хотите удалить эту карточку?" }, "Fpci8b": { @@ -704,7 +1207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 56] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 56 + ] ], "translation": "Вы уверены, что хотите удалить этот чек-лист?" }, @@ -712,14 +1218,24 @@ "message": "Are you sure you want to delete this comment?", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 66]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 66 + ] + ], "translation": "Вы уверены, что хотите удалить этот комментарий?" }, "kECVpo": { "message": "Are you sure you want to delete this label?", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 41]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 41 + ] + ], "translation": "Вы уверены, что хотите удалить эту метку?" }, "74F7N/": { @@ -727,17 +1243,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 54] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 54 + ] ], "translation": "Вы уверены, что хотите удалить свой аккаунт?" }, "PyYD/v": { "message": "assigned <0>{0} to the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 172]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 172 + ] + ], "translation": "назначено <0>{0} на карточку" }, "JUce1S": { @@ -745,7 +1271,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 199] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 199 + ] ], "translation": "Исполнители" }, @@ -753,91 +1282,156 @@ "message": "Attachment uploaded", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 45]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 45 + ] + ], "translation": "Вложение загружено" }, "1rWxEw": { "message": "Awaiting Customer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 59]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 59 + ] + ], "translation": "Ожидание клиента" }, "iH8pgl": { "message": "Back", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 275]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 275 + ] + ], "translation": "Назад" }, "KNKCTb": { "message": "Backlog", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Бэклог" }, "Vt50G1": { "message": "Basic Kanban", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 16]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 16 + ] + ], "translation": "Базовый канбан" }, "Pat4r8": { "message": "Basic Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 28]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 28 + ] + ], "translation": "Базовый роадмап" }, "Cd4sTD": { "message": "Best for individuals and solo creators getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 32]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 32 + ] + ], "translation": "Лучше всего подходит для индивидуальных пользователей и соло-креаторов, начинающих работу" }, "wsy94z": { "message": "Best for large organizations with advanced needs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 98 + ] + ], "translation": "Лучше всего подходит для крупных организаций с расширенными потребностями" }, "UoSI+i": { "message": "Best for small and growing teams that need collaboration", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 53]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 53 + ] + ], "translation": "Лучше всего подходит для небольших и развивающихся команд, которым нужна совместная работа" }, "zt/6cS": { "message": "Best for small teams who want to collaborate and move faster together.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 86]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 86 + ] + ], "translation": "Идеально для небольших команд, которые хотят сотрудничать и работать быстрее вместе." }, "qaS+1/": { "message": "Best for teams that want to scale without limits", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 76]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 76 + ] + ], "translation": "Лучше всего подходит для команд, которые хотят масштабироваться без ограничений" }, "ARvBT/": { "message": "billed annually", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "оплата ежегодно" }, "+VoTOr": { "message": "billed monthly", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 171]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 171 + ] + ], "translation": "оплата ежемесячно" }, "R+w/Va": { @@ -845,9 +1439,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 58], - ["src/views/boards/components/TemplateBoards.tsx", 68], - ["src/views/settings/BillingSettings.tsx", 39] + [ + "src/components/SettingsLayout.tsx", + 58 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 68 + ], + [ + "src/views/settings/BillingSettings.tsx", + 39 + ] ], "translation": "Выставление счетов" }, @@ -855,14 +1458,24 @@ "message": "Billing portal", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 49 + ] + ], "translation": "Портал выставления счетов" }, "4RoY9J": { "message": "Blog Post", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Блог-пост" }, "QD8opX": { @@ -870,9 +1483,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/card/index.tsx", 317], - ["src/views/public/board/index.tsx", 125] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/card/index.tsx", + 364 + ], + [ + "src/views/public/board/index.tsx", + 125 + ] ], "translation": "Доска" }, @@ -881,8 +1503,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 314], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 85] + [ + "src/components/NewWorkspaceForm.tsx", + 314 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 85 + ] ], "translation": "Аналитика доски" }, @@ -890,28 +1518,48 @@ "message": "Board archived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Доска архивирована" }, "wewm3j": { "message": "Board name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 23 + ] + ], "translation": "Название доски не может превышать 100 символов" }, "R1c3Mq": { "message": "Board name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 22 + ] + ], "translation": "Требуется указать название доски" }, "jwI32v": { "message": "Board not found", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 181]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 181 + ] + ], "translation": "Доска не найдена" }, "XNxYxq": { @@ -919,7 +1567,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 116] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 116 + ] ], "translation": "Шаблоны досок" }, @@ -927,21 +1578,36 @@ "message": "Board unarchived", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 44]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 44 + ] + ], "translation": "Доска восстановлена из архива" }, "Xid3K6": { "message": "Board URL can only contain letters, numbers, and hyphens", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 46]], - "translation": "URL доски может содержать только буквы, цифры и дефисы" - }, - "gv5kbo": { + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 46 + ] + ], + "translation": "URL доски может содержать только буквы, цифры и дефисы" + }, + "gv5kbo": { "message": "Board URL cannot exceed 60 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 44]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 44 + ] + ], "translation": "URL доски не может превышать 60 символов" }, "8+BY11": { @@ -949,8 +1615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 82], - ["src/views/public/board/index.tsx", 79] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 82 + ], + [ + "src/views/public/board/index.tsx", + 79 + ] ], "translation": "URL доски скопирован в буфер обмена" }, @@ -958,7 +1630,12 @@ "message": "Board URL must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 42]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 42 + ] + ], "translation": "URL доски должен содержать не менее 3 символов" }, "qzdST2": { @@ -966,8 +1643,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 85], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 132] + [ + "src/views/home/components/Features.tsx", + 85 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 132 + ] ], "translation": "Видимость доски" }, @@ -975,7 +1658,12 @@ "message": "Board visibility updated", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 49]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 49 + ] + ], "translation": "Видимость доски обновлена" }, "8TveY+": { @@ -983,8 +1671,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 99], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 73] + [ + "src/components/SideNavigation.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 73 + ] ], "translation": "Доски" }, @@ -992,28 +1686,48 @@ "message": "Boards you archive will appear here.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Здесь будут отображаться архивированные вами доски." }, "ZDo4HN": { "message": "Brainstorming", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 42]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 42 + ] + ], "translation": "Мозговой штурм" }, "vXemf6": { "message": "Bug", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 24]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ] + ], "translation": "Баг" }, "/asTmx": { "message": "Bug Report", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 64]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 64 + ] + ], "translation": "Отчёт о баге" }, "t6FvJH": { @@ -1021,8 +1735,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 146], - ["src/views/settings/components/RolePermissions.tsx", 35] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 146 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 35 + ] ], "translation": "Можно добавлять комментарии" }, @@ -1031,8 +1751,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 131], - ["src/views/settings/components/RolePermissions.tsx", 20] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 131 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 20 + ] ], "translation": "Можно создавать доски" }, @@ -1041,8 +1767,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 141], - ["src/views/settings/components/RolePermissions.tsx", 30] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 141 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 30 + ] ], "translation": "Можно создавать карточки" }, @@ -1051,8 +1783,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 136], - ["src/views/settings/components/RolePermissions.tsx", 25] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 136 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 25 + ] ], "translation": "Можно создавать списки" }, @@ -1061,8 +1799,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 133], - ["src/views/settings/components/RolePermissions.tsx", 22] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 133 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 22 + ] ], "translation": "Можно удалять доски" }, @@ -1071,8 +1815,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 143], - ["src/views/settings/components/RolePermissions.tsx", 32] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 143 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 32 + ] ], "translation": "Можно удалять карточки" }, @@ -1081,8 +1831,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 148], - ["src/views/settings/components/RolePermissions.tsx", 37] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 148 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 37 + ] ], "translation": "Можно удалять комментарии" }, @@ -1091,8 +1847,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 138], - ["src/views/settings/components/RolePermissions.tsx", 27] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 138 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 27 + ] ], "translation": "Можно удалять списки" }, @@ -1101,8 +1863,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 127], - ["src/views/settings/components/RolePermissions.tsx", 16] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 127 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 16 + ] ], "translation": "Можно удалить рабочее пространство" }, @@ -1111,8 +1879,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 132], - ["src/views/settings/components/RolePermissions.tsx", 21] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 132 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 21 + ] ], "translation": "Можно редактировать доски" }, @@ -1121,8 +1895,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 142], - ["src/views/settings/components/RolePermissions.tsx", 31] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 142 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 31 + ] ], "translation": "Можно редактировать карточки" }, @@ -1131,8 +1911,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 147], - ["src/views/settings/components/RolePermissions.tsx", 36] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 147 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 36 + ] ], "translation": "Можно редактировать комментарии" }, @@ -1141,8 +1927,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 137], - ["src/views/settings/components/RolePermissions.tsx", 26] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 137 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 26 + ] ], "translation": "Можно редактировать списки" }, @@ -1151,8 +1943,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 152], - ["src/views/settings/components/RolePermissions.tsx", 41] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 152 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 41 + ] ], "translation": "Можно редактировать роли и права участников" }, @@ -1161,8 +1959,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 126], - ["src/views/settings/components/RolePermissions.tsx", 15] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 126 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 15 + ] ], "translation": "Можно редактировать рабочее пространство" }, @@ -1171,8 +1975,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 151], - ["src/views/settings/components/RolePermissions.tsx", 40] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 151 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 40 + ] ], "translation": "Может приглашать участников" }, @@ -1181,8 +1991,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 128], - ["src/views/settings/components/RolePermissions.tsx", 17] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 128 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 17 + ] ], "translation": "Может управлять настройками рабочего пространства" }, @@ -1191,8 +2007,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 153], - ["src/views/settings/components/RolePermissions.tsx", 42] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 153 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 42 + ] ], "translation": "Может удалять участников" }, @@ -1201,8 +2023,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 130], - ["src/views/settings/components/RolePermissions.tsx", 19] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 130 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 19 + ] ], "translation": "Может просматривать доски" }, @@ -1211,8 +2039,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 140], - ["src/views/settings/components/RolePermissions.tsx", 29] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 140 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 29 + ] ], "translation": "Может просматривать карточки" }, @@ -1221,8 +2055,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 145], - ["src/views/settings/components/RolePermissions.tsx", 34] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 145 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 34 + ] ], "translation": "Может просматривать комментарии" }, @@ -1231,8 +2071,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 135], - ["src/views/settings/components/RolePermissions.tsx", 24] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 135 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 24 + ] ], "translation": "Может просматривать списки" }, @@ -1241,8 +2087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 150], - ["src/views/settings/components/RolePermissions.tsx", 39] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 150 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 39 + ] ], "translation": "Может просматривать участников" }, @@ -1251,8 +2103,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 125], - ["src/views/settings/components/RolePermissions.tsx", 14] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 125 + ], + [ + "src/views/settings/components/RolePermissions.tsx", + 14 + ] ], "translation": "Может просматривать рабочее пространство" }, @@ -1261,26 +2119,74 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 49], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 176], - ["src/views/board/components/CardContextDuplicateModal.tsx", 267], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 44], - ["src/views/card/components/Comment.tsx", 195], - ["src/views/card/components/DeleteCardConfirmation.tsx", 86], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 64], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 77], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 55], - ["src/views/onboarding/select-plan/index.tsx", 209], - ["src/views/settings/components/Avatar.tsx", 287], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 168], + [ + "src/components/DeleteLabelConfirmation.tsx", + 49 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 176 + ], + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 267 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 44 + ], + [ + "src/views/card/components/Comment.tsx", + 195 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 86 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 64 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 77 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 55 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 209 + ], + [ + "src/views/settings/components/Avatar.tsx", + 287 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 168 + ], [ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 40 ], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 88], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 108] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 88 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 66 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 98 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 108 + ] ], "translation": "Отмена" }, @@ -1288,7 +2194,12 @@ "message": "Card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 317]], + "origin": [ + [ + "src/views/card/index.tsx", + 364 + ] + ], "translation": "Карточка" }, "sU2uWc": { @@ -1296,7 +2207,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 67] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 67 + ] ], "translation": "Карточка продублирована" }, @@ -1305,8 +2219,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 363], - ["src/views/card/index.tsx", 400] + [ + "src/views/card/index.tsx", + 410 + ], + [ + "src/views/card/index.tsx", + 447 + ] ], "translation": "Карточка не найдена" }, @@ -1314,17 +2234,43 @@ "message": "Card title", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 321]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 321 + ] + ], "translation": "Название карточки" }, + "4630Pc": { + "message": "Card updated", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 53 + ] + ], + "translation": "" + }, "rQXTmd": { "message": "Card URL copied to clipboard", "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 308], - ["src/views/card/components/Dropdown.tsx", 44], - ["src/views/public/board/CardModal.tsx", 38] + [ + "src/views/board/index.tsx", + 312 + ], + [ + "src/views/card/components/Dropdown.tsx", + 44 + ], + [ + "src/views/public/board/CardModal.tsx", + 38 + ] ], "translation": "URL карточки скопирован в буфер обмена" }, @@ -1333,10 +2279,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 88], - ["src/views/settings/AccountSettings.tsx", 98], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 109], - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 178] + [ + "src/views/settings/AccountSettings.tsx", + 88 + ], + [ + "src/views/settings/AccountSettings.tsx", + 98 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 109 + ], + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 178 + ] ], "translation": "Сменить пароль" }, @@ -1344,25 +2302,43 @@ "message": "Change the application font size.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 63]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 63 + ] + ], "translation": "Изменить размер шрифта приложения." }, "yD3ZSw": { "message": "Change your language preferences.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 53 + ] + ], "translation": "Измените языковые настройки." }, "gZxH/p": { "message": "changed the due date to <0>{formattedDate}", "placeholders": { - "formattedDate": ["formattedDate"] + "formattedDate": [ + "formattedDate" + ] }, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 303], - ["src/views/card/components/ActivityList.tsx", 317] + [ + "src/views/card/components/ActivityList.tsx", + 303 + ], + [ + "src/views/card/components/ActivityList.tsx", + 317 + ] ], "translation": "изменил(а) срок выполнения на <0>{formattedDate}" }, @@ -1370,7 +2346,12 @@ "message": "Check out some of our favorite open source projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 61]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 61 + ] + ], "translation": "Ознакомьтесь с нашими любимыми open source проектами." }, "5IXWmO": { @@ -1378,8 +2359,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 43], - ["src/views/auth/signup/index.tsx", 71] + [ + "src/views/auth/login/index.tsx", + 43 + ], + [ + "src/views/auth/signup/index.tsx", + 71 + ] ], "translation": "Проверьте свой почтовый ящик" }, @@ -1387,7 +2374,12 @@ "message": "Checklist name", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 119]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 119 + ] + ], "translation": "Название чек-листа" }, "EH8IL3": { @@ -1395,8 +2387,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 108], - ["src/views/pricing/components/PricingTiers.tsx", 39] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 108 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 39 + ] ], "translation": "Чек-листы" }, @@ -1404,7 +2402,12 @@ "message": "Choose a plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 122]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 122 + ] + ], "translation": "Выберите тариф" }, "VHS0aJ": { @@ -1423,7 +2426,12 @@ "message": "Clear any custom member permissions so that all members only inherit permissions from their role defaults.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 67]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 67 + ] + ], "translation": "Очистить все индивидуальные разрешения участников, чтобы все участники наследовали только разрешения по умолчанию для своей роли." }, "jL82rC": { @@ -1435,7 +2443,10 @@ "src/views/settings/components/ClearCustomPermissionsConfirmation.tsx", 48 ], - ["src/views/settings/PermissionsSettings.tsx", 80] + [ + "src/views/settings/PermissionsSettings.tsx", + 80 + ] ], "translation": "Очистить пользовательские разрешения" }, @@ -1443,18 +2454,31 @@ "message": "Clear filters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 227]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 227 + ] + ], "translation": "Сбросить фильтры" }, "RRn9jf": { "message": "Click on the link we've sent to {magicLinkRecipient} to sign in.", "placeholders": { - "magicLinkRecipient": ["magicLinkRecipient"] + "magicLinkRecipient": [ + "magicLinkRecipient" + ] }, "comments": [], "origin": [ - ["src/views/auth/login/index.tsx", 48], - ["src/views/auth/signup/index.tsx", 76] + [ + "src/views/auth/login/index.tsx", + 48 + ], + [ + "src/views/auth/signup/index.tsx", + 76 + ] ], "translation": "Перейдите по ссылке, которую мы отправили на {magicLinkRecipient}, чтобы войти." }, @@ -1463,9 +2487,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/index.tsx", 354], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 172], - ["src/views/settings/components/NewApiKeyModal.tsx", 136] + [ + "src/views/card/index.tsx", + 401 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 172 + ], + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 136 + ] ], "translation": "Закрыть" }, @@ -1473,14 +2506,24 @@ "message": "Code Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 23]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] + ], "translation": "Code Review" }, "EvArWh": { "message": "Collaborate seamlessly with your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 91 + ] + ], "translation": "Бесшовно сотрудничайте с вашей командой." }, "dtQIWT": { @@ -1488,7 +2531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 309] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 309 + ] ], "translation": "Сотрудничество" }, @@ -1497,9 +2543,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 317], - ["src/views/home/components/Features.tsx", 67], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 88] + [ + "src/components/NewWorkspaceForm.tsx", + 317 + ], + [ + "src/views/home/components/Features.tsx", + 67 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 88 + ] ], "translation": "Скоро появится" }, @@ -1508,8 +2563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 105], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 156] + [ + "src/views/home/components/Features.tsx", + 105 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 156 + ] ], "translation": "Комментарии" }, @@ -1517,65 +2578,112 @@ "message": "Company", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 95 + ] + ], "translation": "Компания" }, "bD8I7O": { "message": "Complete", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 94]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 94 + ] + ], "translation": "Завершить" }, "cAgBMh": { "message": "Complete control and ownership:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 70]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 70 + ] + ], "translation": "Полный контроль и владение:" }, "Lt+ZP3": { "message": "completed a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 137]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 137 + ] + ], "translation": "завершил(а) пункт контрольного списка" }, "29sSki": { "message": "completed checklist item <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 249]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 249 + ] + ], "translation": "завершён пункт контрольного списка <0>{0}" }, "tOZp9v": { "message": "Configurable user roles and permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 82]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 82 + ] + ], "translation": "Настраиваемые роли и права пользователей" }, "t0dTPm": { "message": "Configure webhooks to receive notifications when cards are created, updated, moved, or deleted.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 31]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 31 + ] + ], "translation": "Настройте вебхуки для получения уведомлений при создании, обновлении, перемещении или удалении карточек." }, "/f3t6v": { "message": "Configure which actions are allowed for each workspace role. These permissions apply to all members with that role.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 56]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 56 + ] + ], "translation": "Настройте, какие действия разрешены для каждой роли в рабочем пространстве. Эти права применяются ко всем участникам с этой ролью." }, "86XI28": { "message": "Confirm your email preferences:", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 81]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 81 + ] + ], "translation": "Подтвердите ваши настройки электронной почты:" }, "479pdJ": { @@ -1583,7 +2691,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 150] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 150 + ] ], "translation": "Подтвердите новый пароль" }, @@ -1591,42 +2702,72 @@ "message": "Connect", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Подключить" }, "3jod3l": { "message": "Connect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 212]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 212 + ] + ], "translation": "Подключить GitHub" }, "nk7caK": { "message": "Connect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 162]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 162 + ] + ], "translation": "Подключить Trello" }, "sDLCvT": { "message": "Connect your favorite tools to streamline your workflow.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 122]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 122 + ] + ], "translation": "Подключите любимые инструменты, чтобы упростить рабочий процесс." }, "MCIXdZ": { "message": "Connect your GitHub account to import projects.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 191]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 191 + ] + ], "translation": "Подключите свой аккаунт GitHub, чтобы импортировать проекты." }, "5eZwRW": { "message": "Connect your Trello account to import boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 149]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 149 + ] + ], "translation": "Подключите ваш аккаунт Trello для импорта досок." }, "jfC/xh": { @@ -1634,8 +2775,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 38], - ["src/views/home/components/Header.tsx", 42] + [ + "src/views/home/components/Footer.tsx", + 38 + ], + [ + "src/views/home/components/Header.tsx", + 42 + ] ], "translation": "Контакты" }, @@ -1643,7 +2790,12 @@ "message": "Contact Sales", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 95]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 95 + ] + ], "translation": "Связаться с отделом продаж" }, "Bhgd0l": { @@ -1651,9 +2803,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 96], - ["src/views/pricing/components/PricingTiers.tsx", 96] + [ + "src/components/FeedbackModal.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 96 + ] ], "translation": "Связаться с нами" }, @@ -1661,7 +2822,12 @@ "message": "Content Creation", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 40]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 40 + ] + ], "translation": "Создание контента" }, "xGVfLh": { @@ -1669,8 +2835,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 212], - ["src/views/onboarding/workspace-details/index.tsx", 291] + [ + "src/views/onboarding/select-plan/index.tsx", + 212 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 291 + ] ], "translation": "Продолжить" }, @@ -1678,44 +2850,76 @@ "message": "Continue with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "Продолжить с " }, "gkzAEM": { "message": "Continue with {0}", "placeholders": { - "0": ["key === \"oidc\" ? oidcProviderName : provider.name"] + "0": [ + "key === \"oidc\" ? oidcProviderName : provider.name" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 355]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 355 + ] + ], "translation": "Продолжить с {0}" }, "va/3u1": { "message": "Control who can view and edit your boards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 86 + ] + ], "translation": "Управляйте тем, кто может просматривать и редактировать ваши доски." }, "zQPhSa": { "message": "Convert to link", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 47]], + "origin": [ + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 47 + ] + ], "translation": "Преобразовать в ссылку" }, "5RkSzq": { "message": "Copy board link", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugButton.tsx", 87]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 87 + ] + ], "translation": "Скопировать ссылку на доску" }, "F0YmUY": { "message": "Copy card link", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Dropdown.tsx", 58]], + "origin": [ + [ + "src/views/card/components/Dropdown.tsx", + 58 + ] + ], "translation": "Скопировать ссылку на карточку" }, "0utuU6": { @@ -1723,7 +2927,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 257] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 257 + ] ], "translation": "Копировать чек-листы" }, @@ -1732,7 +2939,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 221] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 221 + ] ], "translation": "Копировать метки" }, @@ -1740,7 +2950,12 @@ "message": "Copy link to card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 62]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 62 + ] + ], "translation": "Копировать ссылку на карточку" }, "uvH2xS": { @@ -1748,7 +2963,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 239] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 239 + ] ], "translation": "Копировать участников" }, @@ -1757,17 +2975,27 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 305] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 305 + ] ], "translation": "Основные функции" }, "b9XOHo": { "message": "Create {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 166]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 166 + ] + ], "translation": "Создать {0}" }, "vgdzLf": { @@ -1775,9 +3003,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 213], - ["src/views/board/components/NewCardForm.tsx", 520], - ["src/views/board/components/NewListForm.tsx", 141] + [ + "src/components/LabelForm.tsx", + 213 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 520 + ], + [ + "src/views/board/components/NewListForm.tsx", + 141 + ] ], "translation": "Создать ещё одну" }, @@ -1785,53 +3022,91 @@ "message": "Create API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 175]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 175 + ] + ], "translation": "Создать API-ключ" }, "dsLT3m": { "message": "Create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 530]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 530 + ] + ], "translation": "Создать карточку" }, "d33Usy": { "message": "Create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 135]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 135 + ] + ], "translation": "Создать чек-лист" }, "zKY5xi": { "message": "Create invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 349]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 349 + ] + ], "translation": "Создать пригласительную ссылку" }, "QtACvI": { "message": "Create label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Создать метку" }, "XTKtey": { "message": "Create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 153]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 153 + ] + ], "translation": "Создать список" }, "VKoDQD": { "message": "Create new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], "origin": [ - ["src/views/boards/components/BoardsList.tsx", 80], - ["src/views/boards/index.tsx", 41] + [ + "src/views/boards/components/BoardsList.tsx", + 80 + ], + [ + "src/views/boards/index.tsx", + 41 + ] ], "translation": "Создать новый {0}" }, @@ -1839,7 +3114,12 @@ "message": "Create new key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 30 + ] + ], "translation": "Создать новый ключ" }, "0+0/3e": { @@ -1847,8 +3127,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewCardForm.tsx", 417], - ["src/views/card/components/LabelSelector.tsx", 101] + [ + "src/views/board/components/NewCardForm.tsx", + 417 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 101 + ] ], "translation": "Создать новую метку" }, @@ -1857,8 +3143,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 92], - ["src/views/board/index.tsx", 671] + [ + "src/views/board/index.tsx", + 94 + ], + [ + "src/views/board/index.tsx", + 676 + ] ], "translation": "Создать новый список" }, @@ -1866,14 +3158,24 @@ "message": "Create template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 132]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 132 + ] + ], "translation": "Создать шаблон" }, "SiPp29": { "message": "Create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Создать вебхук" }, "FdtSNC": { @@ -1881,8 +3183,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 352], - ["src/components/WorkspaceMenu.tsx", 160] + [ + "src/components/NewWorkspaceForm.tsx", + 352 + ], + [ + "src/components/WorkspaceMenu.tsx", + 160 + ] ], "translation": "Создать рабочее пространство" }, @@ -1890,14 +3198,24 @@ "message": "Created", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 236]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 236 + ] + ], "translation": "Создан" }, "f8lDFq": { "message": "created the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 124]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 124 + ] + ], "translation": "создал(а) карточку" }, "J5nbej": { @@ -1905,9 +3223,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Критично" }, @@ -1915,7 +3242,12 @@ "message": "Crop your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 253]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 253 + ] + ], "translation": "Обрежьте свой аватар" }, "D3C4Yx": { @@ -1923,7 +3255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 19] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 19 + ] ], "translation": "Требуется текущий пароль" }, @@ -1931,7 +3266,12 @@ "message": "Custom board templates", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 38 + ] + ], "translation": "Пользовательские шаблоны досок" }, "A42Dqn": { @@ -1939,8 +3279,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 172], - ["src/views/pricing/components/PricingTiers.tsx", 83] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 172 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 83 + ] ], "translation": "Пользовательский брендинг" }, @@ -1948,28 +3294,48 @@ "message": "Custom domain", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 74]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 74 + ] + ], "translation": "Пользовательский домен" }, "2M84k3": { "message": "Custom permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 64]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 64 + ] + ], "translation": "Пользовательские разрешения" }, "UirJfL": { "message": "Custom SLA", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 105]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 105 + ] + ], "translation": "Пользовательское SLA" }, "u2+JIh": { "message": "Custom URLs require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 283]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 283 + ] + ], "translation": "Для пользовательских URL требуется переход на тариф Pro" }, "7RpHg/": { @@ -1977,8 +3343,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 100], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 101] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 100 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 101 + ] ], "translation": "Пользовательское имя" }, @@ -1986,7 +3358,12 @@ "message": "Custom usernames require upgrading to a Pro plan", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 220]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 220 + ] + ], "translation": "Для пользовательских имен пользователей требуется обновление до тарифа Pro" }, "j9IZZ0": { @@ -1994,8 +3371,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 307], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 78] + [ + "src/components/NewWorkspaceForm.tsx", + 307 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 78 + ] ], "translation": "Пользовательский URL рабочего пространства" }, @@ -2003,35 +3386,60 @@ "message": "Custom workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 81]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 81 + ] + ], "translation": "Пользовательское имя рабочего пространства" }, "n+xLOH": { "message": "Customer Support", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 54]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 54 + ] + ], "translation": "Служба поддержки клиентов" }, "pvnfJD": { "message": "Dark", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 158]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 158 + ] + ], "translation": "Тёмная тема" }, "cp1rsD": { "message": "Deactivate invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 348]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 348 + ] + ], "translation": "Деактивировать ссылку-приглашение" }, "bKzM8L": { "message": "Dedicated account manager", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 104]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 104 + ] + ], "translation": "Выделенный менеджер аккаунта" }, "P8Cunr": { @@ -2039,8 +3447,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 98], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 99] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 98 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 99 + ] ], "translation": "Имя пользователя по умолчанию" }, @@ -2049,15 +3463,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 51], - ["src/components/LabelForm.tsx", 228], - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 52], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 47], - ["src/views/card/components/DeleteCardConfirmation.tsx", 92], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 67], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 83], - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 73], - ["src/views/settings/components/WebhookList.tsx", 140] + [ + "src/components/DeleteLabelConfirmation.tsx", + 51 + ], + [ + "src/components/LabelForm.tsx", + 228 + ], + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 52 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 47 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 92 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 67 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 83 + ], + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 73 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 140 + ] ], "translation": "Удалить" }, @@ -2066,9 +3507,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/AccountSettings.tsx", 70], - ["src/views/settings/AccountSettings.tsx", 80], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 96] + [ + "src/views/settings/AccountSettings.tsx", + 70 + ], + [ + "src/views/settings/AccountSettings.tsx", + 80 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 96 + ] ], "translation": "Удалить аккаунт" }, @@ -2076,7 +3526,12 @@ "message": "Delete board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Удалить доску" }, "nabda1": { @@ -2084,8 +3539,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMenu.tsx", 74], - ["src/views/card/components/Dropdown.tsx", 76] + [ + "src/views/board/components/CardContextMenu.tsx", + 74 + ], + [ + "src/views/card/components/Dropdown.tsx", + 76 + ] ], "translation": "Удалить карточку" }, @@ -2093,21 +3554,36 @@ "message": "Delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 120]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 120 + ] + ], "translation": "Удалить комментарий" }, "lYT7pQ": { "message": "Delete list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/List.tsx", 147]], + "origin": [ + [ + "src/views/board/components/List.tsx", + 147 + ] + ], "translation": "Удалить список" }, "DFjdv0": { "message": "Delete template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 133]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 133 + ] + ], "translation": "Удалить шаблон" }, "snMaH4": { @@ -2115,7 +3591,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 46] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 46 + ] ], "translation": "Удалить вебхук" }, @@ -2124,9 +3603,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 106], - ["src/views/settings/WorkspaceSettings.tsx", 125], - ["src/views/settings/WorkspaceSettings.tsx", 136] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 106 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 125 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 136 + ] ], "translation": "Удалить рабочее пространство" }, @@ -2134,116 +3622,200 @@ "message": "deleted a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 134]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 134 + ] + ], "translation": "удалил(а) чек-лист" }, "W5r8Qh": { "message": "deleted a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 139]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 139 + ] + ], "translation": "удалил(а) элемент чек-листа" }, "BMkVQ3": { "message": "deleted checklist <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 224]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 224 + ] + ], "translation": "удалил(а) чек-лист <0>{0}" }, "CHZ1jC": { "message": "deleted checklist item <0>{0}", "placeholders": { - "0": ["truncate(fromTitle)"] + "0": [ + "truncate(fromTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 267]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 267 + ] + ], "translation": "удалил(а) элемент чек-листа <0>{0}" }, "f8fH8W": { "message": "Design", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 45]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 45 + ] + ], "translation": "Дизайн" }, "Odv3J6": { "message": "Disconnect GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 223]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 223 + ] + ], "translation": "Отключить GitHub" }, "YBBifR": { "message": "Disconnect Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 177]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 177 + ] + ], "translation": "Отключить Trello" }, "1sRmLC": { "message": "Discuss and collaborate on cards.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 106]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 106 + ] + ], "translation": "Обсуждайте и сотрудничайте по карточкам." }, "pfa8F0": { "message": "Display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 36]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 36 + ] + ], "translation": "Отображаемое имя" }, "MlyjJu": { "message": "Display name cannot exceed 280 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 22]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 22 + ] + ], "translation": "Отображаемое имя не может превышать 280 символов" }, "KFJgmZ": { "message": "Display name must be at least 3 characters long", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 19 + ] + ], "translation": "Отображаемое имя должно содержать не менее 3 символов" }, "x8GeCD": { "message": "Display name updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 41]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 41 + ] + ], "translation": "Отображаемое имя обновлено" }, "evj0lK": { "message": "Do you offer a free plan?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 83]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 83 + ] + ], "translation": "У вас есть бесплатный тариф?" }, "jDRt4n": { "message": "Do you want to unsubscribe?", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 78]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 78 + ] + ], "translation": "Вы хотите отписаться?" }, "JyXBgS": { "message": "docs", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 109]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 109 + ] + ], "translation": "документация" }, "TbjyhA": { "message": "Docs", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 20]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 20 + ] + ], "translation": "Документация" }, "TvY/XA": { @@ -2251,12 +3823,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 209], - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36], - ["src/views/home/components/Footer.tsx", 78], - ["src/views/home/components/Header.tsx", 36] + [ + "src/components/UserMenu.tsx", + 209 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ], + [ + "src/views/home/components/Footer.tsx", + 78 + ], + [ + "src/views/home/components/Header.tsx", + 36 + ] ], "translation": "Документация" }, @@ -2264,7 +3854,12 @@ "message": "Don't have an account? <0><1>Sign up", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 63]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 63 + ] + ], "translation": "Нет аккаунта? <0><1>Зарегистрируйтесь" }, "DPfwMq": { @@ -2272,15 +3867,42 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 36], - ["src/views/board/components/CardContextLabelsModal.tsx", 48], - ["src/views/board/components/CardContextMembersModal.tsx", 68], - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 48], - ["src/views/boards/components/TemplateBoards.tsx", 61] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 36 + ], + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 48 + ], + [ + "src/views/board/components/CardContextMembersModal.tsx", + 68 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 48 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 61 + ] ], "translation": "Готово" }, @@ -2288,7 +3910,12 @@ "message": "Download failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 142]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 142 + ] + ], "translation": "Не удалось загрузить" }, "XicmhT": { @@ -2296,9 +3923,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/Filters.tsx", 171], - ["src/views/board/components/NewCardForm.tsx", 472], - ["src/views/card/index.tsx", 153] + [ + "src/views/board/components/Filters.tsx", + 171 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 472 + ], + [ + "src/views/card/index.tsx", + 155 + ] ], "translation": "Срок выполнения" }, @@ -2306,28 +3942,48 @@ "message": "Due next month", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 132]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 132 + ] + ], "translation": "Срок — в следующем месяце" }, "iHcdea": { "message": "Due next week", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 127]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 127 + ] + ], "translation": "Срок — на следующей неделе" }, "1iShX0": { "message": "Due today", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 117]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 117 + ] + ], "translation": "Срок — сегодня" }, "zxKs+y": { "message": "Due tomorrow", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 122]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 122 + ] + ], "translation": "Срок — завтра" }, "euc6Ns": { @@ -2335,7 +3991,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Дублировать" }, @@ -2344,8 +4003,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 111], - ["src/views/board/components/CardContextMenu.tsx", 68] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 111 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 68 + ] ], "translation": "Дублировать карточку" }, @@ -2354,7 +4019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 279] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 279 + ] ], "translation": "Дублирование…" }, @@ -2363,8 +4031,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/YouTubeDropdown.tsx", 42], - ["src/views/settings/components/WebhookList.tsx", 132] + [ + "src/components/YouTubeEmbed/YouTubeDropdown.tsx", + 42 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 132 + ] ], "translation": "Редактировать" }, @@ -2373,8 +4047,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/BoardDropdown.tsx", 102], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 116] + [ + "src/views/board/components/BoardDropdown.tsx", + 102 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 116 + ] ], "translation": "Изменить URL доски" }, @@ -2382,14 +4062,24 @@ "message": "Edit comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 111]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 111 + ] + ], "translation": "Редактировать комментарий" }, "dgr4Kq": { "message": "Edit label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Редактировать метку" }, "TCOMOO": { @@ -2397,8 +4087,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 162], - ["src/views/members/index.tsx", 224] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 162 + ], + [ + "src/views/members/index.tsx", + 224 + ] ], "translation": "Изменить права доступа" }, @@ -2406,35 +4102,60 @@ "message": "Edit webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Редактировать вебхук" }, "klpSmb": { "message": "Edit workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 162]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 162 + ] + ], "translation": "Изменить URL рабочего пространства" }, "PRofO0": { "message": "Edit YouTube Video", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 108]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 108 + ] + ], "translation": "Редактировать видео на YouTube" }, "gGx5tM": { "message": "Editing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 44]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 44 + ] + ], "translation": "Редактирование" }, "b/LfJo": { "message": "email", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "email" }, "O3oNi5": { @@ -2442,8 +4163,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 272], - ["src/views/settings/AccountSettings.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 272 + ], + [ + "src/views/settings/AccountSettings.tsx", + 43 + ] ], "translation": "Email" }, @@ -2452,7 +4179,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 191] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 191 + ] ], "translation": "Уведомления по email" }, @@ -2460,14 +4190,24 @@ "message": "Email notifications for mentions", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 60]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 60 + ] + ], "translation": "Уведомления по email о упоминаниях" }, "IqjpYe": { "message": "Email visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 100 + ] + ], "translation": "Видимость email" }, "bFREhu": { @@ -2475,7 +4215,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 200] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 200 + ] ], "translation": "Конец списка" }, @@ -2483,7 +4226,12 @@ "message": "Engineering", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Разработка" }, "0+ewPp": { @@ -2491,9 +4239,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Улучшение" }, @@ -2501,14 +4258,24 @@ "message": "Enter a custom title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 131]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 131 + ] + ], "translation": "Введите собственный заголовок" }, "rQRXo8": { "message": "Enter new secret to update", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "Введите новый секретный ключ для обновления" }, "fR9laE": { @@ -2516,7 +4283,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 122] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 122 + ] ], "translation": "Введите текущий пароль" }, @@ -2525,7 +4295,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 111] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 111 + ] ], "translation": "Введите текущий пароль и выберите новый надёжный пароль." }, @@ -2533,14 +4306,24 @@ "message": "Enter your email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 402]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 402 + ] + ], "translation": "Введите адрес электронной почты" }, "n9V+ps": { "message": "Enter your name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 390]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 390 + ] + ], "translation": "Введите имя" }, "0StR7t": { @@ -2548,7 +4331,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 136] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 136 + ] ], "translation": "Введите новый пароль" }, @@ -2556,7 +4342,12 @@ "message": "Enter your password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 416]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 416 + ] + ], "translation": "Введите пароль" }, "GpB8YV": { @@ -2564,8 +4355,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 334], - ["src/views/pricing/components/PricingTiers.tsx", 92] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 334 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 92 + ] ], "translation": "Enterprise" }, @@ -2574,9 +4371,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 77], - ["src/views/boards/components/NewBoardForm.tsx", 92], - ["src/views/members/components/InviteMemberForm.tsx", 215] + [ + "src/views/boards/components/NewBoardForm.tsx", + 77 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 92 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 215 + ] ], "translation": "Ошибка" }, @@ -2585,7 +4391,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 89] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 89 + ] ], "translation": "Ошибка при смене пароля" }, @@ -2593,21 +4402,36 @@ "message": "Error connecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 106]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 106 + ] + ], "translation": "Ошибка подключения GitHub" }, "cji2nM": { "message": "Error creating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 128]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 128 + ] + ], "translation": "Ошибка при создании ссылки-приглашения" }, "USVCGU": { "message": "Error deactivating invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 144]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 144 + ] + ], "translation": "Ошибка при деактивации ссылки-приглашения" }, "bqAQaT": { @@ -2615,7 +4439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 39] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 39 + ] ], "translation": "Ошибка при удалении аккаунта" }, @@ -2623,7 +4450,12 @@ "message": "Error deleting label", "placeholders": {}, "comments": [], - "origin": [["src/components/DeleteLabelConfirmation.tsx", 25]], + "origin": [ + [ + "src/components/DeleteLabelConfirmation.tsx", + 25 + ] + ], "translation": "Ошибка при удалении метки" }, "9s9O5h": { @@ -2631,7 +4463,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 45] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 45 + ] ], "translation": "Ошибка при удалении рабочего пространства" }, @@ -2639,14 +4474,24 @@ "message": "Error disconnecting GitHub", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 129]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 129 + ] + ], "translation": "Ошибка при отключении GitHub" }, "lKAvEd": { "message": "Error disconnecting Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 86 + ] + ], "translation": "Ошибка при отключении Trello" }, "rarRW/": { @@ -2654,8 +4499,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 97], - ["src/views/members/components/InviteMemberForm.tsx", 103] + [ + "src/views/members/components/InviteMemberForm.tsx", + 97 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 103 + ] ], "translation": "Ошибка при приглашении участника" }, @@ -2663,7 +4514,12 @@ "message": "Error updating display name", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 54]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 54 + ] + ], "translation": "Ошибка при обновлении отображаемого имени" }, "CkVV1t": { @@ -2671,7 +4527,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 63 + ] ], "translation": "Ошибка при обновлении описания рабочего пространства" }, @@ -2680,7 +4539,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 58] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 58 + ] ], "translation": "Ошибка при обновлении названия рабочего пространства" }, @@ -2689,7 +4551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 75] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 75 + ] ], "translation": "Ошибка при обновлении URL рабочего пространства" }, @@ -2698,8 +4563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 43] + [ + "src/views/members/components/InviteMemberForm.tsx", + 240 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 43 + ] ], "translation": "Ошибка при обновлении подписки" }, @@ -2707,7 +4578,12 @@ "message": "Error upgrading to Pro", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 146]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 146 + ] + ], "translation": "Ошибка при переходе на Pro", "obsolete": true }, @@ -2716,8 +4592,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/Avatar.tsx", 69], - ["src/views/settings/components/Avatar.tsx", 199] + [ + "src/views/settings/components/Avatar.tsx", + 69 + ], + [ + "src/views/settings/components/Avatar.tsx", + 199 + ] ], "translation": "Ошибка при загрузке изображения профиля" }, @@ -2726,8 +4608,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 245], - ["src/views/settings/components/WebhookList.tsx", 224] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 245 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 224 + ] ], "translation": "События" }, @@ -2735,42 +4623,72 @@ "message": "Everything in the free plan, plus:", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 52 + ] + ], "translation": "Всё из бесплатного тарифа, а также:" }, "ANyn0x": { "message": "Everything you need, free forever. Unlimited boards, unlimited lists, unlimited cards. Upgrade any time.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 33]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 33 + ] + ], "translation": "Всё, что вам нужно, бесплатно навсегда. Неограниченные доски, списки и карточки. Можно перейти на другой тариф в любой момент." }, "t+R8+P": { "message": "Execution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 91]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 91 + ] + ], "translation": "Выполнение" }, "GwNIE2": { "message": "Extended Roadmap", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 34]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 34 + ] + ], "translation": "Расширённая дорожная карта" }, "HYV6Lq": { "message": "Failed to accept invitation. Please try again later, or contact customer support.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 41]], + "origin": [ + [ + "src/views/invite/index.tsx", + 41 + ] + ], "translation": "Не удалось принять приглашение. Пожалуйста, попробуйте позже или обратитесь в службу поддержки." }, "lXvXNI": { "message": "Failed to copy invite link", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 216]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 216 + ] + ], "translation": "Не удалось скопировать ссылку-приглашение" }, "53QYh8": { @@ -2778,8 +4696,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/NewBoardForm.tsx", 78], - ["src/views/boards/components/NewBoardForm.tsx", 93] + [ + "src/views/boards/components/NewBoardForm.tsx", + 78 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 93 + ] ], "translation": "Не удалось создать доску" }, @@ -2787,7 +4711,12 @@ "message": "Failed to create webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 109]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 109 + ] + ], "translation": "Не удалось создать вебхук" }, "9YPBHv": { @@ -2795,7 +4724,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 28 + ] ], "translation": "Не удалось удалить вебхук" }, @@ -2803,16 +4735,28 @@ "message": "Failed to fetch video information", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 82]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 82 + ] + ], "translation": "Не удалось получить информацию о видео" }, "YtUfwW": { "message": "Failed to login with {0}. Please try again.", "placeholders": { - "0": ["provider.at(0)?.toUpperCase() + provider.slice(1)"] + "0": [ + "provider.at(0)?.toUpperCase() + provider.slice(1)" + ] }, "comments": [], - "origin": [["src/components/AuthForm.tsx", 291]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 291 + ] + ], "translation": "Не удалось войти через {0}. Пожалуйста, попробуйте ещё раз." }, "5ntVtp": { @@ -2820,8 +4764,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 143], - ["src/views/settings/components/WebhookList.tsx", 184] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 143 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 184 + ] ], "translation": "Не удалось протестировать вебхук" }, @@ -2829,21 +4779,36 @@ "message": "Failed to update webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 123]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 123 + ] + ], "translation": "Не удалось обновить вебхук" }, "ZL1A+p": { "message": "Failed to upload attachment. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 52]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 52 + ] + ], "translation": "Не удалось загрузить вложение. Пожалуйста, попробуйте ещё раз." }, "/lDBHm": { "message": "FAQ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 41 + ] + ], "translation": "FAQ" }, "aJ4pMe": { @@ -2851,8 +4816,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Faqs.tsx", 143], - ["src/views/home/components/Footer.tsx", 52] + [ + "src/views/home/components/Faqs.tsx", + 143 + ], + [ + "src/views/home/components/Footer.tsx", + 52 + ] ], "translation": "Часто задаваемые вопросы" }, @@ -2861,9 +4832,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 24], - ["src/views/boards/components/TemplateBoards.tsx", 30], - ["src/views/boards/components/TemplateBoards.tsx", 36] + [ + "src/views/boards/components/TemplateBoards.tsx", + 24 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 30 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 36 + ] ], "translation": "Функция" }, @@ -2871,7 +4851,12 @@ "message": "Feature Request", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 65]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 65 + ] + ], "translation": "Запрос функции" }, "PpZkda": { @@ -2879,10 +4864,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 132], - ["src/views/home/components/Footer.tsx", 50], - ["src/views/home/components/Header.tsx", 17], - ["src/views/home/components/Header.tsx", 33] + [ + "src/views/home/components/Features.tsx", + 132 + ], + [ + "src/views/home/components/Footer.tsx", + 50 + ], + [ + "src/views/home/components/Header.tsx", + 17 + ], + [ + "src/views/home/components/Header.tsx", + 33 + ] ], "translation": "Функции" }, @@ -2891,8 +4888,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/FeedbackModal.tsx", 59], - ["src/components/UserMenu.tsx", 217] + [ + "src/components/FeedbackModal.tsx", + 59 + ], + [ + "src/components/UserMenu.tsx", + 217 + ] ], "translation": "Обратная связь" }, @@ -2900,42 +4903,72 @@ "message": "Feedback sent", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 33]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 33 + ] + ], "translation": "Отзыв отправлен" }, "F6m23G": { "message": "File uploads", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 89]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 89 + ] + ], "translation": "Загрузка файлов" }, "o7J4JM": { "message": "Filter", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 221]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 221 + ] + ], "translation": "Фильтр" }, "l31EoQ": { "message": "Find answers to common questions about Kan. Can't find what you're looking for? Feel free to <0>contact us.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 150]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 150 + ] + ], "translation": "Найдите ответы на часто задаваемые вопросы о Kan. Не нашли то, что искали? Не стесняйтесь <0>связаться с нами." }, "q3il6U": { "message": "Font size", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 60]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 60 + ] + ], "translation": "Размер шрифта" }, "+3TYXa": { "message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 41]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 41 + ] + ], "translation": "Для долгосрочной устойчивости мы понимаем, что всем хорошим open source-проектам необходим источник дохода. Наш — это платное облачное решение для рабочих пространств с несколькими пользователями и для индивидуальных адресов рабочих пространств. Нет обязательства использовать его — вы можете развернуть ПО на своей инфраструктуре бесплатно." }, "2POOFK": { @@ -2943,12 +4976,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 77], - ["src/views/onboarding/select-plan/index.tsx", 78], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 331], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/Pricing.tsx", 32], - ["src/views/pricing/components/PricingTiers.tsx", 26] + [ + "src/views/onboarding/select-plan/index.tsx", + 77 + ], + [ + "src/views/onboarding/select-plan/index.tsx", + 78 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 331 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 32 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 26 + ] ], "translation": "Бесплатно" }, @@ -2956,7 +5007,12 @@ "message": "Free for everyone", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 31]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 31 + ] + ], "translation": "Бесплатно для всех" }, "W/nQk1": { @@ -2964,8 +5020,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 333], - ["src/views/members/index.tsx", 293] + [ + "src/views/members/components/InviteMemberForm.tsx", + 333 + ], + [ + "src/views/members/index.tsx", + 293 + ] ], "translation": "Бесплатный тариф" }, @@ -2973,7 +5035,12 @@ "message": "Free, forever", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 34]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 34 + ] + ], "translation": "Бесплатно, навсегда" }, "6uBU1F": { @@ -2981,9 +5048,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 239], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 240], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 241] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 239 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 240 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 241 + ] ], "translation": "Полный доступ к API" }, @@ -2991,21 +5067,36 @@ "message": "Full-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Полная занятость" }, "rmN315": { "message": "Fun", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Весело" }, "Weq9zb": { "message": "General", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 54]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 54 + ] + ], "translation": "Общее" }, "ZDIydz": { @@ -3013,12 +5104,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 71], - ["src/views/home/components/Cta.tsx", 61], - ["src/views/home/components/Header.tsx", 106], - ["src/views/pricing/components/PricingTiers.tsx", 29], - ["src/views/pricing/components/PricingTiers.tsx", 50], - ["src/views/pricing/components/PricingTiers.tsx", 73] + [ + "src/views/auth/signup/index.tsx", + 71 + ], + [ + "src/views/home/components/Cta.tsx", + 61 + ], + [ + "src/views/home/components/Header.tsx", + 106 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 29 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 50 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 73 + ] ], "translation": "Начать" }, @@ -3027,53 +5136,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 31], - ["src/views/pricing/components/Pricing.tsx", 49] + [ + "src/views/pricing/components/Pricing.tsx", + 31 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 49 + ] ], "translation": "Начать" }, "6FsGbN": { "message": "Get started by creating a new {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 66 + ] + ], "translation": "Начните с создания нового {0}" }, "zC8Whw": { "message": "Get started by creating a new list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 656]], + "origin": [ + [ + "src/views/board/index.tsx", + 661 + ] + ], "translation": "Начните с создания нового списка" }, "oW13KZ": { "message": "Get started for free today", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 54]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 54 + ] + ], "translation": "Начните бесплатно уже сегодня" }, "+OhFss": { "message": "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 92]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 92 + ] + ], "translation": "Начните бесплатно, без ограничений по использованию. Для совместной работы выберите тариф, подходящий по размеру вашей команды." }, "rD6UIt": { "message": "Get started on Cloud", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 75]], + "origin": [ + [ + "src/views/home/index.tsx", + 75 + ] + ], "translation": "Начать в облаке" }, "7hktsm": { "message": "Getting started", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 25 + ] + ], "translation": "Начало работы" }, "RkXlPZ": { @@ -3081,8 +5228,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 37], - ["src/views/settings/IntegrationsSettings.tsx", 186] + [ + "src/views/home/components/Footer.tsx", + 37 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 186 + ] ], "translation": "GitHub" }, @@ -3090,21 +5243,36 @@ "message": "GitHub connected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 99]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 99 + ] + ], "translation": "GitHub подключён" }, "/bBVaD": { "message": "GitHub disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 122]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 122 + ] + ], "translation": "GitHub отключён" }, "7eMo+U": { "message": "Go Home", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 113]], + "origin": [ + [ + "src/views/invite/index.tsx", + 113 + ] + ], "translation": "На главную" }, "UveK6V": { @@ -3112,8 +5280,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Header.tsx", 100], - ["src/views/invite/index.tsx", 144] + [ + "src/views/home/components/Header.tsx", + 100 + ], + [ + "src/views/invite/index.tsx", + 144 + ] ], "translation": "Перейти в приложение" }, @@ -3122,8 +5296,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 107], - ["src/pages/404.tsx", 44] + [ + "src/components/SideNavigation.tsx", + 108 + ], + [ + "src/pages/404.tsx", + 44 + ] ], "translation": "Перейти к доскам" }, @@ -3131,35 +5311,60 @@ "message": "Go to homepage", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 38]], + "origin": [ + [ + "src/pages/404.tsx", + 38 + ] + ], "translation": "Перейти на главную" }, "KAsRdK": { "message": "Go to members", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 131]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 132 + ] + ], "translation": "Перейти к участникам" }, "1WuwiM": { "message": "Go to settings", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 143]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 144 + ] + ], "translation": "Перейти к настройкам" }, "csFbe+": { "message": "Go to templates", "placeholders": {}, "comments": [], - "origin": [["src/components/SideNavigation.tsx", 119]], + "origin": [ + [ + "src/components/SideNavigation.tsx", + 120 + ] + ], "translation": "Перейти к шаблонам" }, "SUvm1Y": { "message": "Good for individuals starting out who just need the essentials.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 79]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 79 + ] + ], "translation": "Подходит для начинающих пользователей, которым нужны только базовые функции." }, "cdyS7J": { @@ -3167,9 +5372,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 257], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 258], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 259] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 257 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 258 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 259 + ] ], "translation": "Google SSO" }, @@ -3178,7 +5392,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 260] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 260 + ] ], "translation": "Google SSO + SAML" }, @@ -3186,77 +5403,132 @@ "message": "Guest", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 203]], + "origin": [ + [ + "src/views/members/index.tsx", + 203 + ] + ], "translation": "Гость" }, "CB/NpV": { "message": "High Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Высокий приоритет" }, "XXbgHS": { "message": "Hired", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 80]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 80 + ] + ], "translation": "Принят на работу" }, "SRvxId": { "message": "HMAC secret for signature verification", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 234]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 234 + ] + ], "translation": "Секретный ключ HMAC для проверки подписи" }, "LrcnbT": { "message": "Host Kan on your own infrastructure. Ideal for organisations that need complete control over their data.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 69]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 69 + ] + ], "translation": "Разместите Kan на собственной инфраструктуре. Идеально для организаций, которым нужен полный контроль над своими данными." }, "WI4eGo": { "message": "How do I get a custom URL?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 64]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 64 + ] + ], "translation": "Как получить собственный URL?" }, "yV7o5I": { "message": "How do I import my Trello boards?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 46]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 46 + ] + ], "translation": "Как импортировать мои доски Trello?" }, "nol/Fb": { "message": "How do I invite team members?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 108]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 108 + ] + ], "translation": "Как пригласить участников команды?" }, "KuSt9W": { "message": "How do I self-host?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 124]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 124 + ] + ], "translation": "Как развернуть самостоятельно?" }, "UeDFpo": { "message": "How is the project funded?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 38]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 38 + ] + ], "translation": "Как финансируется проект?" }, "6S8zjx": { "message": "https://www.youtube.com/watch?v=...", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 151]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 151 + ] + ], "translation": "https://www.youtube.com/watch?v=..." }, "2liqDZ": { @@ -3264,7 +5536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 82] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 82 + ] ], "translation": "Я подтверждаю, что все данные моего аккаунта будут безвозвратно удалены, и хочу продолжить." }, @@ -3273,7 +5548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 92] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 92 + ] ], "translation": "Я подтверждаю, что все данные рабочего пространства будут безвозвратно удалены, и хочу продолжить." }, @@ -3281,21 +5559,36 @@ "message": "Ideas", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 88]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 88 + ] + ], "translation": "Идеи" }, "F/vB2g": { "message": "Ideas to improve this page...", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 75]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 75 + ] + ], "translation": "Идеи по улучшению этой страницы..." }, "l3s5ri": { "message": "Import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/index.tsx", 73]], + "origin": [ + [ + "src/views/boards/index.tsx", + 73 + ] + ], "translation": "Импорт" }, "2MPcep": { @@ -3303,8 +5596,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 229], - ["src/views/boards/components/ImportBoardsForm.tsx", 381] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 229 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 381 + ] ], "translation": "Импорт завершён" }, @@ -3313,8 +5612,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 242], - ["src/views/boards/components/ImportBoardsForm.tsx", 394] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 242 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 394 + ] ], "translation": "Ошибка импорта" }, @@ -3322,28 +5627,48 @@ "message": "Import your Trello boards and hit the ground running.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 96]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 96 + ] + ], "translation": "Импортируйте свои доски Trello и сразу приступайте к работе." }, "c/IAuR": { "message": "Important", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Важно" }, "xMn+V9": { "message": "Importing from Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 27]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 27 + ] + ], "translation": "Импорт из Trello" }, "g2xBxu": { "message": "Importing your Trello boards into Kan is easy. You can follow our step-by-step guide <0>here.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 49]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 49 + ] + ], "translation": "Импортировать ваши доски Trello в Kan очень просто. Следуйте нашему пошаговому руководству <0>здесь." }, "02i3WU": { @@ -3351,7 +5676,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 313] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 313 + ] ], "translation": "Импорт" }, @@ -3359,7 +5687,12 @@ "message": "in", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 167]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 167 + ] + ], "translation": "в" }, "WbTDwg": { @@ -3367,11 +5700,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23], - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35], - ["src/views/boards/components/TemplateBoards.tsx", 58] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 58 + ] ], "translation": "В процессе" }, @@ -3379,14 +5727,24 @@ "message": "Inactive", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 106]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 106 + ] + ], "translation": "Неактивен" }, "6mbe4b": { "message": "Individuals", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 28]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 28 + ] + ], "translation": "Индивидуальные участники" }, "nbfdhU": { @@ -3394,8 +5752,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 77], - ["src/views/home/components/Features.tsx", 121] + [ + "src/components/SettingsLayout.tsx", + 77 + ], + [ + "src/views/home/components/Features.tsx", + 121 + ] ], "translation": "Интеграции" }, @@ -3404,7 +5768,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 140] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 140 + ] ], "translation": "Интеллектуальный поиск" }, @@ -3412,42 +5779,72 @@ "message": "Interviewing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 77]], - "translation": "Собеседование" - }, - "XILg0L": { + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 77 + ] + ], + "translation": "Собеседование" + }, + "XILg0L": { "message": "Invalid email address", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 51]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 51 + ] + ], "translation": "Недействительный адрес электронной почты" }, "odFCYX": { "message": "Invalid invitation", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 105]], + "origin": [ + [ + "src/views/invite/index.tsx", + 105 + ] + ], "translation": "Недействительное приглашение" }, "MFKlMB": { "message": "Invite", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 306]], + "origin": [ + [ + "src/views/members/index.tsx", + 306 + ] + ], "translation": "Пригласить" }, "KLJ4eD": { "message": "Invite link copied", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 209]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 209 + ] + ], "translation": "Ссылка-приглашение скопирована" }, "mZGPxt": { "message": "Invite link copied to clipboard", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 210]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 210 + ] + ], "translation": "Ссылка-приглашение скопирована в буфер обмена" }, "D9ROdV": { @@ -3455,8 +5852,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 207], - ["src/views/pricing/components/PricingTiers.tsx", 58] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 207 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 58 + ] ], "translation": "Ссылки-приглашения" }, @@ -3464,7 +5867,12 @@ "message": "Invite links require a Team or Pro subscription. Please upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 123]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 123 + ] + ], "translation": "Ссылки-приглашения доступны только с подпиской Team или Pro. Пожалуйста, обновите тариф вашего рабочего пространства." }, "+djOzj": { @@ -3472,8 +5880,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/MemberSelector.tsx", 115], - ["src/views/members/components/InviteMemberForm.tsx", 367] + [ + "src/views/card/components/MemberSelector.tsx", + 115 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 367 + ] ], "translation": "Пригласить участника" }, @@ -3481,7 +5895,12 @@ "message": "Inviting members requires a Team Plan. You'll be redirected to upgrade your workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 336]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 336 + ] + ], "translation": "Приглашение участников доступно только на тарифе Team. Вы будете перенаправлены для обновления рабочего пространства." }, "c9AJhn": { @@ -3489,8 +5908,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/invite/index.tsx", 79], - ["src/views/invite/index.tsx", 129] + [ + "src/views/invite/index.tsx", + 79 + ], + [ + "src/views/invite/index.tsx", + 129 + ] ], "translation": "Присоединиться к рабочему пространству" }, @@ -3498,28 +5923,48 @@ "message": "Join workspace | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 91]], + "origin": [ + [ + "src/views/invite/index.tsx", + 91 + ] + ], "translation": "Присоединиться к рабочему пространству | kan.bn" }, "wM8xd8": { "message": "Junior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Джуниор" }, "aWDhU5": { "message": "Kanban is better with a team. Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 51]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 51 + ] + ], "translation": "Kanban эффективнее в команде. Идеально для небольших и растущих команд, стремящихся к совместной работе." }, "Xjj/kS": { "message": "Kanban reimagined", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 136]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 136 + ] + ], "translation": "Kanban по-новому" }, "JbXXUW": { @@ -3527,8 +5972,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 57], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 67] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 57 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 67 + ] ], "translation": "Обратите внимание: это действие необратимо." }, @@ -3536,7 +5987,12 @@ "message": "Keyboard Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 321]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 321 + ] + ], "translation": "Горячие клавиши" }, "h8DugX": { @@ -3544,10 +6000,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextLabelsModal.tsx", 31], - ["src/views/board/components/Filters.tsx", 155], - ["src/views/board/components/NewCardForm.tsx", 421], - ["src/views/card/index.tsx", 133] + [ + "src/views/board/components/CardContextLabelsModal.tsx", + 31 + ], + [ + "src/views/board/components/Filters.tsx", + 155 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 421 + ], + [ + "src/views/card/index.tsx", + 135 + ] ], "translation": "Метки" }, @@ -3556,7 +6024,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 124] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 124 + ] ], "translation": "Метки и фильтры" }, @@ -3564,21 +6035,36 @@ "message": "Labels & Filters", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 100]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 100 + ] + ], "translation": "Метки и фильтры" }, "vXIe7J": { "message": "Language", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 50]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 50 + ] + ], "translation": "Язык" }, "k7rCa/": { "message": "Large", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 9]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 9 + ] + ], "translation": "Крупный" }, "8Is1ih": { @@ -3586,9 +6072,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 300], - ["src/views/pricing/components/PricingTiers.tsx", 159], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 71] + [ + "src/components/NewWorkspaceForm.tsx", + 300 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 159 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 71 + ] ], "translation": "Стартовое предложение" }, @@ -3596,49 +6091,84 @@ "message": "Launch offer: Get unlimited members with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 276]], + "origin": [ + [ + "src/views/members/index.tsx", + 276 + ] + ], "translation": "Стартовое предложение: неограниченное количество участников с Pro" }, "sDuhfK": { "message": "Launch offer: unlimited seats for just $29/month with Pro", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 98]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 98 + ] + ], "translation": "Стартовое предложение: неограниченное количество мест всего за $29 в месяц с Pro" }, "zwWKhA": { "message": "Learn more", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 110]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 110 + ] + ], "translation": "Узнать больше" }, "wqxglO": { "message": "Learning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Обучение" }, "vifyyw": { "message": "Legal", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 131]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 131 + ] + ], "translation": "Юридическая информация" }, "iQmbPb": { "message": "License", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 45]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 45 + ] + ], "translation": "Лицензия" }, "1njn7W": { "message": "Light", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 172]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 172 + ] + ], "translation": "Светлая тема" }, "TCt/8K": { @@ -3646,7 +6176,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 238] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 238 + ] ], "translation": "Ограниченный доступ к API" }, @@ -3655,11 +6188,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugButton.tsx", 80], - ["src/views/board/index.tsx", 306], - ["src/views/card/components/Dropdown.tsx", 42], - ["src/views/public/board/CardModal.tsx", 36], - ["src/views/public/board/index.tsx", 77] + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 80 + ], + [ + "src/views/board/index.tsx", + 310 + ], + [ + "src/views/card/components/Dropdown.tsx", + 42 + ], + [ + "src/views/public/board/CardModal.tsx", + 36 + ], + [ + "src/views/public/board/index.tsx", + 77 + ] ], "translation": "Ссылка скопирована" }, @@ -3668,8 +6216,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 117], - ["src/views/card/index.tsx", 124] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 117 + ], + [ + "src/views/card/index.tsx", + 126 + ] ], "translation": "Список" }, @@ -3677,21 +6231,36 @@ "message": "List name", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 129]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 129 + ] + ], "translation": "Название списка" }, "h16FyT": { "message": "Lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 163]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 163 + ] + ], "translation": "Списки" }, "1rVAfU": { "message": "Load more activities", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Загрузить ещё действия" }, "0qyZ4b": { @@ -3699,7 +6268,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 180] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 180 + ] ], "translation": "Загрузка разрешений..." }, @@ -3707,56 +6279,96 @@ "message": "Loading...", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 580]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 580 + ] + ], "translation": "Загрузка..." }, "N/bcWA": { "message": "Login | kan.bn", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 33]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 33 + ] + ], "translation": "Вход | kan.bn" }, "nOhz3x": { "message": "Logout", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 227]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 227 + ] + ], "translation": "Выйти" }, "vuxdLS": { "message": "Long-term", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Долгосрочный" }, "RHZu7R": { "message": "Loved by teams worldwide", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 236]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 236 + ] + ], "translation": "Любим командами по всему миру" }, "O9jVbx": { "message": "Low Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Низкий приоритет" }, "JnWJXY": { "message": "magic link", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 438]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 438 + ] + ], "translation": "магическая ссылка" }, "DbZgsJ": { "message": "Make template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 91]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 91 + ] + ], "translation": "Создать шаблон" }, "hB02vO": { @@ -3764,46 +6376,91 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextMembersModal.tsx", 51], - ["src/views/board/components/CardContextMenu.tsx", 38] + [ + "src/views/board/components/CardContextMembersModal.tsx", + 51 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 38 + ] ], "translation": "Управление участниками" }, + "onllUU": { + "message": "Mark all as read", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 155 + ] + ], + "translation": "" + }, "IDvohQ": { "message": "marked a checklist item as incomplete", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 138]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 138 + ] + ], "translation": "отметил элемент контрольного списка как невыполненный" }, "jl3aEJ": { "message": "marked checklist item <0>{0} as incomplete", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 258]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 258 + ] + ], "translation": "отметил элемент контрольного списка <0>{0} как невыполненный" }, "vo2a+a": { "message": "Marketing", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 161]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] + ], "translation": "Маркетинг" }, "agPptk": { "message": "Medium", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 8]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 8 + ] + ], "translation": "Средний" }, "W/Elkg": { "message": "Medium Priority", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 18]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 18 + ] + ], "translation": "Средний приоритет" }, "OvoEq7": { @@ -3811,9 +6468,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 55], - ["src/views/card/components/ActivityList.tsx", 88], - ["src/views/members/index.tsx", 202] + [ + "src/views/card/components/ActivityList.tsx", + 55 + ], + [ + "src/views/card/components/ActivityList.tsx", + 88 + ], + [ + "src/views/members/index.tsx", + 202 + ] ], "translation": "Участник" }, @@ -3822,22 +6488,47 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 123], - ["src/views/board/components/Filters.tsx", 147], - ["src/views/board/components/NewCardForm.tsx", 379], - ["src/views/card/index.tsx", 143], - ["src/views/members/index.tsx", 263], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 81] + [ + "src/components/SideNavigation.tsx", + 124 + ], + [ + "src/views/board/components/Filters.tsx", + 147 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 379 + ], + [ + "src/views/card/index.tsx", + 145 + ], + [ + "src/views/members/index.tsx", + 263 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 81 + ] ], "translation": "Участники" }, "9u5BOr": { "message": "Members | {0}", "placeholders": { - "0": ["workspace.name ?? t`Workspace`"] + "0": [ + "workspace.name ?? t`Workspace`" + ] }, "comments": [], - "origin": [["src/views/members/index.tsx", 258]], + "origin": [ + [ + "src/views/members/index.tsx", + 258 + ] + ], "translation": "Участники | {0}" }, "/bZzdR": { @@ -3845,7 +6536,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 183] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 183 + ] ], "translation": "Упоминания" }, @@ -3854,7 +6548,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 53 + ] ], "translation": "Понедельник" }, @@ -3863,9 +6560,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 62], - ["src/views/pricing/components/Pricing.tsx", 14], - ["src/views/pricing/index.tsx", 20] + [ + "src/views/onboarding/select-plan/index.tsx", + 62 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 14 + ], + [ + "src/views/pricing/index.tsx", + 20 + ] ], "translation": "Ежемесячно" }, @@ -3873,45 +6579,79 @@ "message": "monthly billing", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 159]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 159 + ] + ], "translation": "ежемесячная оплата" }, "51UCsN": { "message": "Move to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMenu.tsx", 44]], + "origin": [ + [ + "src/views/board/components/CardContextMenu.tsx", + 44 + ] + ], "translation": "Переместить в другой список" }, "J4+OTA": { "message": "Move to list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 70]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 70 + ] + ], "translation": "Переместить в список" }, "BOqTi5": { "message": "moved the card from <0>{0} to<1>{1}", "placeholders": { - "0": ["truncate(fromList)"], - "1": ["truncate(toList)"] + "0": [ + "truncate(fromList)" + ], + "1": [ + "truncate(toList)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 160]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 160 + ] + ], "translation": "переместил(а) карточку из <0>{0} в<1>{1}" }, "T7LJic": { "message": "moved the card to another list", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 127]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 127 + ] + ], "translation": "переместил(а) карточку в другой список" }, "uEGGDs": { "message": "My webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 209]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 209 + ] + ], "translation": "Мой вебхук" }, "6YtxFj": { @@ -3919,11 +6659,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/LabelForm.tsx", 135], - ["src/views/board/components/NewTemplateForm.tsx", 118], - ["src/views/boards/components/NewBoardForm.tsx", 134], - ["src/views/settings/components/NewWebhookModal.tsx", 205], - ["src/views/settings/components/WebhookList.tsx", 212] + [ + "src/components/LabelForm.tsx", + 135 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 118 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 134 + ], + [ + "src/views/settings/components/NewWebhookModal.tsx", + 205 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 212 + ] ], "translation": "Имя" }, @@ -3931,14 +6686,24 @@ "message": "Navigation", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 55]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 55 + ] + ], "translation": "Навигация" }, "HBI6nY": { "message": "Need help?", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 95]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 95 + ] + ], "translation": "Нужна помощь?" }, "isRobC": { @@ -3946,53 +6711,115 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/index.tsx", 95], - ["src/views/home/components/Features.tsx", 73] + [ + "src/views/boards/index.tsx", + 95 + ], + [ + "src/views/home/components/Features.tsx", + 73 + ] ], "translation": "Новый" }, "6WSYbN": { "message": "New {0}", "placeholders": { - "0": ["isTemplate ? \"template\" : \"board\""] + "0": [ + "isTemplate ? \"template\" : \"board\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 120]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 120 + ] + ], "translation": "Новый {0}" }, "TjREUS": { "message": "New API key", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 147]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 147 + ] + ], "translation": "Новый API-ключ" }, "pnrmSP": { "message": "New card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 304]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 304 + ] + ], "translation": "Новая карточка" }, "cWcxrL": { "message": "New checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 103]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 103 + ] + ], "translation": "Новый чек-лист" }, + "7Qqqyu": { + "message": "New comment on", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 49 + ] + ], + "translation": "" + }, + "K4xHKu": { + "message": "New comment on a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 50 + ] + ], + "translation": "" + }, "WYwN1G": { "message": "New import", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 513]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 513 + ] + ], "translation": "Новый импорт" }, "n1GRql": { "message": "New label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 119]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 119 + ] + ], "translation": "Новая метка" }, "Sb2gYF": { @@ -4000,17 +6827,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewListForm.tsx", 113], - ["src/views/board/index.tsx", 620] + [ + "src/views/board/components/NewListForm.tsx", + 113 + ], + [ + "src/views/board/index.tsx", + 624 + ] ], "translation": "Новый список" }, + "pM1sn/": { + "message": "New notification", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 56 + ] + ], + "translation": "" + }, "+MdEsf": { "message": "New password is required", "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 23] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 23 + ] ], "translation": "Требуется новый пароль" }, @@ -4019,7 +6867,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 31] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 31 + ] ], "translation": "Новый пароль должен отличаться от текущего" }, @@ -4027,151 +6878,292 @@ "message": "New template", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 104]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 104 + ] + ], "translation": "Новый шаблон" }, "RJA+sg": { "message": "New Ticket", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 56]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 56 + ] + ], "translation": "Новый тикет" }, "sbNNyi": { "message": "New webhook", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 188]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 188 + ] + ], "translation": "Новый вебхук" }, "curoK5": { "message": "New workspace", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 208]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 208 + ] + ], "translation": "Новый рабочий пространство" }, "5ACX4z": { "message": "Newsletter", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Рассылка" }, "HeFWjW": { "message": "Next Steps", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 93]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 93 + ] + ], "translation": "Дальнейшие шаги" }, "/glL9Q": { "message": "No {0}", "placeholders": { - "0": ["isTemplate ? \"templates\" : \"boards\""] + "0": [ + "isTemplate ? \"templates\" : \"boards\"" + ] }, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "Нет {0}" }, "tlhgDC": { "message": "No archived boards", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/BoardsList.tsx", 63]], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 63 + ] + ], "translation": "Нет архивированных досок" }, "Eg99Sc": { "message": "No authentication methods are currently available", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 369]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 369 + ] + ], "translation": "В данный момент нет доступных методов аутентификации" }, "2Bu8xj": { "message": "No boards found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 432]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 432 + ] + ], "translation": "Доски не найдены" }, "OpNhRn": { "message": "No credit card required", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 85]], + "origin": [ + [ + "src/views/home/index.tsx", + 85 + ] + ], "translation": "Кредитная карта не требуется" }, "MK16u2": { "message": "No dates", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 137]], + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 137 + ] + ], "translation": "Нет дат" }, "sY2lzr": { "message": "No download URL available for this attachment.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 143]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 143 + ] + ], "translation": "Для этого вложения нет доступной ссылки для скачивания." }, "TXO5TM": { "message": "No keyboard shortcuts registered.", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 334]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 334 + ] + ], "translation": "Горячие клавиши не зарегистрированы." }, "hXMFoN": { "message": "No lists", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 652]], + "origin": [ + [ + "src/views/board/index.tsx", + 657 + ] + ], "translation": "Нет списков" }, "fvLNDy": { "message": "No lists have been created yet", "placeholders": {}, "comments": [], - "origin": [["src/views/board/index.tsx", 657]], + "origin": [ + [ + "src/views/board/index.tsx", + 662 + ] + ], "translation": "Списки ещё не созданы" }, + "HbXReU": { + "message": "No notifications yet", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 192 + ] + ], + "translation": "" + }, "i30J2U": { "message": "No projects found", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 283]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 283 + ] + ], "translation": "Проекты не найдены" }, "ERpq2P": { "message": "No results found for \"{debouncedQuery}\".", "placeholders": { - "debouncedQuery": ["debouncedQuery"] + "debouncedQuery": [ + "debouncedQuery" + ] }, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 183]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 183 + ] + ], "translation": "По запросу «{debouncedQuery}» ничего не найдено." }, "Q9pQaX": { "message": "No roles found for this workspace yet.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 110]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 110 + ] + ], "translation": "Для этого рабочего пространства пока не найдено ролей." }, "TX0bT7": { "message": "No webhooks configured. Add a webhook to receive notifications.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 194]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 194 + ] + ], "translation": "Вебхуки не настроены. Добавьте вебхук для получения уведомлений." }, + "iDNBZe": { + "message": "Notifications", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 119 + ], + [ + "src/components/NotificationBell.tsx", + 131 + ], + [ + "src/components/NotificationBell.tsx", + 147 + ] + ], + "translation": "" + }, "9h7RDh": { "message": "Offer", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 78]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 78 + ] + ], "translation": "Предложение" }, "QnzD50": { @@ -4179,7 +7171,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 245] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 245 + ] ], "translation": "Локально" }, @@ -4187,42 +7182,72 @@ "message": "On-premise deployment option", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 106]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 106 + ] + ], "translation": "Вариант локального развертывания" }, "gukxZ5": { "message": "Onboarding", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 79]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 79 + ] + ], "translation": "Онбординг" }, "usVytm": { "message": "Once you delete your account, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 73]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 73 + ] + ], "translation": "После удаления аккаунта возврата не будет. Это действие необратимо." }, "dmKdk0": { "message": "Once you delete your workspace, there is no going back. This action cannot be undone.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 128]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 128 + ] + ], "translation": "После удаления рабочего пространства возврата не будет. Это действие необратимо." }, "69b7aE": { "message": "Open command menu", "placeholders": {}, "comments": [], - "origin": [["src/components/WorkspaceMenu.tsx", 34]], + "origin": [ + [ + "src/components/WorkspaceMenu.tsx", + 34 + ] + ], "translation": "Открыть командное меню" }, "cFQEU/": { "message": "Open keyboard shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/providers/keyboard-shortcuts.tsx", 172]], + "origin": [ + [ + "src/providers/keyboard-shortcuts.tsx", + 172 + ] + ], "translation": "Открыть горячие клавиши" }, "v+Wp++": { @@ -4230,7 +7255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 229] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 229 + ] ], "translation": "Открытый исходный код" }, @@ -4238,21 +7266,36 @@ "message": "Open Source Friends", "placeholders": {}, "comments": [], - "origin": [["src/views/oss-friends/index.tsx", 58]], + "origin": [ + [ + "src/views/oss-friends/index.tsx", + 58 + ] + ], "translation": "Друзья Open Source" }, "BzEFor": { "message": "or", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 380]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 380 + ] + ], "translation": "или" }, "ZqDqbi": { "message": "Organize and find cards quickly with powerful filtering tools.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 101]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 101 + ] + ], "translation": "Быстро организуйте и находите карточки с помощью мощных инструментов фильтрации." }, "Un80BR": { @@ -4260,8 +7303,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 39], - ["src/views/oss-friends/index.tsx", 52] + [ + "src/views/home/components/Footer.tsx", + 39 + ], + [ + "src/views/oss-friends/index.tsx", + 52 + ] ], "translation": "OSS Friends" }, @@ -4269,35 +7318,60 @@ "message": "Overdue", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/Filters.tsx", 112]], - "translation": "Просрочено" - }, - "P6dJdq": { + "origin": [ + [ + "src/views/board/components/Filters.tsx", + 112 + ] + ], + "translation": "Просрочено" + }, + "P6dJdq": { "message": "Overrides cleared", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 25 + ] + ], "translation": "Переопределения сброшены" }, "SPLN9O": { "message": "Own your data", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 73]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 73 + ] + ], "translation": "Владейте своими данными" }, "8F1i42": { "message": "Page not found", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 24]], + "origin": [ + [ + "src/pages/404.tsx", + 24 + ] + ], "translation": "Страница не найдена" }, "Uworke": { "message": "Part-time", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Частичная занятость" }, "IrZaAn": { @@ -4305,7 +7379,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 69] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 69 + ] ], "translation": "Пароль изменён" }, @@ -4313,14 +7390,24 @@ "message": "Password is required to login.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 258]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 258 + ] + ], "translation": "Для входа требуется пароль." }, "tTbref": { "message": "Password is required to sign up.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 257]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 257 + ] + ], "translation": "Для регистрации требуется пароль." }, "vwGkYB": { @@ -4328,7 +7415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 22] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 22 + ] ], "translation": "Пароль должен содержать не менее 8 символов" }, @@ -4337,7 +7427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 27] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 27 + ] ], "translation": "Пароли не совпадают" }, @@ -4345,7 +7438,12 @@ "message": "Paused", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "Приостановлено" }, "UbYdrA": { @@ -4353,8 +7451,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 100], - ["src/views/pricing/components/PricingTiers.tsx", 120] + [ + "src/views/pricing/components/Pricing.tsx", + 100 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 120 + ] ], "translation": "Частота платежей" }, @@ -4362,7 +7466,12 @@ "message": "Pending", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 210]], + "origin": [ + [ + "src/views/members/index.tsx", + 210 + ] + ], "translation": "В ожидании" }, "oVBq1w": { @@ -4370,10 +7479,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 15], - ["src/views/pricing/components/Pricing.tsx", 20], - ["src/views/pricing/index.tsx", 21], - ["src/views/pricing/index.tsx", 26] + [ + "src/views/pricing/components/Pricing.tsx", + 15 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 20 + ], + [ + "src/views/pricing/index.tsx", + 21 + ], + [ + "src/views/pricing/index.tsx", + 26 + ] ], "translation": "за пользователя/месяц" }, @@ -4381,28 +7502,48 @@ "message": "Per-seat pricing", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 83]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 83 + ] + ], "translation": "Цена за место" }, "mrhyIB": { "message": "Perfect for small and growing teams looking to collaborate.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 52]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 52 + ] + ], "translation": "Идеально для небольших и развивающихся команд, которые хотят сотрудничать." }, "TH3Irz": { "message": "Permission", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/RolePermissions.tsx", 119]], + "origin": [ + [ + "src/views/settings/components/RolePermissions.tsx", + 119 + ] + ], "translation": "Разрешение" }, "9cDpsw": { "message": "Permissions", "placeholders": {}, "comments": [], - "origin": [["src/components/SettingsLayout.tsx", 53]], + "origin": [ + [ + "src/components/SettingsLayout.tsx", + 53 + ] + ], "translation": "Разрешения" }, "Jgaz7E": { @@ -4410,7 +7551,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 80] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 80 + ] ], "translation": "Разрешения сброшены" }, @@ -4419,8 +7563,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 34], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 57] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 34 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 57 + ] ], "translation": "Разрешения обновлены" }, @@ -4428,14 +7578,24 @@ "message": "Personal Project", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 86]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 86 + ] + ], "translation": "Личный проект" }, "Oi+J+N": { "message": "Pick a plan to get started. All paid plans include a 14-day free trial.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 125]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 125 + ] + ], "translation": "Выберите тариф, чтобы начать. Все платные тарифы включают 14-дневный бесплатный пробный период." }, "Iqh0Uv": { @@ -4443,8 +7603,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Запланировано" }, @@ -4452,7 +7618,12 @@ "message": "Planning", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 90]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 90 + ] + ], "translation": "Планирование" }, "F3bW6y": { @@ -4460,7 +7631,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 317] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 317 + ] ], "translation": "Платформа" }, @@ -4469,7 +7643,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 24] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 24 + ] ], "translation": "Пожалуйста, подтвердите новый пароль" }, @@ -4477,28 +7654,48 @@ "message": "Please enter a valid email address", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 406]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 406 + ] + ], "translation": "Пожалуйста, введите корректный адрес электронной почты" }, "CJ3zUq": { "message": "Please enter a valid name", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 394]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 394 + ] + ], "translation": "Пожалуйста, введите корректное имя" }, "7b2yuC": { "message": "Please enter a valid password", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 421]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 421 + ] + ], "translation": "Пожалуйста, введите корректный пароль" }, "jEw0Mr": { "message": "Please enter a valid URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 24]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 24 + ] + ], "translation": "Пожалуйста, введите корректный URL" }, "tmlJN1": { @@ -4506,8 +7703,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 58], - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 98] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 58 + ], + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 98 + ] ], "translation": "Пожалуйста, введите корректную ссылку на YouTube" }, @@ -4515,7 +7718,12 @@ "message": "Please select a file to upload.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 70]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 70 + ] + ], "translation": "Пожалуйста, выберите файл для загрузки." }, "tyHiOa": { @@ -4523,56 +7731,206 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 26], - ["src/components/FeedbackModal.tsx", 41], - ["src/components/NewWorkspaceForm.tsx", 123], - ["src/views/board/components/BoardDropdown.tsx", 65], - ["src/views/board/components/NewCardForm.tsx", 186], - ["src/views/board/components/NewListForm.tsx", 79], - ["src/views/board/components/NewTemplateForm.tsx", 61], - ["src/views/board/components/NewTemplateForm.tsx", 77], - ["src/views/board/components/UpdateBoardSlugForm.tsx", 73], - ["src/views/board/components/VisibilityButton.tsx", 57], - ["src/views/board/index.tsx", 218], - ["src/views/board/index.tsx", 274], - ["src/views/boards/components/ImportBoardsForm.tsx", 243], - ["src/views/boards/components/ImportBoardsForm.tsx", 395], - ["src/views/card/components/AttachmentThumbnails.tsx", 74], - ["src/views/card/components/ChecklistItemRow.tsx", 67], - ["src/views/card/components/ChecklistItemRow.tsx", 95], - ["src/views/card/components/ChecklistNameInput.tsx", 47], - ["src/views/card/components/Checklists.tsx", 81], - ["src/views/card/components/Comment.tsx", 93], - ["src/views/card/components/DeleteCardConfirmation.tsx", 52], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 38], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 46], - ["src/views/card/components/DueDateSelector.tsx", 64], - ["src/views/card/components/LabelSelector.tsx", 75], - ["src/views/card/components/ListSelector.tsx", 55], - ["src/views/card/components/MemberSelector.tsx", 82], - ["src/views/card/components/NewChecklistForm.tsx", 71], - ["src/views/card/components/NewChecklistItemForm.tsx", 90], - ["src/views/card/components/NewCommentForm.tsx", 37], - ["src/views/card/index.tsx", 232], - ["src/views/card/index.tsx", 245], - ["src/views/members/components/DeleteMemberConfirmation.tsx", 28], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 42], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 65], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 93], - ["src/views/members/components/InviteMemberForm.tsx", 104], - ["src/views/members/components/InviteMemberForm.tsx", 241], - ["src/views/members/index.tsx", 66], - ["src/views/onboarding/workspace-details/index.tsx", 101], - ["src/views/onboarding/workspace-details/index.tsx", 150], - ["src/views/settings/components/Avatar.tsx", 200], - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 40], - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 46], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 55], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 44], - ["src/views/settings/PermissionsSettings.tsx", 40] + [ + "src/components/DeleteLabelConfirmation.tsx", + 26 + ], + [ + "src/components/FeedbackModal.tsx", + 41 + ], + [ + "src/components/NewWorkspaceForm.tsx", + 123 + ], + [ + "src/views/board/components/BoardDropdown.tsx", + 65 + ], + [ + "src/views/board/components/NewCardForm.tsx", + 186 + ], + [ + "src/views/board/components/NewListForm.tsx", + 79 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 61 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 77 + ], + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 73 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 57 + ], + [ + "src/views/board/index.tsx", + 222 + ], + [ + "src/views/board/index.tsx", + 278 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 243 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 395 + ], + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 74 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 68 + ], + [ + "src/views/card/components/ChecklistItemRow.tsx", + 96 + ], + [ + "src/views/card/components/ChecklistNameInput.tsx", + 47 + ], + [ + "src/views/card/components/Checklists.tsx", + 81 + ], + [ + "src/views/card/components/Comment.tsx", + 93 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 52 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 38 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 46 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 64 + ], + [ + "src/views/card/components/LabelSelector.tsx", + 75 + ], + [ + "src/views/card/components/ListSelector.tsx", + 55 + ], + [ + "src/views/card/components/MemberSelector.tsx", + 82 + ], + [ + "src/views/card/components/NewChecklistForm.tsx", + 71 + ], + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 90 + ], + [ + "src/views/card/components/NewCommentForm.tsx", + 37 + ], + [ + "src/views/card/index.tsx", + 274 + ], + [ + "src/views/card/index.tsx", + 287 + ], + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 28 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 42 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 65 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 93 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 104 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 241 + ], + [ + "src/views/members/index.tsx", + 66 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 101 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 150 + ], + [ + "src/views/settings/components/Avatar.tsx", + 200 + ], + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 40 + ], + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 46 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 55 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 64 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 59 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 76 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 44 + ], + [ + "src/views/settings/PermissionsSettings.tsx", + 40 + ] ], "translation": "Пожалуйста, попробуйте позже или обратитесь в службу поддержки." }, @@ -4581,8 +7939,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 129], - ["src/views/members/components/InviteMemberForm.tsx", 145] + [ + "src/views/members/components/InviteMemberForm.tsx", + 129 + ], + [ + "src/views/members/components/InviteMemberForm.tsx", + 145 + ] ], "translation": "Пожалуйста, попробуйте позже." }, @@ -4591,12 +7955,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 76], - ["src/views/board/components/CardContextMoveListModal.tsx", 42], - ["src/views/board/index.tsx", 315], - ["src/views/card/components/Dropdown.tsx", 51], - ["src/views/public/board/CardModal.tsx", 45], - ["src/views/public/board/index.tsx", 86] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 76 + ], + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 42 + ], + [ + "src/views/board/index.tsx", + 319 + ], + [ + "src/views/card/components/Dropdown.tsx", + 51 + ], + [ + "src/views/public/board/CardModal.tsx", + 45 + ], + [ + "src/views/public/board/index.tsx", + 86 + ] ], "translation": "Пожалуйста, попробуйте ещё раз." }, @@ -4605,7 +7987,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 193] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 193 + ] ], "translation": "Позиция в списке (0 = первая, оставьте пустым для конца)" }, @@ -4614,12 +7999,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 51], - ["src/views/home/components/Header.tsx", 18], - ["src/views/home/components/Header.tsx", 34], - ["src/views/pricing/components/Pricing.tsx", 85], - ["src/views/pricing/index.tsx", 34], - ["src/views/pricing/index.tsx", 40] + [ + "src/views/home/components/Footer.tsx", + 51 + ], + [ + "src/views/home/components/Header.tsx", + 18 + ], + [ + "src/views/home/components/Header.tsx", + 34 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 85 + ], + [ + "src/views/pricing/index.tsx", + 34 + ], + [ + "src/views/pricing/index.tsx", + 40 + ] ], "translation": "Цены" }, @@ -4628,10 +8031,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 275], - ["src/views/pricing/components/Pricing.tsx", 56], - ["src/views/pricing/components/PricingTiers.tsx", 61], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 95] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 275 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 56 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 61 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 95 + ] ], "translation": "Приоритетная поддержка по электронной почте" }, @@ -4639,14 +8054,24 @@ "message": "Privacy policy", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 43]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 43 + ] + ], "translation": "Политика конфиденциальности" }, "zwBp5t": { "message": "Private", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 84]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 84 + ] + ], "translation": "Приватно" }, "3fPjUY": { @@ -4654,9 +8079,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 333], - ["src/views/pricing/components/PricingTiers.tsx", 70] + [ + "src/views/onboarding/select-plan/index.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 333 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 70 + ] ], "translation": "Pro" }, @@ -4664,84 +8098,156 @@ "message": "Pro Plan", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 290]], + "origin": [ + [ + "src/views/members/index.tsx", + 290 + ] + ], "translation": "Тариф Pro" }, "Qtzfdk": { "message": "Pro Plan ∞", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 322]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ] + ], "translation": "Тариф Pro ∞" }, "0rPv1T": { "message": "Profile image updated", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 189]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 189 + ] + ], "translation": "Изображение профиля обновлено" }, "4XF0BB": { "message": "Profile picture", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 30]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 30 + ] + ], "translation": "Фото профиля" }, "7d1a0d": { "message": "Public", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 79]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 79 + ] + ], "translation": "Публично" }, "ABCjd9": { "message": "Publishing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 47]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 47 + ] + ], "translation": "Публикация" }, "bfgr/e": { "message": "Question", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 66]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 66 + ] + ], "translation": "Вопрос" }, "1H5u1m": { "message": "Questions?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 147]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 147 + ] + ], "translation": "Вопросы?" }, "kfOGMr": { "message": "Quick Win", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 96]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 96 + ] + ], "translation": "Быстрая победа" }, + "09Tv5j": { + "message": "Reconnecting…", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/ConnectionStatus.tsx", + 30 + ] + ], + "translation": "" + }, "6EWT6T": { "message": "Recruitment", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 73]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 73 + ] + ], "translation": "Набор персонала" }, "ekCRTP": { "message": "Rejected", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "Отклонено" }, "qlAIQ1": { "message": "Remote", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Удалённо" }, "t/YqKh": { @@ -4749,7 +8255,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 58] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 58 + ] ], "translation": "Удалить" }, @@ -4757,70 +8266,123 @@ "message": "Remove from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 121]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 121 + ] + ], "translation": "Удалить из избранного" }, "99VIgC": { "message": "Remove member", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 233]], + "origin": [ + [ + "src/views/members/index.tsx", + 233 + ] + ], "translation": "Удалить участника" }, "BZkYSt": { "message": "removed {0} labels: <0>{labelList}", "placeholders": { - "0": ["mergedLabels.length"], - "labelList": ["labelList"] + "0": [ + "mergedLabels.length" + ], + "labelList": [ + "labelList" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 116]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 116 + ] + ], "translation": "удалено {0} меток: <0>{labelList}" }, "kQwvU8": { "message": "removed a label from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 129]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 129 + ] + ], "translation": "удалена метка с карточки" }, "uck1tz": { "message": "removed a member from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 131]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 131 + ] + ], "translation": "удалён участник из карточки" }, "KEim/+": { "message": "removed an attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 141]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 141 + ] + ], "translation": "удалено вложение" }, "zwTiVn": { "message": "removed an attachment <0>{0}", "placeholders": { - "0": ["truncate(filename)"] + "0": [ + "truncate(filename)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 288]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 288 + ] + ], "translation": "удалено вложение <0>{0}" }, "Qh7QmR": { "message": "Removed from favorites", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 54]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 54 + ] + ], "translation": "Удалено из избранного" }, "YVT40D": { "message": "removed label <0>{0}", "placeholders": { - "0": ["truncate(label)"] + "0": [ + "truncate(label)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 200]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 200 + ] + ], "translation": "удалена метка <0>{0}" }, "aHRWVI": { @@ -4828,8 +8390,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/ActivityList.tsx", 144], - ["src/views/card/components/ActivityList.tsx", 324] + [ + "src/views/card/components/ActivityList.tsx", + 144 + ], + [ + "src/views/card/components/ActivityList.tsx", + 324 + ] ], "translation": "удалена дата выполнения" }, @@ -4837,25 +8405,44 @@ "message": "renamed a checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 133]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 133 + ] + ], "translation": "переименован чек-лист" }, "3ZjRJY": { "message": "renamed checklist <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 216]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 216 + ] + ], "translation": "переименован чек-лист <0>{0}" }, "NH54UR": { "message": "renamed checklist item to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 240]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 240 + ] + ], "translation": "переименован пункт чек-листа в <0>{0}" }, "Yx0Ud8": { @@ -4863,8 +8450,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 29], - ["src/views/boards/components/TemplateBoards.tsx", 35] + [ + "src/views/boards/components/TemplateBoards.tsx", + 29 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] ], "translation": "Запрошено" }, @@ -4872,7 +8465,12 @@ "message": "Research", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 89]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 89 + ] + ], "translation": "Исследование" }, "e4hPSt": { @@ -4880,7 +8478,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 245] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 245 + ] ], "translation": "Сбросить к настройкам роли по умолчанию" }, @@ -4888,21 +8489,36 @@ "message": "Resolution", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 60]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 60 + ] + ], "translation": "Решение" }, "s+MGs7": { "message": "Resources", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 114 + ] + ], "translation": "Ресурсы" }, "5k0NLb": { "message": "Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 92]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 92 + ] + ], "translation": "Рецензия" }, "/gaSVU": { @@ -4910,10 +8526,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Footer.tsx", 36], - ["src/views/home/components/Header.tsx", 13], - ["src/views/home/components/Header.tsx", 28], - ["src/views/onboarding/workspace-details/index.tsx", 161] + [ + "src/views/home/components/Footer.tsx", + 36 + ], + [ + "src/views/home/components/Header.tsx", + 13 + ], + [ + "src/views/home/components/Header.tsx", + 28 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 161 + ] ], "translation": "Дорожная карта" }, @@ -4921,14 +8549,24 @@ "message": "Role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 328]], + "origin": [ + [ + "src/views/members/index.tsx", + 328 + ] + ], "translation": "Роль" }, "jQ6I8X": { "message": "Role updated", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 58]], + "origin": [ + [ + "src/views/members/index.tsx", + 58 + ] + ], "translation": "Роль обновлена" }, "RzxgOE": { @@ -4936,7 +8574,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 164] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 164 + ] ], "translation": "Роли и разрешения" }, @@ -4944,14 +8585,24 @@ "message": "Run on your own infrastructure", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 72]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 72 + ] + ], "translation": "Запустить на собственной инфраструктуре" }, "YEOVrT": { "message": "SAML SSO", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 102]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 102 + ] + ], "translation": "SAML SSO" }, "+5kO8P": { @@ -4959,7 +8610,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 54 + ] ], "translation": "Суббота" }, @@ -4968,9 +8622,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 183], - ["src/views/card/components/Comment.tsx", 202], - ["src/views/settings/components/Avatar.tsx", 290] + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 183 + ], + [ + "src/views/card/components/Comment.tsx", + 202 + ], + [ + "src/views/settings/components/Avatar.tsx", + 290 + ] ], "translation": "Сохранить" }, @@ -4978,42 +8641,72 @@ "message": "Save changes", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 316]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 316 + ] + ], "translation": "Сохранить изменения" }, "MdwUGG": { "message": "Save time with reusable board templates.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 116]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 116 + ] + ], "translation": "Экономьте время с шаблонами досок для повторного использования." }, "cOh+MI": { "message": "Screening", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 76]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 76 + ] + ], "translation": "Скрининг" }, "SkCNhl": { "message": "Search boards and cards...", "placeholders": {}, "comments": [], - "origin": [["src/components/CommandPallette.tsx", 104]], + "origin": [ + [ + "src/components/CommandPallette.tsx", + 104 + ] + ], "translation": "Поиск досок и карточек..." }, "e1v+J3": { "message": "Secret (optional)", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 229]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 229 + ] + ], "translation": "Секретный ключ (необязательно)" }, "OkTY4+": { "message": "Secret cannot exceed 512 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 28]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 28 + ] + ], "translation": "Секретный ключ не может превышать 512 символов" }, "a3LDKx": { @@ -5021,7 +8714,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 321] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 321 + ] ], "translation": "Безопасность" }, @@ -5029,7 +8725,12 @@ "message": "See what our users are saying about Kan", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 239]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 239 + ] + ], "translation": "Посмотрите, что наши пользователи говорят о Kan" }, "zYRVNp": { @@ -5037,7 +8738,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 131] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 131 + ] ], "translation": "Выберите список" }, @@ -5046,8 +8750,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/ImportBoardsForm.tsx", 315], - ["src/views/boards/components/ImportBoardsForm.tsx", 464] + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 315 + ], + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 464 + ] ], "translation": "Выбрать всё" }, @@ -5055,56 +8765,96 @@ "message": "Select at least one event", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 32]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 32 + ] + ], "translation": "Выберите хотя бы одно событие" }, "rYUZIe": { "message": "Select source", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 195]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 195 + ] + ], "translation": "Выбрать источник" }, "ppaRWv": { "message": "Self Host", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 64]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 64 + ] + ], "translation": "Самостоятельный хостинг" }, "l2PIAy": { "message": "Self host with Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 81]], + "origin": [ + [ + "src/views/home/index.tsx", + 81 + ] + ], "translation": "Самостоятельный хостинг с Github" }, "VXk54Y": { "message": "self-assigned the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 169]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 169 + ] + ], "translation": "самостоятельно назначил(а) карточку" }, "RoafuO": { "message": "Send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 116]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 116 + ] + ], "translation": "Отправить отзыв" }, "eus61c": { "message": "Send test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 310]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 310 + ] + ], "translation": "Отправить тест" }, "v3YoMA": { "message": "Senior", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 82]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 82 + ] + ], "translation": "Старший" }, "8AbRER": { @@ -5112,9 +8862,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDueDateModal.tsx", 20], - ["src/views/board/components/CardContextMenu.tsx", 56], - ["src/views/card/components/DueDateSelector.tsx", 121] + [ + "src/views/board/components/CardContextDueDateModal.tsx", + 20 + ], + [ + "src/views/board/components/CardContextMenu.tsx", + 56 + ], + [ + "src/views/card/components/DueDateSelector.tsx", + 121 + ] ], "translation": "Установить срок" }, @@ -5122,14 +8881,24 @@ "message": "set the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 142]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 142 + ] + ], "translation": "установить срок" }, "JjEJSy": { "message": "Set up your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 179]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 179 + ] + ], "translation": "Настройте ваше рабочее пространство" }, "Tz0i8g": { @@ -5137,8 +8906,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 102], - ["src/components/SideNavigation.tsx", 135] + [ + "src/components/SettingsLayout.tsx", + 102 + ], + [ + "src/components/SideNavigation.tsx", + 136 + ] ], "translation": "Настройки" }, @@ -5146,70 +8921,120 @@ "message": "Settings | Account", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 26]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 26 + ] + ], "translation": "Настройки | Аккаунт" }, "iy1wb+": { "message": "Settings | API", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 18]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 18 + ] + ], "translation": "Настройки | API" }, "ADEin1": { "message": "Settings | Billing", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 35]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 35 + ] + ], "translation": "Настройки | Оплата" }, "hYzsXr": { "message": "Settings | Integrations", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 138]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 138 + ] + ], "translation": "Настройки | Интеграции" }, "F/FPk/": { "message": "Settings | Permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 49]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 49 + ] + ], "translation": "Настройки | Разрешения" }, "+h2faV": { "message": "Settings | Webhooks", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WebhookSettings.tsx", 24]], + "origin": [ + [ + "src/views/settings/WebhookSettings.tsx", + 24 + ] + ], "translation": "Настройки | Вебхуки" }, "Ci/KUX": { "message": "Settings | Workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 59]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 59 + ] + ], "translation": "Настройки | Рабочее пространство" }, "CTqTgr": { "message": "Shortcuts", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 187]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 187 + ] + ], "translation": "Горячие клавиши" }, "5lWFkC": { "message": "Sign in", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 104]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 104 + ] + ], "translation": "Войти" }, "n1ekoW": { "message": "Sign In", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 154]], + "origin": [ + [ + "src/views/invite/index.tsx", + 154 + ] + ], "translation": "Войти" }, "fcWrnU": { @@ -5217,8 +9042,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/select-plan/index.tsx", 284], - ["src/views/onboarding/workspace-details/index.tsx", 362] + [ + "src/views/onboarding/select-plan/index.tsx", + 284 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 362 + ] ], "translation": "Выйти" }, @@ -5226,7 +9057,12 @@ "message": "Sign Up", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 162]], + "origin": [ + [ + "src/views/invite/index.tsx", + 162 + ] + ], "translation": "Зарегистрироваться" }, "sUZo7y": { @@ -5234,8 +9070,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/auth/signup/index.tsx", 36], - ["src/views/auth/signup/index.tsx", 61] + [ + "src/views/auth/signup/index.tsx", + 36 + ], + [ + "src/views/auth/signup/index.tsx", + 61 + ] ], "translation": "Регистрация | kan.bn" }, @@ -5243,21 +9085,36 @@ "message": "Sign up disabled", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 46]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 46 + ] + ], "translation": "Регистрация отключена" }, "s6iE/c": { "message": "Sign up is currently disabled. Please try again later.", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/signup/index.tsx", 49]], + "origin": [ + [ + "src/views/auth/signup/index.tsx", + 49 + ] + ], "translation": "Регистрация сейчас недоступна. Пожалуйста, попробуйте позже." }, "6FDocz": { "message": "Sign up with ", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 437]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 437 + ] + ], "translation": "Зарегистрироваться через " }, "m2nk0i": { @@ -5265,8 +9122,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 89], - ["src/views/pricing/index.tsx", 44] + [ + "src/views/pricing/components/Pricing.tsx", + 89 + ], + [ + "src/views/pricing/index.tsx", + 44 + ] ], "translation": "Простые тарифы" }, @@ -5274,7 +9137,12 @@ "message": "Simple, visual task management that just works. Drag and drop cards, collaborate with your team, and get more done.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 139]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 139 + ] + ], "translation": "Простое и наглядное управление задачами, которое действительно работает. Перетаскивайте карточки, работайте с командой и достигайте большего." }, "zEcnBA": { @@ -5282,7 +9150,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 291] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 291 + ] ], "translation": "SLA" }, @@ -5290,28 +9161,48 @@ "message": "Small", "placeholders": {}, "comments": [], - "origin": [["src/components/FontSizeSelector.tsx", 7]], + "origin": [ + [ + "src/components/FontSizeSelector.tsx", + 7 + ] + ], "translation": "Мелкий" }, "++rVAm": { "message": "Social Media", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Социальные сети" }, "wIb7Ng": { "message": "Software Development", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 22]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 22 + ] + ], "translation": "Разработка ПО" }, "6sKjjx": { "message": "Solo", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 76]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 76 + ] + ], "translation": "Индивидуальный" }, "vnS6Rf": { @@ -5319,7 +9210,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 256] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 256 + ] ], "translation": "SSO" }, @@ -5327,7 +9221,12 @@ "message": "Star on Github", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 37]], + "origin": [ + [ + "src/views/home/index.tsx", + 37 + ] + ], "translation": "Поставьте звезду на Github" }, "veIDCY": { @@ -5335,8 +9234,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 359], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 113] + [ + "src/views/members/components/InviteMemberForm.tsx", + 359 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 113 + ] ], "translation": "Начните 14-дневный бесплатный пробный период" }, @@ -5344,21 +9249,36 @@ "message": "Start free. Upgrade as your team grows. No hidden fees, no contracts.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/index.tsx", 47]], + "origin": [ + [ + "src/views/pricing/index.tsx", + 47 + ] + ], "translation": "Начните бесплатно. Переходите на новый тариф по мере роста команды. Без скрытых платежей и контрактов." }, "uAQUqI": { "message": "Status", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 230]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 230 + ] + ], "translation": "Статус" }, "WYDptz": { "message": "Subscription Required", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 122]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 122 + ] + ], "translation": "Требуется подписка" }, "zzDlyQ": { @@ -5366,8 +9286,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/AuthForm.tsx", 215], - ["src/components/AuthForm.tsx", 232] + [ + "src/components/AuthForm.tsx", + 215 + ], + [ + "src/components/AuthForm.tsx", + 232 + ] ], "translation": "Успех" }, @@ -5376,7 +9302,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52] + [ + "src/views/settings/components/UpdateWeekStartDayForm.tsx", + 52 + ] ], "translation": "Воскресенье" }, @@ -5385,7 +9314,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 59] + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 59 + ] ], "translation": "Улучшите свой workspace всего за $29 в месяц. Вы получите:" }, @@ -5394,8 +9326,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/UserMenu.tsx", 198], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 325] + [ + "src/components/UserMenu.tsx", + 198 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 325 + ] ], "translation": "Поддержка" }, @@ -5403,21 +9341,36 @@ "message": "Support the development of the project", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 57]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 57 + ] + ], "translation": "Поддержите развитие проекта" }, "D+NlUC": { "message": "System", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 144]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 144 + ] + ], "translation": "Система" }, "KM6m8p": { "message": "Team", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 83]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 83 + ] + ], "translation": "Команда" }, "bff61F": { @@ -5425,8 +9378,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/InviteMemberForm.tsx", 322], - ["src/views/members/index.tsx", 292] + [ + "src/views/members/components/InviteMemberForm.tsx", + 322 + ], + [ + "src/views/members/index.tsx", + 292 + ] ], "translation": "Тариф для команды" }, @@ -5435,9 +9394,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 332], - ["src/views/pricing/components/Pricing.tsx", 46], - ["src/views/pricing/components/PricingTiers.tsx", 47] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 332 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 46 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 47 + ] ], "translation": "Команды" }, @@ -5446,8 +9414,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 530], - ["src/views/board/index.tsx", 566] + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/board/index.tsx", + 570 + ] ], "translation": "Шаблон" }, @@ -5455,28 +9429,48 @@ "message": "Template created", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 67]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 67 + ] + ], "translation": "Шаблон создан" }, "QHhZeE": { "message": "Template created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 68]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 68 + ] + ], "translation": "Шаблон успешно создан" }, "notwF1": { "message": "Template name cannot exceed 100 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 19]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 19 + ] + ], "translation": "Имя шаблона не может превышать 100 символов" }, "6OTo9n": { "message": "Template name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewTemplateForm.tsx", 18]], + "origin": [ + [ + "src/views/board/components/NewTemplateForm.tsx", + 18 + ] + ], "translation": "Необходимо указать имя шаблона" }, "iTylMl": { @@ -5484,8 +9478,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 111], - ["src/views/home/components/Features.tsx", 115] + [ + "src/components/SideNavigation.tsx", + 112 + ], + [ + "src/views/home/components/Features.tsx", + 115 + ] ], "translation": "Шаблоны" }, @@ -5493,14 +9493,24 @@ "message": "Terms of service", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Footer.tsx", 42]], + "origin": [ + [ + "src/views/home/components/Footer.tsx", + 42 + ] + ], "translation": "Условия использования" }, "NnH3pK": { "message": "Test", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/WebhookList.tsx", 136]], + "origin": [ + [ + "src/views/settings/components/WebhookList.tsx", + 136 + ] + ], "translation": "Тест" }, "itgYbC": { @@ -5508,8 +9518,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 132], - ["src/views/settings/components/WebhookList.tsx", 174] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 132 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 174 + ] ], "translation": "Тестовый вебхук успешно отправлен!" }, @@ -5517,28 +9533,48 @@ "message": "Testimonials", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Testimonials.tsx", 232]], + "origin": [ + [ + "src/views/home/components/Testimonials.tsx", + 232 + ] + ], "translation": "Отзывы" }, "nhMhRr": { "message": "Thank you for your feedback!", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 34]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 34 + ] + ], "translation": "Спасибо за ваш отзыв!" }, "NcFrgC": { "message": "The board has been archived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 46]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 46 + ] + ], "translation": "Доска была архивирована." }, "C6gv54": { "message": "The board has been unarchived.", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 47]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 47 + ] + ], "translation": "Доска была восстановлена из архива." }, "nKBUeF": { @@ -5546,7 +9582,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 69] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 69 + ] ], "translation": "Карточка была продублирована." }, @@ -5555,7 +9594,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 84] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 84 + ] ], "translation": "Введённый вами текущий пароль неверен." }, @@ -5563,7 +9605,12 @@ "message": "The main difference between Kan and Trello is that Kan is open source, allowing anyone to view, modify, and contribute to our code. Our cloud offering also offers no restrictions on features for individual use, whereas Trello locks basic features such as the number of boards you can create behind a paywall.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 33]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 33 + ] + ], "translation": "Главное отличие Kan от Trello в том, что Kan — это open source, и любой может просматривать, изменять и вносить вклад в наш код. В нашем облачном сервисе также нет ограничений по функциям для индивидуального использования, в то время как Trello блокирует базовые возможности, такие как количество досок, за платным доступом." }, "6tDFBe": { @@ -5571,8 +9618,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 35], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 58] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 35 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 58 + ] ], "translation": "Права участника были обновлены." }, @@ -5580,37 +9633,64 @@ "message": "The member's role has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 59]], + "origin": [ + [ + "src/views/members/index.tsx", + 59 + ] + ], "translation": "Роль участника была обновлена." }, "gUX7b+": { "message": "The open source <0/> alternative to Trello", "placeholders": {}, "comments": [], - "origin": [["src/views/home/index.tsx", 65]], + "origin": [ + [ + "src/views/home/index.tsx", + 65 + ] + ], "translation": "Open source <0/> альтернатива Trello" }, "0xD8Of": { "message": "The page you're looking for doesn't exist or has been moved.", "placeholders": {}, "comments": [], - "origin": [["src/pages/404.tsx", 29]], + "origin": [ + [ + "src/pages/404.tsx", + 29 + ] + ], "translation": "Страница, которую вы ищете, не существует или была перемещена." }, "fQCrjt": { "message": "The visibility of your board has been set to {0}.", "placeholders": { - "0": ["isPublic ? \"public\" : \"private\""] + "0": [ + "isPublic ? \"public\" : \"private\"" + ] }, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 50]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 50 + ] + ], "translation": "Видимость вашей доски установлена на {0}." }, "FEr96N": { "message": "Theme", "placeholders": {}, "comments": [], - "origin": [["src/components/UserMenu.tsx", 131]], + "origin": [ + [ + "src/components/UserMenu.tsx", + 131 + ] + ], "translation": "Тема" }, "Yf9FAx": { @@ -5618,7 +9698,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 50] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 50 + ] ], "translation": "Они не смогут получить доступ к этому рабочему пространству." }, @@ -5627,11 +9710,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/DeleteLabelConfirmation.tsx", 44], - ["src/views/board/components/DeleteBoardConfirmation.tsx", 39], - ["src/views/card/components/DeleteCardConfirmation.tsx", 78], - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 59], - ["src/views/card/components/DeleteCommentConfirmation.tsx", 69] + [ + "src/components/DeleteLabelConfirmation.tsx", + 44 + ], + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 39 + ], + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 78 + ], + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 59 + ], + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 69 + ] ], "translation": "Это действие нельзя отменить." }, @@ -5639,28 +9737,48 @@ "message": "This API key will only be shown once. Please save it in a secure location.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewApiKeyModal.tsx", 129]], + "origin": [ + [ + "src/views/settings/components/NewApiKeyModal.tsx", + 129 + ] + ], "translation": "Этот API-ключ будет показан только один раз. Пожалуйста, сохраните его в надёжном месте." }, "l4asa1": { "message": "This board is private or does not exist", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 184]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 184 + ] + ], "translation": "Эта доска приватная или не существует" }, "wY+6Ye": { "message": "This board URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 136]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 136 + ] + ], "translation": "Этот URL доски уже занят" }, "mTwGOf": { "message": "This invitation link is invalid or has expired.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 108]], + "origin": [ + [ + "src/views/invite/index.tsx", + 108 + ] + ], "translation": "Эта ссылка-приглашение недействительна или истекла." }, "vlxQFL": { @@ -5668,7 +9786,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 81] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 81 + ] ], "translation": "Права этого участника были сброшены до значений по умолчанию для его роли." }, @@ -5676,14 +9797,24 @@ "message": "This URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 73]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 73 + ] + ], "translation": "Этот URL уже занят" }, "gKmoow": { "message": "This URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 75]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 75 + ] + ], "translation": "Этот URL зарезервирован" }, "OAYToL": { @@ -5703,7 +9834,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 70] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 70 + ] ], "translation": "Это приведёт к безвозвратному удалению всех данных, связанных с этим рабочим пространством." }, @@ -5712,7 +9846,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 60] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 60 + ] ], "translation": "Это приведёт к безвозвратному удалению всех данных, связанных с вашим аккаунтом." }, @@ -5720,14 +9857,24 @@ "message": "This workspace URL has already been taken", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 252]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 252 + ] + ], "translation": "Этот URL рабочего пространства уже занят" }, "bJtM0P": { "message": "This workspace URL is reserved", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 254]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 254 + ] + ], "translation": "Этот URL рабочей области зарезервирован" }, "kp6L3T": { @@ -5735,7 +9882,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 125] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 125 + ] ], "translation": "Это имя пользователя рабочей области уже занято" }, @@ -5743,7 +9893,12 @@ "message": "Title", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 127]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 127 + ] + ], "translation": "Заголовок" }, "wK4OTM": { @@ -5751,7 +9906,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 180] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 180 + ] ], "translation": "Название (необязательно)" }, @@ -5760,8 +9918,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 17], - ["src/views/boards/components/TemplateBoards.tsx", 23] + [ + "src/views/boards/components/TemplateBoards.tsx", + 17 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 23 + ] ], "translation": "К выполнению" }, @@ -5769,21 +9933,36 @@ "message": "Toggle menu", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Header.tsx", 114]], + "origin": [ + [ + "src/views/home/components/Header.tsx", + 114 + ] + ], "translation": "Переключить меню" }, "L5WQLg": { "message": "Token is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 19]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 19 + ] + ], "translation": "Требуется токен" }, "eEQyz+": { "message": "Track all card changes with detailed activity history.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 111 + ] + ], "translation": "Отслеживайте все изменения карточек с подробной историей активности." }, "dtbpdR": { @@ -5791,8 +9970,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 218], - ["src/views/settings/IntegrationsSettings.tsx", 142] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 218 + ], + [ + "src/views/settings/IntegrationsSettings.tsx", + 142 + ] ], "translation": "Trello" }, @@ -5800,56 +9985,96 @@ "message": "Trello disconnected", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 79]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 79 + ] + ], "translation": "Trello отключён" }, "kxEs5t": { "message": "Trello imports", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 95]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 95 + ] + ], "translation": "Импорт из Trello" }, "HO+uOC": { "message": "Triaging", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 57]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 57 + ] + ], "translation": "Сортировка" }, "o+JCfN": { "message": "Trusted by fast-moving teams<0/>around the world", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Logos.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Logos.tsx", + 67 + ] + ], "translation": "Нам доверяют быстроразвивающиеся команды<0/>по всему миру" }, "bZSICm": { "message": "Unable to add checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistItemForm.tsx", 89]], + "origin": [ + [ + "src/views/card/components/NewChecklistItemForm.tsx", + 89 + ] + ], "translation": "Не удалось добавить элемент контрольного списка" }, "T7DJ2k": { "message": "Unable to add comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewCommentForm.tsx", 36]], + "origin": [ + [ + "src/views/card/components/NewCommentForm.tsx", + 36 + ] + ], "translation": "Не удалось добавить комментарий" }, "2Q871c": { "message": "Unable to add label", "placeholders": {}, "comments": [], - "origin": [["src/views/card/index.tsx", 244]], + "origin": [ + [ + "src/views/card/index.tsx", + 286 + ] + ], "translation": "Не удалось добавить метку" }, "LeM5RY": { "message": "Unable to clear overrides", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 39]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 39 + ] + ], "translation": "Не удалось сбросить переопределения" }, "W1ewR0": { @@ -5857,10 +10082,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 313], - ["src/views/card/components/Dropdown.tsx", 49], - ["src/views/public/board/CardModal.tsx", 43], - ["src/views/public/board/index.tsx", 84] + [ + "src/views/board/index.tsx", + 317 + ], + [ + "src/views/card/components/Dropdown.tsx", + 49 + ], + [ + "src/views/public/board/CardModal.tsx", + 43 + ], + [ + "src/views/public/board/index.tsx", + 84 + ] ], "translation": "Не удалось скопировать ссылку" }, @@ -5868,21 +10105,36 @@ "message": "Unable to create card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewCardForm.tsx", 183]], + "origin": [ + [ + "src/views/board/components/NewCardForm.tsx", + 183 + ] + ], "translation": "Не удалось создать карточку" }, "mHhffx": { "message": "Unable to create checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/NewChecklistForm.tsx", 70]], + "origin": [ + [ + "src/views/card/components/NewChecklistForm.tsx", + 70 + ] + ], "translation": "Не удалось создать контрольный список" }, "TztLaN": { "message": "Unable to create list", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/NewListForm.tsx", 78]], + "origin": [ + [ + "src/views/board/components/NewListForm.tsx", + 78 + ] + ], "translation": "Не удалось создать список" }, "YcyP2z": { @@ -5890,8 +10142,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/NewTemplateForm.tsx", 60], - ["src/views/board/components/NewTemplateForm.tsx", 76] + [ + "src/views/board/components/NewTemplateForm.tsx", + 60 + ], + [ + "src/views/board/components/NewTemplateForm.tsx", + 76 + ] ], "translation": "Не удалось создать шаблон" }, @@ -5900,8 +10158,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 122], - ["src/views/onboarding/workspace-details/index.tsx", 100] + [ + "src/components/NewWorkspaceForm.tsx", + 122 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 100 + ] ], "translation": "Не удалось создать рабочую область" }, @@ -5909,14 +10173,24 @@ "message": "Unable to delete attachment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentThumbnails.tsx", 73]], + "origin": [ + [ + "src/views/card/components/AttachmentThumbnails.tsx", + 73 + ] + ], "translation": "Не удалось удалить вложение" }, "Z6r9z1": { "message": "Unable to delete card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCardConfirmation.tsx", 51]], + "origin": [ + [ + "src/views/card/components/DeleteCardConfirmation.tsx", + 51 + ] + ], "translation": "Не удалось удалить карточку" }, "DahTzR": { @@ -5924,7 +10198,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/card/components/DeleteChecklistConfirmation.tsx", 37] + [ + "src/views/card/components/DeleteChecklistConfirmation.tsx", + 37 + ] ], "translation": "Не удалось удалить контрольный список" }, @@ -5932,14 +10209,24 @@ "message": "Unable to delete checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 95 + ] + ], "translation": "Не удалось удалить элемент контрольного списка" }, "2QGEbi": { "message": "Unable to delete comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DeleteCommentConfirmation.tsx", 45]], + "origin": [ + [ + "src/views/card/components/DeleteCommentConfirmation.tsx", + 45 + ] + ], "translation": "Не удалось удалить комментарий" }, "Oo4E6p": { @@ -5947,7 +10234,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/CardContextDuplicateModal.tsx", 75] + [ + "src/views/board/components/CardContextDuplicateModal.tsx", + 75 + ] ], "translation": "Невозможно дублировать карточку" }, @@ -5955,7 +10245,12 @@ "message": "Unable to move card", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/CardContextMoveListModal.tsx", 41]], + "origin": [ + [ + "src/views/board/components/CardContextMoveListModal.tsx", + 41 + ] + ], "translation": "Невозможно переместить карточку" }, "8yFGGF": { @@ -5963,7 +10258,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/DeleteMemberConfirmation.tsx", 27] + [ + "src/views/members/components/DeleteMemberConfirmation.tsx", + 27 + ] ], "translation": "Не удалось удалить участника" }, @@ -5971,7 +10269,12 @@ "message": "Unable to reorder checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Checklists.tsx", 80]], + "origin": [ + [ + "src/views/card/components/Checklists.tsx", + 80 + ] + ], "translation": "Не удалось изменить порядок элемента контрольного списка" }, "vfRdCZ": { @@ -5979,7 +10282,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 92] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 92 + ] ], "translation": "Не удалось сбросить разрешения" }, @@ -5987,35 +10293,60 @@ "message": "Unable to send feedback", "placeholders": {}, "comments": [], - "origin": [["src/components/FeedbackModal.tsx", 40]], + "origin": [ + [ + "src/components/FeedbackModal.tsx", + 40 + ] + ], "translation": "Не удалось отправить отзыв" }, "Q60WUZ": { "message": "Unable to start checkout", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 149]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 149 + ] + ], "translation": "Не удалось начать оформление заказа" }, "T7Mywq": { "message": "Unable to update board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 64]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 64 + ] + ], "translation": "Не удалось обновить доску" }, "XpcjLO": { "message": "Unable to update board URL", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/UpdateBoardSlugForm.tsx", 72]], + "origin": [ + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 72 + ] + ], "translation": "Не удалось обновить URL доски" }, "Wy6pcF": { "message": "Unable to update board visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 56]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 56 + ] + ], "translation": "Не удалось обновить видимость доски" }, "o9WLwO": { @@ -6023,8 +10354,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 273], - ["src/views/card/index.tsx", 231] + [ + "src/views/board/index.tsx", + 277 + ], + [ + "src/views/card/index.tsx", + 273 + ] ], "translation": "Не удалось обновить карточку" }, @@ -6032,35 +10369,60 @@ "message": "Unable to update checklist", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistNameInput.tsx", 46]], + "origin": [ + [ + "src/views/card/components/ChecklistNameInput.tsx", + 46 + ] + ], "translation": "Не удалось обновить контрольный список" }, "WQPDcG": { "message": "Unable to update checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]], + "origin": [ + [ + "src/views/card/components/ChecklistItemRow.tsx", + 67 + ] + ], "translation": "Не удалось обновить элемент контрольного списка" }, "fYVH36": { "message": "Unable to update comment", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/Comment.tsx", 92]], + "origin": [ + [ + "src/views/card/components/Comment.tsx", + 92 + ] + ], "translation": "Не удалось обновить комментарий" }, "C56tim": { "message": "Unable to update due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/DueDateSelector.tsx", 63]], + "origin": [ + [ + "src/views/card/components/DueDateSelector.tsx", + 63 + ] + ], "translation": "Не удалось обновить дату выполнения" }, "delOXn": { "message": "Unable to update labels", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/LabelSelector.tsx", 74]], + "origin": [ + [ + "src/views/card/components/LabelSelector.tsx", + 74 + ] + ], "translation": "Не удалось обновить метки" }, "I0gAKM": { @@ -6068,8 +10430,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/index.tsx", 217], - ["src/views/card/components/ListSelector.tsx", 54] + [ + "src/views/board/index.tsx", + 221 + ], + [ + "src/views/card/components/ListSelector.tsx", + 54 + ] ], "translation": "Не удалось обновить список" }, @@ -6077,7 +10445,12 @@ "message": "Unable to update members", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/MemberSelector.tsx", 81]], + "origin": [ + [ + "src/views/card/components/MemberSelector.tsx", + 81 + ] + ], "translation": "Не удалось обновить участников" }, "GYv20o": { @@ -6085,8 +10458,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/members/components/EditMemberPermissionsModal.tsx", 41], - ["src/views/members/components/EditMemberPermissionsModal.tsx", 64] + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 41 + ], + [ + "src/views/members/components/EditMemberPermissionsModal.tsx", + 64 + ] ], "translation": "Не удалось обновить разрешения" }, @@ -6094,44 +10473,76 @@ "message": "Unable to update role", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 65]], + "origin": [ + [ + "src/views/members/index.tsx", + 65 + ] + ], "translation": "Не удалось обновить роль" }, "It4/FS": { "message": "Unarchive board", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/BoardDropdown.tsx", 111]], + "origin": [ + [ + "src/views/board/components/BoardDropdown.tsx", + 111 + ] + ], "translation": "Восстановить доску из архива" }, "E8zYtd": { "message": "unassigned <0>{0} from the card", "placeholders": { - "0": ["truncate(displayName)"] + "0": [ + "truncate(displayName)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 183]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 183 + ] + ], "translation": "<0>{0} был(а) удалён(а) из карточки" }, "hAMddS": { "message": "unassigned themselves from the card", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 180]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 180 + ] + ], "translation": "Пользователь удалил себя из карточки" }, "9Xigls": { "message": "Under Review", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 35]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 35 + ] + ], "translation": "На рассмотрении" }, "M9p3Vw": { "message": "Unlimited activity log", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 41]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 41 + ] + ], "translation": "Неограниченный журнал активности" }, "1wCGT0": { @@ -6139,12 +10550,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 74], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 75], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 76], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 77], - ["src/views/pricing/components/Pricing.tsx", 37], - ["src/views/pricing/components/PricingTiers.tsx", 36] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 74 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 75 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 76 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 77 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 37 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 36 + ] ], "translation": "Неограниченное количество досок" }, @@ -6152,7 +10581,12 @@ "message": "Unlimited boards, unlimited lists, unlimited cards. No credit card required.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Cta.tsx", 57]], + "origin": [ + [ + "src/views/home/components/Cta.tsx", + 57 + ] + ], "translation": "Неограниченное количество досок, списков и карточек. Кредитная карта не требуется." }, "Zz1qkk": { @@ -6160,8 +10594,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 39], - ["src/views/pricing/components/PricingTiers.tsx", 37] + [ + "src/views/pricing/components/Pricing.tsx", + 39 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 37 + ] ], "translation": "Неограниченное количество карточек" }, @@ -6169,7 +10609,12 @@ "message": "Unlimited comments", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 40]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 40 + ] + ], "translation": "Неограниченное количество комментариев" }, "86FLn5": { @@ -6177,10 +10622,22 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/FeatureComparisonTable.tsx", 91], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 92], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 93], - ["src/views/pricing/components/PricingTiers.tsx", 59] + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 91 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 92 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 93 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 59 + ] ], "translation": "Неограниченное количество загрузок файлов" }, @@ -6188,7 +10645,12 @@ "message": "Unlimited lists", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 38]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 38 + ] + ], "translation": "Неограниченное количество списков" }, "mx8+1u": { @@ -6196,11 +10658,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 297], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 84], - ["src/views/pricing/components/FeatureComparisonTable.tsx", 85], - ["src/views/pricing/components/PricingTiers.tsx", 80], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 68] + [ + "src/components/NewWorkspaceForm.tsx", + 297 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 84 + ], + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 85 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 80 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 68 + ] ], "translation": "Неограниченное количество участников" }, @@ -6208,14 +10685,24 @@ "message": "Unlimited members and a custom workspace username for teams ready to scale.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 94]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 94 + ] + ], "translation": "Неограниченное количество участников и персональное имя рабочего пространства для команд, готовых к масштабированию." }, "Ws+3X+": { "message": "Unlimited seats and advanced features for growing teams.", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/PricingTiers.tsx", 75]], + "origin": [ + [ + "src/views/pricing/components/PricingTiers.tsx", + 75 + ] + ], "translation": "Неограниченное количество мест и расширенные функции для развивающихся команд." }, "SMaFdc": { @@ -6223,8 +10710,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/pages/unsubscribe/index.tsx", 68], - ["src/pages/unsubscribe/index.tsx", 93] + [ + "src/pages/unsubscribe/index.tsx", + 68 + ], + [ + "src/pages/unsubscribe/index.tsx", + 93 + ] ], "translation": "Отписаться" }, @@ -6233,11 +10726,26 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/UpdateBoardSlugForm.tsx", 175], - ["src/views/settings/components/UpdateDisplayNameForm.tsx", 80], - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 94], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 89], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 157] + [ + "src/views/board/components/UpdateBoardSlugForm.tsx", + 175 + ], + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 80 + ], + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 94 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 89 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 157 + ] ], "translation": "Обновить" }, @@ -6245,44 +10753,76 @@ "message": "Update label", "placeholders": {}, "comments": [], - "origin": [["src/components/LabelForm.tsx", 236]], + "origin": [ + [ + "src/components/LabelForm.tsx", + 236 + ] + ], "translation": "Обновить метку" }, "L5ZPjz": { "message": "updated a checklist item", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 136]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 136 + ] + ], "translation": "обновил(а) элемент контрольного списка" }, "tGwwnq": { "message": "updated the description", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 126]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 126 + ] + ], "translation": "обновил(а) описание" }, "RfgJqw": { "message": "updated the due date", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 143]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 143 + ] + ], "translation": "обновил(а) срок выполнения" }, "V3MPSQ": { "message": "updated the title", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 125]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 125 + ] + ], "translation": "обновил(а) заголовок" }, "zERArS": { "message": "updated the title to <0>{0}", "placeholders": { - "0": ["truncate(toTitle)"] + "0": [ + "truncate(toTitle)" + ] }, "comments": [], - "origin": [["src/views/card/components/ActivityList.tsx", 152]], + "origin": [ + [ + "src/views/card/components/ActivityList.tsx", + 152 + ] + ], "translation": "обновил(а) заголовок на <0>{0}" }, "IelE1h": { @@ -6290,9 +10830,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SideNavigation.tsx", 240], - ["src/views/settings/components/UpgradeToProConfirmation.tsx", 55], - ["src/views/settings/WorkspaceSettings.tsx", 118] + [ + "src/components/SideNavigation.tsx", + 242 + ], + [ + "src/views/settings/components/UpgradeToProConfirmation.tsx", + 55 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 118 + ] ], "translation": "Перейти на Pro" }, @@ -6301,8 +10850,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 337], - ["src/views/onboarding/workspace-details/index.tsx", 243] + [ + "src/components/NewWorkspaceForm.tsx", + 337 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 243 + ] ], "translation": "Перейти на Pro (29 $/месяц)" }, @@ -6310,7 +10865,12 @@ "message": "Upload failed", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 51]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 51 + ] + ], "translation": "Ошибка загрузки" }, "BBUDfW": { @@ -6318,8 +10878,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/boards/components/TemplateBoards.tsx", 50], - ["src/views/boards/components/TemplateBoards.tsx", 67] + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ], + [ + "src/views/boards/components/TemplateBoards.tsx", + 67 + ] ], "translation": "Срочно" }, @@ -6328,8 +10894,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 217], - ["src/views/settings/components/WebhookList.tsx", 218] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 217 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 218 + ] ], "translation": "URL" }, @@ -6338,8 +10910,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 38], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 38] + [ + "src/components/NewWorkspaceForm.tsx", + 38 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 38 + ] ], "translation": "URL может содержать только буквы, цифры и дефисы" }, @@ -6347,7 +10925,12 @@ "message": "URL cannot exceed 2048 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 25]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 25 + ] + ], "translation": "URL не может превышать 2048 символов" }, "i5rE2/": { @@ -6355,8 +10938,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 36], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 36] + [ + "src/components/NewWorkspaceForm.tsx", + 36 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 36 + ] ], "translation": "URL не может превышать 64 символа" }, @@ -6365,8 +10954,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 34], - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 34] + [ + "src/components/NewWorkspaceForm.tsx", + 34 + ], + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 34 + ] ], "translation": "URL должен содержать не менее 3 символов" }, @@ -6374,112 +10969,208 @@ "message": "Use template", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/NewBoardForm.tsx", 154]], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 154 + ] + ], "translation": "Использовать шаблон" }, "n6EWYz": { "message": "Used to sign webhook payloads for verification. Leave blank to keep existing secret.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 239]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 239 + ] + ], "translation": "Используется для подписи данных вебхука для проверки. Оставьте пустым, чтобы сохранить существующий секретный ключ." }, "7PzzBU": { "message": "User", "placeholders": {}, "comments": [], - "origin": [["src/views/members/index.tsx", 322]], + "origin": [ + [ + "src/views/members/index.tsx", + 322 + ] + ], "translation": "Пользователь" }, "tYN21H": { "message": "User is already a member of this workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 98]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 98 + ] + ], "translation": "Пользователь уже является участником этого рабочего пространства" }, "vSJd18": { "message": "Video", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 50]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 50 + ] + ], "translation": "Видео" }, "FmfJjN": { "message": "View and manage your API keys.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/ApiSettings.tsx", 25]], + "origin": [ + [ + "src/views/settings/ApiSettings.tsx", + 25 + ] + ], "translation": "Просматривайте и управляйте своими API-ключами." }, "t2nDzl": { "message": "View and manage your billing and subscription.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/BillingSettings.tsx", 42]], + "origin": [ + [ + "src/views/settings/BillingSettings.tsx", + 42 + ] + ], "translation": "Просматривайте и управляйте своими платежами и подпиской." }, "aiHZVP": { "message": "View docs", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/Pricing.tsx", 67]], + "origin": [ + [ + "src/views/pricing/components/Pricing.tsx", + 67 + ] + ], "translation": "Посмотреть документацию" }, "F8DaWi": { "message": "View only", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 153]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 153 + ] + ], "translation": "Только просмотр" }, "fSf2ee": { "message": "View our roadmap.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 154]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 154 + ] + ], "translation": "Посмотреть наш роадмап" }, "U5dMR6": { "message": "View workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/public/board/index.tsx", 187]], + "origin": [ + [ + "src/views/public/board/index.tsx", + 187 + ] + ], "translation": "Просмотреть рабочее пространство" }, + "V8YRD4": { + "message": "Viewing now: {0}", + "placeholders": { + "0": [ + "viewers.map((v) => v.userName).join(\", \")" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/PresenceAvatars.tsx", + 61 + ] + ], + "translation": "" + }, "2q/Q7x": { "message": "Visibility", "placeholders": {}, "comments": [], - "origin": [["src/views/board/components/VisibilityButton.tsx", 103]], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 103 + ] + ], "translation": "Видимость" }, "BJbLe4": { "message": "We are using the <0>AGPL-3.0 license.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 94]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 94 + ] + ], "translation": "Мы используем <0>лицензию AGPL-3.0." }, "+EkBs0": { "message": "We couldn't update your preferences. Please try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 63]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 63 + ] + ], "translation": "Не удалось обновить ваши настройки. Пожалуйста, попробуйте ещё раз." }, "9y1RcT": { "message": "We're just getting started. ", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Features.tsx", 152]], + "origin": [ + [ + "src/views/home/components/Features.tsx", + 152 + ] + ], "translation": "Мы только начинаем." }, "GdWB+V": { "message": "Webhook created successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 104]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 104 + ] + ], "translation": "Вебхук успешно создан" }, "2X4ecw": { @@ -6487,7 +11178,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWebhookConfirmation.tsx", 23] + [ + "src/views/settings/components/DeleteWebhookConfirmation.tsx", + 23 + ] ], "translation": "Вебхук успешно удалён" }, @@ -6495,14 +11189,24 @@ "message": "Webhook name cannot exceed 255 characters", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 20]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 20 + ] + ], "translation": "Название вебхука не может превышать 255 символов" }, "U2+rn0": { "message": "Webhook name is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 19]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 19 + ] + ], "translation": "Название вебхука обязательно" }, "8iP9oQ": { @@ -6510,8 +11214,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/NewWebhookModal.tsx", 135], - ["src/views/settings/components/WebhookList.tsx", 177] + [ + "src/views/settings/components/NewWebhookModal.tsx", + 135 + ], + [ + "src/views/settings/components/WebhookList.tsx", + 177 + ] ], "translation": "Не удалось выполнить тест вебхука" }, @@ -6519,14 +11229,24 @@ "message": "Webhook updated successfully", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 118]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 118 + ] + ], "translation": "Вебхук успешно обновлён" }, "Hf1cEZ": { "message": "Webhook URL is required", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/NewWebhookModal.tsx", 23]], + "origin": [ + [ + "src/views/settings/components/NewWebhookModal.tsx", + 23 + ] + ], "translation": "URL вебхука обязателен" }, "v1kQyJ": { @@ -6534,8 +11254,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 71], - ["src/views/settings/WebhookSettings.tsx", 28] + [ + "src/components/SettingsLayout.tsx", + 71 + ], + [ + "src/views/settings/WebhookSettings.tsx", + 28 + ] ], "translation": "Вебхуки" }, @@ -6543,42 +11269,72 @@ "message": "Week start day", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 91 + ] + ], "translation": "День начала недели" }, "9eF5oV": { "message": "Welcome back", "placeholders": {}, "comments": [], - "origin": [["src/views/auth/login/index.tsx", 43]], + "origin": [ + [ + "src/views/auth/login/index.tsx", + 43 + ] + ], "translation": "С возвращением" }, "xEbBrW": { "message": "What license are you using?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 91]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 91 + ] + ], "translation": "Какую лицензию вы используете?" }, "H5G+qG": { "message": "What's the difference between Kan and Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 30]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 30 + ] + ], "translation": "В чём разница между Kan и Trello?" }, "mVZH9V": { "message": "When Trello launched in 2011, it blew everyone away with its carefully designed simplicity, but over the years it lost its magic and grew into something closer to \"Jira Lite\". This project is our attempt to recapture the original magic of Trello's simplicity, in open source.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 25]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 25 + ] + ], "translation": "Когда Trello появился в 2011 году, он поразил всех своей продуманной простотой, но со временем утратил свою магию и стал чем-то вроде \"Jira Lite\". Этот проект — наша попытка вернуть ту самую магию простоты Trello, но в формате open source." }, "SFnH1j": { "message": "Why make an open source Trello?", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 22]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 22 + ] + ], "translation": "Зачем делать open source Trello?" }, "pmUArF": { @@ -6586,12 +11342,30 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/SettingsLayout.tsx", 47], - ["src/views/board/index.tsx", 530], - ["src/views/boards/index.tsx", 48], - ["src/views/members/index.tsx", 258], - ["src/views/public/board/index.tsx", 125], - ["src/views/public/boards/index.tsx", 75] + [ + "src/components/SettingsLayout.tsx", + 47 + ], + [ + "src/views/board/index.tsx", + 534 + ], + [ + "src/views/boards/index.tsx", + 48 + ], + [ + "src/views/members/index.tsx", + 258 + ], + [ + "src/views/public/board/index.tsx", + 125 + ], + [ + "src/views/public/boards/index.tsx", + 75 + ] ], "translation": "Рабочее пространство" }, @@ -6599,7 +11373,12 @@ "message": "Workspace created successfully. You can upgrade later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 147]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 147 + ] + ], "translation": "Рабочее пространство успешно создано. Вы сможете обновить его позже в настройках.", "obsolete": true }, @@ -6608,7 +11387,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 26] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 26 + ] ], "translation": "Рабочее пространство удалено" }, @@ -6617,8 +11399,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 253], - ["src/views/settings/WorkspaceSettings.tsx", 82] + [ + "src/views/onboarding/workspace-details/index.tsx", + 253 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 82 + ] ], "translation": "Описание рабочего пространства" }, @@ -6627,7 +11415,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 30] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 30 + ] ], "translation": "Описание рабочего пространства не может превышать 280 символов" }, @@ -6636,7 +11427,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 27] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 27 + ] ], "translation": "Описание рабочего пространства должно содержать не менее 3 символов" }, @@ -6645,7 +11439,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 50] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 50 + ] ], "translation": "Описание рабочего пространства обновлено" }, @@ -6654,9 +11451,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/home/components/Features.tsx", 90], - ["src/views/pricing/components/Pricing.tsx", 54], - ["src/views/pricing/components/PricingTiers.tsx", 57] + [ + "src/views/home/components/Features.tsx", + 90 + ], + [ + "src/views/pricing/components/Pricing.tsx", + 54 + ], + [ + "src/views/pricing/components/PricingTiers.tsx", + 57 + ] ], "translation": "Участники рабочего пространства" }, @@ -6665,9 +11471,18 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 227], - ["src/views/onboarding/workspace-details/index.tsx", 188], - ["src/views/settings/WorkspaceSettings.tsx", 63] + [ + "src/components/NewWorkspaceForm.tsx", + 227 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 188 + ], + [ + "src/views/settings/WorkspaceSettings.tsx", + 63 + ] ], "translation": "Название рабочего пространства" }, @@ -6676,8 +11491,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/components/NewWorkspaceForm.tsx", 30], - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 15] + [ + "src/components/NewWorkspaceForm.tsx", + 30 + ], + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 15 + ] ], "translation": "Название рабочего пространства не может превышать 64 символа" }, @@ -6685,7 +11506,12 @@ "message": "Workspace name is required", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 29]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 29 + ] + ], "translation": "Требуется указать название рабочего пространства" }, "jZBHkN": { @@ -6693,7 +11519,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 14] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 14 + ] ], "translation": "Название рабочего пространства должно содержать не менее 3 символов" }, @@ -6702,7 +11531,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 45] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 45 + ] ], "translation": "Название рабочего пространства обновлено" }, @@ -6710,7 +11542,12 @@ "message": "Workspace permissions", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 53]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 53 + ] + ], "translation": "Права доступа рабочего пространства" }, "MN6YzG": { @@ -6718,7 +11555,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 62] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 62 + ] ], "translation": "Слаг рабочего пространства обновлён" }, @@ -6726,28 +11566,48 @@ "message": "Workspace URL", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/WorkspaceSettings.tsx", 72]], + "origin": [ + [ + "src/views/settings/WorkspaceSettings.tsx", + 72 + ] + ], "translation": "URL рабочего пространства" }, "DSGzV+": { "message": "Workspace username", "placeholders": {}, "comments": [], - "origin": [["src/views/pricing/components/FeatureComparisonTable.tsx", 97]], + "origin": [ + [ + "src/views/pricing/components/FeatureComparisonTable.tsx", + 97 + ] + ], "translation": "Имя пользователя рабочего пространства" }, "/8pTF/": { "message": "workspace-url", "placeholders": {}, "comments": [], - "origin": [["src/components/NewWorkspaceForm.tsx", 241]], + "origin": [ + [ + "src/components/NewWorkspaceForm.tsx", + 241 + ] + ], "translation": "workspace-url" }, "4kJRen": { "message": "Writing", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/TemplateBoards.tsx", 43]], + "origin": [ + [ + "src/views/boards/components/TemplateBoards.tsx", + 43 + ] + ], "translation": "Письмо" }, "zkWmBh": { @@ -6755,8 +11615,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/pricing/components/Pricing.tsx", 19], - ["src/views/pricing/index.tsx", 25] + [ + "src/views/pricing/components/Pricing.tsx", + 19 + ], + [ + "src/views/pricing/index.tsx", + 25 + ] ], "translation": "Ежегодно" }, @@ -6764,42 +11630,72 @@ "message": "Yes, we offer an forever free plan for individual use. No restrictions, no paywalls, no limits.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 86]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 86 + ] + ], "translation": "Да, мы предлагаем бессрочный бесплатный тариф для индивидуального использования. Без ограничений, без платных функций, без лимитов." }, "RtlIYB": { "message": "You are about to change your password.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/AccountSettings.tsx", 91]], + "origin": [ + [ + "src/views/settings/AccountSettings.tsx", + 91 + ] + ], "translation": "Вы собираетесь изменить свой пароль." }, "3WXdoZ": { "message": "You can always change these later in settings.", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 182]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 182 + ] + ], "translation": "Вы всегда можете изменить это позже в настройках." }, "aelko+": { "message": "You can get a custom workspace URL, like <0>kan.bn/kan, by going into your <1>workspace settings and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 67]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 67 + ] + ], "translation": "Вы можете получить собственный URL рабочего пространства, например <0>kan.bn/kan, перейдя в <1>настройки рабочего пространства и оформив подписку на pro-версию. Все подписки помогают финансировать развитие проекта!" }, "kSxwQL": { "message": "You can invite team members by clicking the \"Invite\" button in the top right corner of the <0>members page and entering their email address. They will receive an email with a link to join the workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 111]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 111 + ] + ], "translation": "Вы можете пригласить участников команды, нажав кнопку «Пригласить» в правом верхнем углу <0>страницы участников и введя их адрес электронной почты. Они получат письмо со ссылкой для присоединения к рабочему пространству." }, "vAj6xG": { "message": "You can self-host by following the instructions in our <0>repo.", "placeholders": {}, "comments": [], - "origin": [["src/views/home/components/Faqs.tsx", 127]], + "origin": [ + [ + "src/views/home/components/Faqs.tsx", + 127 + ] + ], "translation": "Вы можете развернуть сервис самостоятельно, следуя инструкциям в нашем <0>репозитории." }, "h2FKMV": { @@ -6807,14 +11703,38 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/board/components/List.tsx", 117], - ["src/views/board/components/UpdateBoardSlugButton.tsx", 58], - ["src/views/board/components/VisibilityButton.tsx", 72], - ["src/views/board/index.tsx", 604], - ["src/views/board/index.tsx", 662], - ["src/views/boards/components/BoardsList.tsx", 71], - ["src/views/boards/index.tsx", 59], - ["src/views/boards/index.tsx", 80] + [ + "src/views/board/components/List.tsx", + 117 + ], + [ + "src/views/board/components/UpdateBoardSlugButton.tsx", + 58 + ], + [ + "src/views/board/components/VisibilityButton.tsx", + 72 + ], + [ + "src/views/board/index.tsx", + 608 + ], + [ + "src/views/board/index.tsx", + 667 + ], + [ + "src/views/boards/components/BoardsList.tsx", + 71 + ], + [ + "src/views/boards/index.tsx", + 59 + ], + [ + "src/views/boards/index.tsx", + 80 + ] ], "translation": "У вас нет прав доступа" }, @@ -6822,49 +11742,180 @@ "message": "You have been logged in successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 233]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 233 + ] + ], "translation": "Вы успешно вошли в систему." }, "mchgzf": { "message": "You have been signed up successfully.", "placeholders": {}, "comments": [], - "origin": [["src/components/AuthForm.tsx", 216]], + "origin": [ + [ + "src/components/AuthForm.tsx", + 216 + ] + ], "translation": "Вы успешно зарегистрировались." }, "raHesj": { "message": "You have been unsubscribed!", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 98]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 98 + ] + ], "translation": "Вы отписались!" }, "R275Pz": { "message": "You have unlimited seats with your Pro Plan. There is no additional charge for new members!", "placeholders": {}, "comments": [], - "origin": [["src/views/members/components/InviteMemberForm.tsx", 326]], + "origin": [ + [ + "src/views/members/components/InviteMemberForm.tsx", + 326 + ] + ], "translation": "В вашем Pro-плане неограниченное количество мест. За новых участников дополнительная плата не взимается!" }, "MdN5zD": { "message": "You need to be an admin to manage workspace permissions.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/PermissionsSettings.tsx", 86]], + "origin": [ + [ + "src/views/settings/PermissionsSettings.tsx", + 86 + ] + ], "translation": "Вам нужно быть администратором, чтобы управлять правами доступа рабочего пространства." }, + "Cb5YSG": { + "message": "You were added to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 33 + ] + ], + "translation": "" + }, + "EYpSRU": { + "message": "You were added to a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 34 + ] + ], + "translation": "" + }, + "j77sVH": { + "message": "You were assigned to", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 45 + ] + ], + "translation": "" + }, + "4sxGcV": { + "message": "You were assigned to a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 46 + ] + ], + "translation": "" + }, + "9HDx2Z": { + "message": "You were mentioned in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 29 + ] + ], + "translation": "" + }, + "e6wIqm": { + "message": "You were mentioned in a card", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 30 + ] + ], + "translation": "" + }, + "11dHnN": { + "message": "You were removed from", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 37 + ] + ], + "translation": "" + }, + "YdIn4I": { + "message": "You were removed from a workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 38 + ] + ], + "translation": "" + }, "2SePRT": { "message": "You've been invited to join a workspace on kan.bn.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 134]], + "origin": [ + [ + "src/views/invite/index.tsx", + 134 + ] + ], "translation": "Вас пригласили присоединиться к рабочему пространству на kan.bn." }, "uOqaMC": { "message": "You've been invited to join a workspace.", "placeholders": {}, "comments": [], - "origin": [["src/views/invite/index.tsx", 135]], + "origin": [ + [ + "src/views/invite/index.tsx", + 135 + ] + ], "translation": "Вас пригласили присоединиться к рабочему пространству." }, "GoDLB9": { @@ -6872,7 +11923,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteAccountConfirmation.tsx", 28] + [ + "src/views/settings/components/DeleteAccountConfirmation.tsx", + 28 + ] ], "translation": "Ваш аккаунт был удалён." }, @@ -6880,49 +11934,84 @@ "message": "Your avatar", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/select-plan/index.tsx", 229]], + "origin": [ + [ + "src/views/onboarding/select-plan/index.tsx", + 229 + ] + ], "translation": "Ваш аватар" }, "evg7+A": { "message": "Your boards have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 382]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 382 + ] + ], "translation": "Ваши доски были импортированы." }, "LqWW5F": { "message": "Your display name has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/UpdateDisplayNameForm.tsx", 42]], + "origin": [ + [ + "src/views/settings/components/UpdateDisplayNameForm.tsx", + 42 + ] + ], "translation": "Ваше отображаемое имя обновлено." }, "tca56/": { "message": "Your file has been uploaded successfully.", "placeholders": {}, "comments": [], - "origin": [["src/views/card/components/AttachmentUpload.tsx", 46]], + "origin": [ + [ + "src/views/card/components/AttachmentUpload.tsx", + 46 + ] + ], "translation": "Ваш файл был успешно загружен." }, "HcT8J4": { "message": "Your GitHub account has been connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 100]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 100 + ] + ], "translation": "Ваш аккаунт GitHub был подключён." }, "AdxYds": { "message": "Your GitHub account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 123]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 123 + ] + ], "translation": "Ваш аккаунт GitHub был отключён." }, "PELbXB": { "message": "Your GitHub account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 220]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 220 + ] + ], "translation": "Ваш аккаунт GitHub подключён." }, "Ozt2vv": { @@ -6930,7 +12019,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/ChangePasswordConfirmation.tsx", 70] + [ + "src/views/settings/components/ChangePasswordConfirmation.tsx", + 70 + ] ], "translation": "Ваш пароль был изменён." }, @@ -6938,49 +12030,108 @@ "message": "Your profile image has been updated.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/components/Avatar.tsx", 190]], + "origin": [ + [ + "src/views/settings/components/Avatar.tsx", + 190 + ] + ], "translation": "Ваше изображение профиля было обновлено." }, "+jbXzb": { "message": "Your projects have been imported.", "placeholders": {}, "comments": [], - "origin": [["src/views/boards/components/ImportBoardsForm.tsx", 230]], + "origin": [ + [ + "src/views/boards/components/ImportBoardsForm.tsx", + 230 + ] + ], "translation": "Ваши проекты были импортированы." }, + "0AfkMq": { + "message": "Your role changed in", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 41 + ] + ], + "translation": "" + }, + "GKeVeM": { + "message": "Your role was changed", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/components/NotificationBell.tsx", + 42 + ] + ], + "translation": "" + }, "CJWDTP": { "message": "Your Trello account has been disconnected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 80]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 80 + ] + ], "translation": "Ваш аккаунт Trello был отключён." }, "WRsbHO": { "message": "Your Trello account is connected.", "placeholders": {}, "comments": [], - "origin": [["src/views/settings/IntegrationsSettings.tsx", 171]], + "origin": [ + [ + "src/views/settings/IntegrationsSettings.tsx", + 171 + ] + ], "translation": "Ваш аккаунт Trello подключён." }, "25fAUC": { "message": "Your unsubscribe link is missing a token. Please open the latest email and try again.", "placeholders": {}, "comments": [], - "origin": [["src/pages/unsubscribe/index.tsx", 33]], + "origin": [ + [ + "src/pages/unsubscribe/index.tsx", + 33 + ] + ], "translation": "В вашей ссылке для отписки отсутствует токен. Пожалуйста, откройте последнее письмо и попробуйте снова." }, "GRAGsB": { "message": "Your workspace", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 322]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 322 + ] + ], "translation": "Ваше рабочее пространство" }, "j0o6ml": { "message": "Your workspace description", "placeholders": {}, "comments": [], - "origin": [["src/views/onboarding/workspace-details/index.tsx", 325]], + "origin": [ + [ + "src/views/onboarding/workspace-details/index.tsx", + 325 + ] + ], "translation": "Описание вашего рабочего пространства" }, "GnSSGm": { @@ -6988,7 +12139,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 51] + [ + "src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", + 51 + ] ], "translation": "Описание вашего рабочего пространства было обновлено." }, @@ -6997,7 +12151,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 27] + [ + "src/views/settings/components/DeleteWorkspaceConfirmation.tsx", + 27 + ] ], "translation": "Ваше рабочее пространство было удалено." }, @@ -7006,7 +12163,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 46] + [ + "src/views/settings/components/UpdateWorkspaceNameForm.tsx", + 46 + ] ], "translation": "Название вашего рабочего пространства было обновлено." }, @@ -7015,7 +12175,10 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 63] + [ + "src/views/settings/components/UpdateWorkspaceUrlForm.tsx", + 63 + ] ], "translation": "Слаг вашего рабочего пространства был обновлён." }, @@ -7024,8 +12187,14 @@ "placeholders": {}, "comments": [], "origin": [ - ["src/views/onboarding/workspace-details/index.tsx", 197], - ["src/views/onboarding/workspace-details/index.tsx", 198] + [ + "src/views/onboarding/workspace-details/index.tsx", + 197 + ], + [ + "src/views/onboarding/workspace-details/index.tsx", + 198 + ] ], "translation": "your-workspace" }, @@ -7033,7 +12202,12 @@ "message": "YouTube URL", "placeholders": {}, "comments": [], - "origin": [["src/components/YouTubeEmbed/EditYouTubeModal.tsx", 147]], + "origin": [ + [ + "src/components/YouTubeEmbed/EditYouTubeModal.tsx", + 147 + ] + ], "translation": "YouTube URL" } } \ No newline at end of file diff --git a/apps/web/src/locales/ru/messages.ts b/apps/web/src/locales/ru/messages.ts index 47ab88b5c..2b8d184f9 100644 --- a/apps/web/src/locales/ru/messages.ts +++ b/apps/web/src/locales/ru/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Социальные сети\"],\"+3TYXa\":[\"Для долгосрочной устойчивости мы понимаем, что всем хорошим open source-проектам необходим источник дохода. Наш — это платное облачное решение для рабочих пространств с несколькими пользователями и для индивидуальных адресов рабочих пространств. Нет обязательства использовать его — вы можете развернуть ПО на своей инфраструктуре бесплатно.\"],\"+5kO8P\":[\"Суббота\"],\"+8Nek/\":[\"Ежемесячно\"],\"+EkBs0\":[\"Не удалось обновить ваши настройки. Пожалуйста, попробуйте ещё раз.\"],\"+MdEsf\":[\"Требуется новый пароль\"],\"+OhFss\":[\"Начните бесплатно, без ограничений по использованию. Для совместной работы выберите тариф, подходящий по размеру вашей команды.\"],\"+VoTOr\":[\"оплата ежемесячно\"],\"+djOzj\":[\"Пригласить участника\"],\"+h2faV\":[\"Настройки | Вебхуки\"],\"+jbXzb\":[\"Ваши проекты были импортированы.\"],\"+nvZ6j\":[\"Метки и фильтры\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Шаблон\"],\"/asTmx\":[\"Отчёт о баге\"],\"/bBVaD\":[\"GitHub отключён\"],\"/bZzdR\":[\"Упоминания\"],\"/f3t6v\":[\"Настройте, какие действия разрешены для каждой роли в рабочем пространстве. Эти права применяются ко всем участникам с этой ролью.\"],\"/gaSVU\":[\"Дорожная карта\"],\"/glL9Q\":[\"Нет \",[\"0\"]],\"/jd3aj\":[\"Расширенные роли администратора\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"Мощное и гибкое kanban-приложение, которое помогает организовать работу, отслеживать прогресс и достигать результатов — всё в одном месте.\"],\"/tOdd2\":[\"Ваше изображение профиля было обновлено.\"],\"0+0/3e\":[\"Создать новую метку\"],\"0+ewPp\":[\"Улучшение\"],\"02i3WU\":[\"Импорт\"],\"06EQqT\":[\"Дублирование…\"],\"0KjpAr\":[\"Может просматривать участников\"],\"0RE1AJ\":[\"Здесь будут отображаться архивированные вами доски.\"],\"0StR7t\":[\"Введите новый пароль\"],\"0jV46i\":[\"Не удалось удалить элемент контрольного списка\"],\"0qyZ4b\":[\"Загрузка разрешений...\"],\"0rPv1T\":[\"Изображение профиля обновлено\"],\"0utuU6\":[\"Копировать чек-листы\"],\"0xD8Of\":[\"Страница, которую вы ищете, не существует или была перемещена.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Импортировать доску (1)\"],\"few\":[\"Импортировать доски (\",[\"boardCount\"],\")\"],\"many\":[\"Импортировать досок (\",[\"boardCount\"],\")\"],\"other\":[\"Импортировать доски (\",[\"boardCount\"],\")\"]}]],\"14Xi3Z\":[\"Добавление нового участника будет стоить дополнительно \",[\"price\"],\" (\",[\"billingType\"],\") за место.\"],\"1H5u1m\":[\"Вопросы?\"],\"1WuwiM\":[\"Перейти к настройкам\"],\"1bJKhj\":[\"Копировать ссылку на карточку\"],\"1hzdxO\":[\"Права доступа рабочего пространства\"],\"1iShX0\":[\"Срок — сегодня\"],\"1njn7W\":[\"Светлая тема\"],\"1rVAfU\":[\"Загрузить ещё действия\"],\"1rWxEw\":[\"Ожидание клиента\"],\"1sRmLC\":[\"Обсуждайте и сотрудничайте по карточкам.\"],\"1wCGT0\":[\"Неограниченное количество досок\"],\"25fAUC\":[\"В вашей ссылке для отписки отсутствует токен. Пожалуйста, откройте последнее письмо и попробуйте снова.\"],\"25mvI+\":[\"Ссылки-приглашения доступны только с подпиской Team или Pro. Пожалуйста, обновите тариф вашего рабочего пространства.\"],\"29sSki\":[\"завершён пункт контрольного списка <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"Список\"],\"2Bu8xj\":[\"Доски не найдены\"],\"2M84k3\":[\"Пользовательские разрешения\"],\"2MPcep\":[\"Импорт завершён\"],\"2POOFK\":[\"Бесплатно\"],\"2Py5S/\":[\"Я подтверждаю, что все данные рабочего пространства будут безвозвратно удалены, и хочу продолжить.\"],\"2Q871c\":[\"Не удалось добавить метку\"],\"2QGEbi\":[\"Не удалось удалить комментарий\"],\"2SePRT\":[\"Вас пригласили присоединиться к рабочему пространству на kan.bn.\"],\"2X4ecw\":[\"Вебхук успешно удалён\"],\"2h4PVB\":[\"Название вашего рабочего пространства было обновлено.\"],\"2liqDZ\":[\"Я подтверждаю, что все данные моего аккаунта будут безвозвратно удалены, и хочу продолжить.\"],\"2q/Q7x\":[\"Видимость\"],\"2roTVj\":[\"Отзыв отправлен\"],\"3LDCpD\":[\"Это действие нельзя отменить.\"],\"3WXdoZ\":[\"Вы всегда можете изменить это позже в настройках.\"],\"3ZjRJY\":[\"переименован чек-лист <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Любой, у кого есть эта ссылка, может присоединиться к вашему рабочему пространству\"],\"3d54Wj\":[\"Вебхук успешно обновлён\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Подключить GitHub\"],\"3pIq39\":[\"Роли администратора\"],\"479pdJ\":[\"Подтвердите новый пароль\"],\"4DOCMI\":[\"YouTube URL\"],\"4Revpc\":[\"Мелкий\"],\"4RoY9J\":[\"Блог-пост\"],\"4XF0BB\":[\"Фото профиля\"],\"4gAX8s\":[\"Переключить меню\"],\"4kJRen\":[\"Письмо\"],\"4obmDr\":[\"404 - Страница не найдена | kan.bn\"],\"51UCsN\":[\"Переместить в другой список\"],\"53QYh8\":[\"Не удалось создать доску\"],\"55xJ/O\":[\"Ошибка при смене пароля\"],\"58AiWX\":[\"Пожалуйста, подтвердите новый пароль\"],\"5ACX4z\":[\"Рассылка\"],\"5IXWmO\":[\"Проверьте свой почтовый ящик\"],\"5P4rhH\":[\"Не удалось обновить участников\"],\"5RkSzq\":[\"Скопировать ссылку на доску\"],\"5eZwRW\":[\"Подключите ваш аккаунт Trello для импорта досок.\"],\"5h8ooz\":[\"Ключи API\"],\"5iplxh\":[\"Новый пароль должен отличаться от текущего\"],\"5k0NLb\":[\"Рецензия\"],\"5lWFkC\":[\"Войти\"],\"5ntVtp\":[\"Не удалось протестировать вебхук\"],\"5y6qY8\":[\"добавлено вложение\"],\"69b7aE\":[\"Открыть командное меню\"],\"6EWT6T\":[\"Набор персонала\"],\"6FDocz\":[\"Зарегистрироваться через \"],\"6FsGbN\":[\"Начните с создания нового \",[\"0\"]],\"6OTo9n\":[\"Необходимо указать имя шаблона\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Новый \",[\"0\"]],\"6YtxFj\":[\"Имя\"],\"6mbe4b\":[\"Индивидуальные участники\"],\"6sKjjx\":[\"Индивидуальный\"],\"6tDFBe\":[\"Права участника были обновлены.\"],\"6uBU1F\":[\"Полный доступ к API\"],\"6zeSBB\":[\"Можно создавать карточки\"],\"74F7N/\":[\"Вы уверены, что хотите удалить свой аккаунт?\"],\"7EhE4k\":[\"Обновить метку\"],\"7L01XJ\":[\"Действия\"],\"7PzzBU\":[\"Пользователь\"],\"7RpHg/\":[\"Пользовательское имя\"],\"7Ufoyg\":[\"Неограниченное количество списков\"],\"7aONWr\":[\"URL не может превышать 2048 символов\"],\"7b2yuC\":[\"Пожалуйста, введите корректный пароль\"],\"7d1a0d\":[\"Публично\"],\"7eMo+U\":[\"На главную\"],\"7hktsm\":[\"Начало работы\"],\"7i8j3G\":[\"Компания\"],\"8+BY11\":[\"URL доски скопирован в буфер обмена\"],\"86FLn5\":[\"Неограниченное количество загрузок файлов\"],\"86XI28\":[\"Подтвердите ваши настройки электронной почты:\"],\"8AbRER\":[\"Установить срок\"],\"8AwlaR\":[\"Неограниченное количество участников и персональное имя рабочего пространства для команд, готовых к масштабированию.\"],\"8F1i42\":[\"Страница не найдена\"],\"8Is1ih\":[\"Стартовое предложение\"],\"8RdLDU\":[\"Личный проект\"],\"8TveY+\":[\"Доски\"],\"8Z4pNX\":[\"Можно создавать списки\"],\"8iP0S8\":[\"Всё из бесплатного тарифа, а также:\"],\"8iP9oQ\":[\"Не удалось выполнить тест вебхука\"],\"8yFGGF\":[\"Не удалось удалить участника\"],\"99VIgC\":[\"Удалить участника\"],\"9PaIxv\":[\"Основные функции\"],\"9Xigls\":[\"На рассмотрении\"],\"9YPBHv\":[\"Не удалось удалить вебхук\"],\"9cDpsw\":[\"Разрешения\"],\"9eF5oV\":[\"С возвращением\"],\"9h7RDh\":[\"Предложение\"],\"9lFfqv\":[\"/месяц\"],\"9s9O5h\":[\"Ошибка при удалении рабочего пространства\"],\"9u5BOr\":[\"Участники | \",[\"0\"]],\"9wdpwp\":[\"Портал выставления счетов\"],\"9x4DAL\":[[\"0\"],\" не найдено\"],\"9y1RcT\":[\"Мы только начинаем.\"],\"A23Y7X\":[\"Присоединиться к рабочему пространству | kan.bn\"],\"A42Dqn\":[\"Пользовательский брендинг\"],\"A5hiCy\":[\"Создать шаблон\"],\"A8jqN7\":[\"Не удалось отправить отзыв\"],\"ABCjd9\":[\"Публикация\"],\"ADEin1\":[\"Настройки | Оплата\"],\"ALhEZV\":[\"Может приглашать участников\"],\"ANyn0x\":[\"Всё, что вам нужно, бесплатно навсегда. Неограниченные доски, списки и карточки. Можно перейти на другой тариф в любой момент.\"],\"ARvBT/\":[\"оплата ежегодно\"],\"ASjvm9\":[\"URL рабочего пространства\"],\"AUYALh\":[\"Скоро появится\"],\"AX4ktp\":[\"Создание контента\"],\"AZI/wb\":[\"Метки и фильтры\"],\"AdxYds\":[\"Ваш аккаунт GitHub был отключён.\"],\"AeXO77\":[\"Аккаунт\"],\"Alp2ti\":[\"Связаться с отделом продаж\"],\"Ax/hYa\":[\"Описание рабочего пространства не может превышать 280 символов\"],\"B3xxao\":[\"Добавить карточку\"],\"BBUDfW\":[\"Срочно\"],\"BEVzjL\":[\"Ошибка импорта\"],\"BJbLe4\":[\"Мы используем <0>лицензию AGPL-3.0.\"],\"BMkVQ3\":[\"удалил(а) чек-лист <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"переместил(а) карточку из <0>\",[\"0\"],\" в<1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Дублировать карточку\"],\"BZkYSt\":[\"удалено \",[\"0\"],\" меток: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Вы уверены, что хотите удалить рабочее пространство \",[\"0\"],\"?\"],\"Bhgd0l\":[\"Связаться с нами\"],\"BzEFor\":[\"или\"],\"C56tim\":[\"Не удалось обновить дату выполнения\"],\"C6gv54\":[\"Доска была восстановлена из архива.\"],\"CAL6E9\":[\"Команды\"],\"CB/NpV\":[\"Высокий приоритет\"],\"CHZ1jC\":[\"удалил(а) элемент чек-листа <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Пожалуйста, введите корректное имя\"],\"CJWDTP\":[\"Ваш аккаунт Trello был отключён.\"],\"CJukzS\":[[\"0\"],\" метки\"],\"CTqTgr\":[\"Горячие клавиши\"],\"CYWHT+\":[\"Ошибка при загрузке изображения профиля\"],\"Cd4sTD\":[\"Лучше всего подходит для индивидуальных пользователей и соло-креаторов, начинающих работу\"],\"Ci/KUX\":[\"Настройки | Рабочее пространство\"],\"CkVV1t\":[\"Ошибка при обновлении описания рабочего пространства\"],\"Cmudpi\":[\"Можно удалить рабочее пространство\"],\"CozWO1\":[\"Название рабочего пространства\"],\"CujNX4\":[\"добавлено вложение <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"Система\"],\"D0esZz\":[\"Журнал активности\"],\"D3C4Yx\":[\"Требуется текущий пароль\"],\"D7/JvJ\":[\"Отрегулируйте квадратную обрезку для вашего аватара.\"],\"D9ROdV\":[\"Ссылки-приглашения\"],\"DAV3uK\":[\"Разрешения обновлены\"],\"DBC3t5\":[\"Воскресенье\"],\"DFjdv0\":[\"Удалить шаблон\"],\"DMeWZD\":[\"Вы уверены, что хотите удалить этот объект \",[\"0\"],\"?\"],\"DPfwMq\":[\"Готово\"],\"DSGzV+\":[\"Имя пользователя рабочего пространства\"],\"DahTzR\":[\"Не удалось удалить контрольный список\"],\"DbZgsJ\":[\"Создать шаблон\"],\"DtXlZq\":[\"Не удалось обновить контрольный список\"],\"Dz63YI\":[\"Произошла ошибка при отключении вашего аккаунта GitHub.\"],\"E0t3jO\":[\"добавлен элемент чек-листа <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Цена за место\"],\"E8zYtd\":[\"<0>\",[\"0\"],\" был(а) удалён(а) из карточки\"],\"ECJKc4\":[\"Ключ API создан\"],\"EEHmPC\":[\"Стартовое предложение: неограниченное количество участников с Pro\"],\"EH8IL3\":[\"Чек-листы\"],\"EII/X8\":[\"Все функции Teams +\"],\"ERpq2P\":[\"По запросу «\",[\"debouncedQuery\"],\"» ничего не найдено.\"],\"ESClHO\":[\"Приоритетная поддержка по электронной почте\"],\"Eg99Sc\":[\"В данный момент нет доступных методов аутентификации\"],\"Eit43O\":[\"установить срок\"],\"EkH9pt\":[\"Обновить\"],\"EvArWh\":[\"Бесшовно сотрудничайте с вашей командой.\"],\"F/FPk/\":[\"Настройки | Разрешения\"],\"F/vB2g\":[\"Идеи по улучшению этой страницы...\"],\"F0YmUY\":[\"Скопировать ссылку на карточку\"],\"F3bW6y\":[\"Платформа\"],\"F4KRmY\":[\"$8/месяц\"],\"F4PLG4\":[\"Описание рабочего пространства обновлено\"],\"F6m23G\":[\"Загрузка файлов\"],\"F6pfE9\":[\"Активно\"],\"F8DaWi\":[\"Только просмотр\"],\"FEr96N\":[\"Тема\"],\"FdtSNC\":[\"Создать рабочее пространство\"],\"FmN5me\":[\"Решение\"],\"FmfJjN\":[\"Просматривайте и управляйте своими API-ключами.\"],\"Fpci8b\":[\"Вы уверены, что хотите удалить этот чек-лист?\"],\"G1Gw0v\":[\"Новый шаблон\"],\"GAD3Dx\":[\"Пользовательский домен\"],\"GDvlUT\":[\"Роль\"],\"GRAGsB\":[\"Ваше рабочее пространство\"],\"GYv20o\":[\"Не удалось обновить разрешения\"],\"GdWB+V\":[\"Вебхук успешно создан\"],\"GnRmu4\":[\"Название чек-листа\"],\"GnSSGm\":[\"Описание вашего рабочего пространства было обновлено.\"],\"GoDLB9\":[\"Ваш аккаунт был удалён.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Расширённая дорожная карта\"],\"Gxxi5J\":[\"Добавить чек-лист\"],\"H5G+qG\":[\"В чём разница между Kan и Trello?\"],\"HBI6nY\":[\"Нужна помощь?\"],\"HO+uOC\":[\"Сортировка\"],\"HQVm6e\":[\"Этот URL уже занят\"],\"HVIzNO\":[\"Может просматривать списки\"],\"HYV6Lq\":[\"Не удалось принять приглашение. Пожалуйста, попробуйте позже или обратитесь в службу поддержки.\"],\"HcT8J4\":[\"Ваш аккаунт GitHub был подключён.\"],\"HeFWjW\":[\"Дальнейшие шаги\"],\"Hf1cEZ\":[\"URL вебхука обязателен\"],\"Hg1qE9\":[\"Слаг вашего рабочего пространства был обновлён.\"],\"I+AROe\":[\"Можно редактировать карточки\"],\"I0gAKM\":[\"Не удалось обновить список\"],\"IDvohQ\":[\"отметил элемент контрольного списка как невыполненный\"],\"IFgUX6\":[\"Может удалять участников\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Перейти на Pro\"],\"Iqh0Uv\":[\"Запланировано\"],\"IqjpYe\":[\"Видимость email\"],\"IrZaAn\":[\"Пароль изменён\"],\"It4/FS\":[\"Восстановить доску из архива\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Продолжить с \"],\"J4+OTA\":[\"Переместить в список\"],\"J5nbej\":[\"Критично\"],\"J5pbP6\":[\"Можно редактировать роли и права участников\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JCdzgZ\":[\"Запрос функции\"],\"JUce1S\":[\"Исполнители\"],\"JbXXUW\":[\"Обратите внимание: это действие необратимо.\"],\"JcCDm9\":[\"Шаблон создан\"],\"Jgaz7E\":[\"Разрешения сброшены\"],\"JjEJSy\":[\"Настройте ваше рабочее пространство\"],\"JnWJXY\":[\"магическая ссылка\"],\"JxhWxU\":[\"в\"],\"JyXBgS\":[\"документация\"],\"K3iLeO\":[\"Посмотрите, что наши пользователи говорят о Kan\"],\"K7k9u3\":[\"Невозможно переместить карточку\"],\"KAsRdK\":[\"Перейти к участникам\"],\"KEim/+\":[\"удалено вложение\"],\"KFJgmZ\":[\"Отображаемое имя должно содержать не менее 3 символов\"],\"KLJ4eD\":[\"Ссылка-приглашение скопирована\"],\"KM6m8p\":[\"Команда\"],\"KNKCTb\":[\"Бэклог\"],\"Kec+/t\":[\"Расширенные настройки администратора\"],\"KiVc+q\":[\"Полная занятость\"],\"KuSt9W\":[\"Как развернуть самостоятельно?\"],\"L5WQLg\":[\"Требуется токен\"],\"L5ZPjz\":[\"обновил(а) элемент контрольного списка\"],\"LTGE7Y\":[\"Рабочее пространство успешно создано. Вы сможете обновить его позже в настройках.\"],\"LeM5RY\":[\"Не удалось сбросить переопределения\"],\"LoUCpj\":[\"Ошибка при обновлении названия рабочего пространства\"],\"LqWW5F\":[\"Ваше отображаемое имя обновлено.\"],\"LrcnbT\":[\"Разместите Kan на собственной инфраструктуре. Идеально для организаций, которым нужен полный контроль над своими данными.\"],\"Lt+ZP3\":[\"завершил(а) пункт контрольного списка\"],\"M9p3Vw\":[\"Неограниченный журнал активности\"],\"MCIXdZ\":[\"Подключите свой аккаунт GitHub, чтобы импортировать проекты.\"],\"MFKlMB\":[\"Пригласить\"],\"MHrjPM\":[\"Заголовок\"],\"MI5OBT\":[\"URL может содержать только буквы, цифры и дефисы\"],\"MK16u2\":[\"Нет дат\"],\"MKAScN\":[\"Может просматривать доски\"],\"MN6YzG\":[\"Слаг рабочего пространства обновлён\"],\"MWrbWq\":[\"Настройки | Аккаунт\"],\"MdN5zD\":[\"Вам нужно быть администратором, чтобы управлять правами доступа рабочего пространства.\"],\"MdwUGG\":[\"Экономьте время с шаблонами досок для повторного использования.\"],\"MeO/vH\":[\"Это приведёт к безвозвратному удалению всех данных, связанных с этим рабочим пространством.\"],\"MlyjJu\":[\"Отображаемое имя не может превышать 280 символов\"],\"MxQXhL\":[\"Не удалось создать рабочую область\"],\"N/bcWA\":[\"Вход | kan.bn\"],\"N3380t\":[\"Можно создавать доски\"],\"N7aud6\":[\"Интеллектуальный поиск\"],\"NH54UR\":[\"переименован пункт чек-листа в <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"Доска была архивирована.\"],\"NgaR6B\":[\"Введите пароль\"],\"NnH3pK\":[\"Тест\"],\"NoNwIX\":[\"Неактивен\"],\"NypLoL\":[\"переименован чек-лист\"],\"O0li0W\":[\"Введите текущий пароль и выберите новый надёжный пароль.\"],\"O1wAlQ\":[\"Гость\"],\"O3oNi5\":[\"Email\"],\"O83K21\":[\"добавлен элемент чек-листа\"],\"O9jVbx\":[\"Низкий приоритет\"],\"OAYToL\":[\"Это удалит все индивидуальные права участников в этом рабочем пространстве. Участники будут наследовать права только от своих ролей.\"],\"OIA0ad\":[\"Название рабочего пространства обновлено\"],\"OTxjpR\":[\"your-workspace\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Отключить GitHub\"],\"Oi+J+N\":[\"Выберите тариф, чтобы начать. Все платные тарифы включают 14-дневный бесплатный пробный период.\"],\"OkTY4+\":[\"Секретный ключ не может превышать 512 символов\"],\"Oo4E6p\":[\"Невозможно дублировать карточку\"],\"OpNhRn\":[\"Кредитная карта не требуется\"],\"OtjenF\":[\"Пожалуйста, введите корректный адрес электронной почты\"],\"OvoEq7\":[\"Участник\"],\"OwneeH\":[\"Пользовательское имя рабочего пространства\"],\"Ozt2vv\":[\"Ваш пароль был изменён.\"],\"P6dJdq\":[\"Переопределения сброшены\"],\"P8Cunr\":[\"Имя пользователя по умолчанию\"],\"PCIlOO\":[\"Добавить участника\"],\"PELbXB\":[\"Ваш аккаунт GitHub подключён.\"],\"PRjvDT\":[\"Вы уверены, что хотите удалить этот комментарий?\"],\"PRofO0\":[\"Редактировать видео на YouTube\"],\"PTzsxH\":[\"Видимость доски обновлена\"],\"PVT7q7\":[\"GitHub подключён\"],\"PZCqeW\":[\"Пожалуйста, попробуйте позже.\"],\"Pat4r8\":[\"Базовый роадмап\"],\"PpZkda\":[\"Функции\"],\"PyYD/v\":[\"назначено <0>\",[\"0\"],\" на карточку\"],\"Q60WUZ\":[\"Не удалось начать оформление заказа\"],\"Q9pQaX\":[\"Для этого рабочего пространства пока не найдено ролей.\"],\"QD8opX\":[\"Доска\"],\"QHhZeE\":[\"Шаблон успешно создан\"],\"QNtP5M\":[\"Использовать шаблон\"],\"Qh7QmR\":[\"Удалено из избранного\"],\"QnzD50\":[\"Локально\"],\"QtACvI\":[\"Создать метку\"],\"Qtzfdk\":[\"Тариф Pro ∞\"],\"R+w/Va\":[\"Выставление счетов\"],\"R1c3Mq\":[\"Требуется указать название доски\"],\"R275Pz\":[\"В вашем Pro-плане неограниченное количество мест. За новых участников дополнительная плата не взимается!\"],\"R3FsF4\":[\"Не удалось загрузить\"],\"R41XLH\":[\"Не удалось обновить вебхук\"],\"R6pB8R\":[\"Поставьте звезду на Github\"],\"RHZu7R\":[\"Любим командами по всему миру\"],\"RJA+sg\":[\"Новый тикет\"],\"RRn9jf\":[\"Перейдите по ссылке, которую мы отправили на \",[\"magicLinkRecipient\"],\", чтобы войти.\"],\"RSGOS1\":[\"Можно удалять списки\"],\"RfgJqw\":[\"обновил(а) срок выполнения\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Отправить отзыв\"],\"RtlIYB\":[\"Вы собираетесь изменить свой пароль.\"],\"RzxgOE\":[\"Роли и разрешения\"],\"SFnH1j\":[\"Зачем делать open source Trello?\"],\"SMaFdc\":[\"Отписаться\"],\"SNfg0e\":[\"Может просматривать рабочее пространство\"],\"SPLN9O\":[\"Владейте своими данными\"],\"SRvxId\":[\"Секретный ключ HMAC для проверки подписи\"],\"STSYcd\":[\"Можно удалять комментарии\"],\"SUXBxp\":[\"Разработка\"],\"SUvm1Y\":[\"Подходит для начинающих пользователей, которым нужны только базовые функции.\"],\"SWEskc\":[\"URL должен содержать не менее 3 символов\"],\"Sb2gYF\":[\"Новый список\"],\"ScJ9fj\":[\"Политика конфиденциальности\"],\"Se/UIp\":[\"К выполнению\"],\"SiPp29\":[\"Создать вебхук\"],\"SkCNhl\":[\"Поиск досок и карточек...\"],\"SlfejT\":[\"Ошибка\"],\"T/pF0Z\":[\"Удалить из избранного\"],\"T21jY/\":[\"добавлена метка на карточку\"],\"T7DJ2k\":[\"Не удалось добавить комментарий\"],\"T7LJic\":[\"переместил(а) карточку в другой список\"],\"T7Mywq\":[\"Не удалось обновить доску\"],\"TCOMOO\":[\"Изменить права доступа\"],\"TCt/8K\":[\"Ограниченный доступ к API\"],\"TFv5tM\":[\"Не удалось обновить роль\"],\"TH3Irz\":[\"Разрешение\"],\"TKFUnX\":[\"Аккаунт удалён\"],\"TX0bT7\":[\"Вебхуки не настроены. Добавьте вебхук для получения уведомлений.\"],\"TXO5TM\":[\"Горячие клавиши не зарегистрированы.\"],\"TYli1B\":[\"Можно редактировать комментарии\"],\"TbjyhA\":[\"Документация\"],\"TcXcmk\":[\"Code Review\"],\"TdfEV7\":[\"В архиве\"],\"TjREUS\":[\"Новый API-ключ\"],\"TmvrjU\":[\"URL доски должен содержать не менее 3 символов\"],\"TvY/XA\":[\"Документация\"],\"Tz0i8g\":[\"Настройки\"],\"TztLaN\":[\"Не удалось создать список\"],\"U2+rn0\":[\"Название вебхука обязательно\"],\"U3pytU\":[\"Админ\"],\"U5dMR6\":[\"Просмотреть рабочее пространство\"],\"UCLeG0\":[\"Условия использования\"],\"UGCIzB\":[\"Добавить / изменить метку\"],\"UQbwrz\":[\"Все системы работают нормально\"],\"URAE3q\":[\"Приостановлено\"],\"USVCGU\":[\"Ошибка при деактивации ссылки-приглашения\"],\"UbRKMZ\":[\"В ожидании\"],\"UbYdrA\":[\"Частота платежей\"],\"UeDFpo\":[\"Как финансируется проект?\"],\"UirJfL\":[\"Пользовательское SLA\"],\"UlhdTP\":[\"Рабочее пространство удалено\"],\"Un80BR\":[\"OSS Friends\"],\"UoSI+i\":[\"Лучше всего подходит для небольших и развивающихся команд, которым нужна совместная работа\"],\"UveK6V\":[\"Перейти в приложение\"],\"Uworke\":[\"Частичная занятость\"],\"UxKoFf\":[\"Навигация\"],\"V1KOLq\":[\"Уведомления по email о упоминаниях\"],\"V3MPSQ\":[\"обновил(а) заголовок\"],\"V8YWP3\":[\"Введите собственный заголовок\"],\"VHS0aJ\":[\"Очистить все пользовательские разрешения?\"],\"VKoDQD\":[\"Создать новый \",[\"0\"]],\"VUZDlr\":[\"Отзывы\"],\"VXk54Y\":[\"самостоятельно назначил(а) карточку\"],\"VbyRUy\":[\"Комментарии\"],\"VhMDMg\":[\"Сменить пароль\"],\"Vt50G1\":[\"Базовый канбан\"],\"W/Elkg\":[\"Средний приоритет\"],\"W/nQk1\":[\"Бесплатный тариф\"],\"W1ewR0\":[\"Не удалось скопировать ссылку\"],\"W5r8Qh\":[\"удалил(а) элемент чек-листа\"],\"W8oT+L\":[\"Не удалось получить информацию о видео\"],\"WHHLh9\":[\"Не удалось удалить вложение\"],\"WI4eGo\":[\"Как получить собственный URL?\"],\"WQPDcG\":[\"Не удалось обновить элемент контрольного списка\"],\"WRkpB1\":[\"Регистрация отключена\"],\"WRsbHO\":[\"Ваш аккаунт Trello подключён.\"],\"WYDptz\":[\"Требуется подписка\"],\"WYwN1G\":[\"Новый импорт\"],\"WbTDwg\":[\"В процессе\"],\"Weq9zb\":[\"Общее\"],\"WmPhYW\":[\"Произошла ошибка при отключении вашей учетной записи Trello.\"],\"WnEwDO\":[\"Уже есть аккаунт? <0><1>Войти\"],\"Ws+3X+\":[\"Неограниченное количество мест и расширенные функции для развивающихся команд.\"],\"Wy6pcF\":[\"Не удалось обновить видимость доски\"],\"X0N0PA\":[\" (отредактировано)\"],\"XDRXbZ\":[\"Описание рабочего пространства должно содержать не менее 3 символов\"],\"XEoGkQ\":[\"Перейти на главную\"],\"XILg0L\":[\"Недействительный адрес электронной почты\"],\"XJOV1Y\":[\"Активность\"],\"XNxYxq\":[\"Шаблоны досок\"],\"XTKtey\":[\"Создать список\"],\"XXbgHS\":[\"Принят на работу\"],\"XYLcNv\":[\"Поддержка\"],\"XicmhT\":[\"Срок выполнения\"],\"Xid3K6\":[\"URL доски может содержать только буквы, цифры и дефисы\"],\"Xjj/kS\":[\"Kanban по-новому\"],\"XpcjLO\":[\"Не удалось обновить URL доски\"],\"Y8yzGg\":[\"Начните бесплатно. Переходите на новый тариф по мере роста команды. Без скрытых платежей и контрактов.\"],\"YBBifR\":[\"Отключить Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Не удалось изменить порядок элемента контрольного списка\"],\"YRk79X\":[\"Расширенная безопасность, соответствие требованиям и выделенная поддержка для крупных организаций.\"],\"YVT40D\":[\"удалена метка <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Ошибка при обновлении подписки\"],\"YcyP2z\":[\"Не удалось создать шаблон\"],\"Yf9FAx\":[\"Они не смогут получить доступ к этому рабочему пространству.\"],\"YhvWXb\":[\"Аналитика доски\"],\"YirHq7\":[\"Обратная связь\"],\"YkfDoz\":[\"Ежегодно\"],\"YoyKbT\":[\"Этот API-ключ будет показан только один раз. Пожалуйста, сохраните его в надёжном месте.\"],\"Ypy5pZ\":[\"Вы уверены, что хотите удалить вебхук \\\"\",[\"webhookName\"],\"\\\"? Это действие невозможно отменить.\"],\"YtUfwW\":[\"Не удалось войти через \",[\"0\"],\". Пожалуйста, попробуйте ещё раз.\"],\"Yx0Ud8\":[\"Запрошено\"],\"Z3FXyt\":[\"Загрузка...\"],\"Z3krJD\":[\"Разрешить участникам рабочего пространства видеть электронные адреса друг друга\"],\"Z6r9z1\":[\"Не удалось удалить карточку\"],\"ZAs2NN\":[\"Все функции Pro +\"],\"ZDGm40\":[\"Удалить аккаунт\"],\"ZDIydz\":[\"Начать\"],\"ZDPJBc\":[\"Для пользовательских имен пользователей требуется обновление до тарифа Pro\"],\"ZDo4HN\":[\"Мозговой штурм\"],\"ZH7TVS\":[\"Название карточки\"],\"ZL1A+p\":[\"Не удалось загрузить вложение. Пожалуйста, попробуйте ещё раз.\"],\"ZT4Khw\":[\"Вы уверены, что хотите удалить эту карточку?\"],\"ZU5IYI\":[\"Неограниченное количество досок, списков и карточек. Кредитная карта не требуется.\"],\"ZXSPJt\":[\"Произошла непредвиденная ошибка. Пожалуйста, попробуйте позже.\"],\"ZqDqbi\":[\"Быстро организуйте и находите карточки с помощью мощных инструментов фильтрации.\"],\"Zz1qkk\":[\"Неограниченное количество карточек\"],\"a3LDKx\":[\"Безопасность\"],\"aHCEmh\":[\"Цены\"],\"aHRWVI\":[\"удалена дата выполнения\"],\"aJ4pMe\":[\"Часто задаваемые вопросы\"],\"aKJHG+\":[\"Архивировать доску\"],\"aW3TOw\":[\"Уведомления по email\"],\"aWDhU5\":[\"Kanban эффективнее в команде. Идеально для небольших и растущих команд, стремящихся к совместной работе.\"],\"aWlSc/\":[\"Создать новый список\"],\"abUZlY\":[\"Добавить детали...\"],\"aelko+\":[\"Вы можете получить собственный URL рабочего пространства, например <0>kan.bn/kan, перейдя в <1>настройки рабочего пространства и оформив подписку на pro-версию. Все подписки помогают финансировать развитие проекта!\"],\"agPptk\":[\"Средний\"],\"aiHZVP\":[\"Посмотреть документацию\"],\"b/LfJo\":[\"email\"],\"b3Thhd\":[\"Ошибка загрузки\"],\"b5FKyH\":[\"добавлена метка <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Создать \",[\"0\"]],\"bD8I7O\":[\"Завершить\"],\"bDI6VI\":[[\"0\"],\" удалён из избранного.\"],\"bFREhu\":[\"Конец списка\"],\"bJZm1W\":[\"Кандидаты\"],\"bJtM0P\":[\"Этот URL рабочей области зарезервирован\"],\"bKzM8L\":[\"Выделенный менеджер аккаунта\"],\"bZSICm\":[\"Не удалось добавить элемент контрольного списка\"],\"bcIybO\":[\"Требуется указать название рабочего пространства\"],\"bdztP2\":[\"Исследование\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"Роль участника была обновлена.\"],\"bff61F\":[\"Тариф для команды\"],\"bfgr/e\":[\"Вопрос\"],\"bmXKoX\":[\"добавлено \",[\"0\"],\" меток: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Ошибка при удалении аккаунта\"],\"c/IAuR\":[\"Важно\"],\"c3b0B0\":[\"Начать\"],\"c4nMcR\":[\"Ваш аватар\"],\"c9AJhn\":[\"Присоединиться к рабочему пространству\"],\"cAgBMh\":[\"Полный контроль и владение:\"],\"cFQEU/\":[\"Открыть горячие клавиши\"],\"cOh+MI\":[\"Скрининг\"],\"cWXW+7\":[\"Добавить вебхук\"],\"cWcxrL\":[\"Новый чек-лист\"],\"cWtfn1\":[\"Перейти на Pro (29\xA0$/месяц)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Описание рабочего пространства\"],\"cji2nM\":[\"Ошибка при создании ссылки-приглашения\"],\"cnGeoo\":[\"Удалить\"],\"cp1rsD\":[\"Деактивировать ссылку-приглашение\"],\"csFbe+\":[\"Перейти к шаблонам\"],\"curoK5\":[\"Новый рабочий пространство\"],\"d+F6q9\":[\"Создан\"],\"d33Usy\":[\"Создать чек-лист\"],\"dEgA5A\":[\"Отмена\"],\"dUh9QW\":[\"Планирование\"],\"ddrz1m\":[\"Просрочено\"],\"delOXn\":[\"Не удалось обновить метки\"],\"dgr4Kq\":[\"Редактировать метку\"],\"dmKdk0\":[\"После удаления рабочего пространства возврата не будет. Это действие необратимо.\"],\"dsLT3m\":[\"Создать карточку\"],\"dtQIWT\":[\"Сотрудничество\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Этот URL рабочего пространства уже занят\"],\"e1v+J3\":[\"Секретный ключ (необязательно)\"],\"e4hPSt\":[\"Сбросить к настройкам роли по умолчанию\"],\"eEQyz+\":[\"Отслеживайте все изменения карточек с подробной историей активности.\"],\"ePK91l\":[\"Редактировать\"],\"eZCGbT\":[\"Да, мы предлагаем бессрочный бесплатный тариф для индивидуального использования. Без ограничений, без платных функций, без лимитов.\"],\"edWbV6\":[\"Ссылка скопирована\"],\"ekCRTP\":[\"Отклонено\"],\"en3oy5\":[\"Функция\"],\"euc6Ns\":[\"Дублировать\"],\"eus61c\":[\"Отправить тест\"],\"evg7+A\":[\"Ваши доски были импортированы.\"],\"evj0lK\":[\"У вас есть бесплатный тариф?\"],\"f8fH8W\":[\"Дизайн\"],\"f8lDFq\":[\"создал(а) карточку\"],\"fDQ7hA\":[\"Копировать метки\"],\"fEY2vP\":[\"Карточка не найдена\"],\"fQCrjt\":[\"Видимость вашей доски установлена на \",[\"0\"],\".\"],\"fR9laE\":[\"Введите текущий пароль\"],\"fSf2ee\":[\"Посмотреть наш роадмап\"],\"fW5sSv\":[\"Редактировать вебхук\"],\"fYVH36\":[\"Не удалось обновить комментарий\"],\"fcWrnU\":[\"Выйти\"],\"fuwKpE\":[\"Пожалуйста, попробуйте ещё раз.\"],\"fvLNDy\":[\"Списки ещё не созданы\"],\"fzGyWs\":[\"Изменить размер шрифта приложения.\"],\"fziA2d\":[\"Неограниченное количество комментариев\"],\"g2xBxu\":[\"Импортировать ваши доски Trello в Kan очень просто. Следуйте нашему пошаговому руководству <0>здесь.\"],\"g9NChz\":[\"Менеджер аккаунта\"],\"gGx5tM\":[\"Редактирование\"],\"gKmoow\":[\"Этот URL зарезервирован\"],\"gL/7jw\":[\"Добавить описание... (введите '/' для открытия команд или '@' для упоминания)\"],\"gQ/02p\":[\"Ошибка при отключении GitHub\"],\"gUX7b+\":[\"Open source <0/> альтернатива Trello\"],\"gZxH/p\":[\"изменил(а) срок выполнения на <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"Название рабочего пространства не может превышать 64 символа\"],\"gkxGkF\":[\"14 дней бесплатно · Сменить тариф или отменить в любой момент\"],\"gkzAEM\":[\"Продолжить с \",[\"0\"]],\"goklcJ\":[\"Собеседование\"],\"gpfJ3v\":[\"Бесплатно, навсегда\"],\"gukxZ5\":[\"Онбординг\"],\"gv5kbo\":[\"URL доски не может превышать 60 символов\"],\"h16FyT\":[\"Списки\"],\"h2FKMV\":[\"У вас нет прав доступа\"],\"h2ztFt\":[\"Все функции Free +\"],\"h4VV67\":[\"добавлен чек-лист\"],\"h7MgpO\":[\"Горячие клавиши\"],\"h8DugX\":[\"Метки\"],\"hAMddS\":[\"Пользователь удалил себя из карточки\"],\"hB02vO\":[\"Управление участниками\"],\"hXMFoN\":[\"Нет списков\"],\"hYzsXr\":[\"Настройки | Интеграции\"],\"hty0d5\":[\"Понедельник\"],\"i0ZMQl\":[\"Доска архивирована\"],\"i30J2U\":[\"Проекты не найдены\"],\"i5rE2/\":[\"URL не может превышать 64 символа\"],\"iH8pgl\":[\"Назад\"],\"iHcdea\":[\"Срок — на следующей неделе\"],\"iLbjv+\":[\"Можно редактировать рабочее пространство\"],\"iQmbPb\":[\"Лицензия\"],\"iSLIjg\":[\"Подключить\"],\"iTylMl\":[\"Шаблоны\"],\"iVIGZb\":[\"Вложение загружено\"],\"isRobC\":[\"Новый\"],\"itgYbC\":[\"Тестовый вебхук успешно отправлен!\"],\"iwr7AP\":[\"Идеи\"],\"iy1wb+\":[\"Настройки | API\"],\"j0o6ml\":[\"Описание вашего рабочего пространства\"],\"j1+HPc\":[\"Произошла ошибка при подключении вашего аккаунта GitHub.\"],\"j2+d/o\":[\"Справочник по API\"],\"j9IZZ0\":[\"Пользовательский URL рабочего пространства\"],\"jDRt4n\":[\"Вы хотите отписаться?\"],\"jEw0Mr\":[\"Пожалуйста, введите корректный URL\"],\"jIuWsV\":[\"Название вебхука не может превышать 255 символов\"],\"jL82rC\":[\"Очистить пользовательские разрешения\"],\"jNuzV/\":[\"Можно удалять карточки\"],\"jQ6I8X\":[\"Роль обновлена\"],\"jZBHkN\":[\"Название рабочего пространства должно содержать не менее 3 символов\"],\"jfC/xh\":[\"Контакты\"],\"jl3aEJ\":[\"отметил элемент контрольного списка <0>\",[\"0\"],\" как невыполненный\"],\"jlB2RY\":[\"Введённый вами текущий пароль неверен.\"],\"jwI32v\":[\"Доска не найдена\"],\"k7rCa/\":[\"Крупный\"],\"kECVpo\":[\"Вы уверены, что хотите удалить эту метку?\"],\"kQwvU8\":[\"удалена метка с карточки\"],\"kSxwQL\":[\"Вы можете пригласить участников команды, нажав кнопку «Пригласить» в правом верхнем углу <0>страницы участников и введя их адрес электронной почты. Они получат письмо со ссылкой для присоединения к рабочему пространству.\"],\"kYu0eF\":[\"Удалить рабочее пространство\"],\"kfOGMr\":[\"Быстрая победа\"],\"klpSmb\":[\"Изменить URL рабочего пространства\"],\"kp6L3T\":[\"Это имя пользователя рабочей области уже занято\"],\"kryGs+\":[\"Карточка\"],\"kuoc68\":[\"$10/месяц\"],\"kxEs5t\":[\"Импорт из Trello\"],\"l2PIAy\":[\"Самостоятельный хостинг с Github\"],\"l31EoQ\":[\"Найдите ответы на часто задаваемые вопросы о Kan. Не нашли то, что искали? Не стесняйтесь <0>связаться с нами.\"],\"l3s5ri\":[\"Импорт\"],\"l4asa1\":[\"Эта доска приватная или не существует\"],\"lGjicL\":[\", или смотрите нашу\"],\"lKAvEd\":[\"Ошибка при отключении Trello\"],\"lXvXNI\":[\"Не удалось скопировать ссылку-приглашение\"],\"lYT7pQ\":[\"Удалить список\"],\"lkz85l\":[\"Главное отличие Kan от Trello в том, что Kan — это open source, и любой может просматривать, изменять и вносить вклад в наш код. В нашем облачном сервисе также нет ограничений по функциям для индивидуального использования, в то время как Trello блокирует базовые возможности, такие как количество досок, за платным доступом.\"],\"lo8xBK\":[\"Вы уверены, что хотите удалить \",[\"entityLabel\"],\"?\"],\"lpIMne\":[\"Пароли не совпадают\"],\"lsgnzd\":[\"Ошибка при переходе на Pro\"],\"lyqwgn\":[\"Добавить метку\"],\"m2nk0i\":[\"Простые тарифы\"],\"mErq7F\":[\"Зарегистрироваться\"],\"mHhffx\":[\"Не удалось создать контрольный список\"],\"mTGd3+\":[\"удалил(а) чек-лист\"],\"mTwGOf\":[\"Эта ссылка-приглашение недействительна или истекла.\"],\"mU+M00\":[[\"0\"],\" добавлен в избранное.\"],\"mVZH9V\":[\"Когда Trello появился в 2011 году, он поразил всех своей продуманной простотой, но со временем утратил свою магию и стал чем-то вроде \\\"Jira Lite\\\". Этот проект — наша попытка вернуть ту самую магию простоты Trello, но в формате open source.\"],\"mZGPxt\":[\"Ссылка-приглашение скопирована в буфер обмена\"],\"mchgzf\":[\"Вы успешно зарегистрировались.\"],\"mgXgHu\":[\"Перейти к доскам\"],\"mrhyIB\":[\"Идеально для небольших и развивающихся команд, которые хотят сотрудничать.\"],\"mwBdZ2\":[\"Это приведёт к безвозвратному удалению всех данных, связанных с вашим аккаунтом.\"],\"mx8+1u\":[\"Неограниченное количество участников\"],\"n+xLOH\":[\"Служба поддержки клиентов\"],\"n1GRql\":[\"Новая метка\"],\"n1ekoW\":[\"Войти\"],\"n6EWYz\":[\"Используется для подписи данных вебхука для проверки. Оставьте пустым, чтобы сохранить существующий секретный ключ.\"],\"n9V+ps\":[\"Введите имя\"],\"nKBUeF\":[\"Карточка была продублирована.\"],\"nOhz3x\":[\"Выйти\"],\"nYNMZZ\":[\"Позиция в списке (0 = первая, оставьте пустым для конца)\"],\"nabda1\":[\"Удалить карточку\"],\"nbfdhU\":[\"Интеграции\"],\"ngBZOd\":[\"Добавить комментарий... (введите '/' для открытия команд или '@' для упоминания)\"],\"nhMhRr\":[\"Спасибо за ваш отзыв!\"],\"njJFtc\":[\"Удалить комментарий\"],\"nk7caK\":[\"Подключить Trello\"],\"nol/Fb\":[\"Как пригласить участников команды?\"],\"notwF1\":[\"Имя шаблона не может превышать 100 символов\"],\"nq7q3Z\":[\"Имя ключа API не может превышать 30 символов\"],\"nqdIhs\":[\"Пользовательские шаблоны досок\"],\"nryrgW\":[\"Все индивидуальные разрешения участников были сброшены к значениям по умолчанию для их ролей.\"],\"o+JCfN\":[\"Нам доверяют быстроразвивающиеся команды<0/>по всему миру\"],\"o4e/70\":[\"Выберите хотя бы одно событие\"],\"o4sQAg\":[\"Не удалось создать вебхук\"],\"o7J4JM\":[\"Фильтр\"],\"o8adVG\":[\"Загрузка файлов до 10 МБ\"],\"o9WLwO\":[\"Не удалось обновить карточку\"],\"oVBq1w\":[\"за пользователя/месяц\"],\"oW13KZ\":[\"Начните бесплатно уже сегодня\"],\"odFCYX\":[\"Недействительное приглашение\"],\"okpxfB\":[\"Создать новый ключ\"],\"oyRjD/\":[\"Тариф Pro\"],\"p/hk9N\":[\"Вы успешно вошли в систему.\"],\"pBsoKL\":[\"Добавить в избранное\"],\"pFGfsR\":[\"Ознакомьтесь с нашими любимыми open source проектами.\"],\"pFKC6A\":[\"Имя ключа API\"],\"pL78ec\":[\"Добавлено в избранное\"],\"pVctI7\":[\"Вариант локального развертывания\"],\"pXVFJy\":[\"Можно удалять доски\"],\"pa9o5D\":[\"Обрежьте свой аватар\"],\"pfa8F0\":[\"Отображаемое имя\"],\"pmUArF\":[\"Рабочее пространство\"],\"pnrmSP\":[\"Новая карточка\"],\"ppaRWv\":[\"Самостоятельный хостинг\"],\"pvnfJD\":[\"Тёмная тема\"],\"q+lt9D\":[\"Ошибка при удалении метки\"],\"q3il6U\":[\"Размер шрифта\"],\"qPP4lD\":[\"Приглашение участников доступно только на тарифе Team. Вы будете перенаправлены для обновления рабочего пространства.\"],\"qQXocp\":[\"Может управлять настройками рабочего пространства\"],\"qaS+1/\":[\"Лучше всего подходит для команд, которые хотят масштабироваться без ограничений\"],\"qfUS/w\":[\"Друзья Open Source\"],\"qkjvgj\":[\"Ваше рабочее пространство было удалено.\"],\"qlAIQ1\":[\"Удалённо\"],\"qtE5nt\":[\"Добавить элемент...\"],\"qzdST2\":[\"Видимость доски\"],\"r6BgwX\":[\"Для входа требуется пароль.\"],\"rD6UIt\":[\"Начать в облаке\"],\"rF8SEQ\":[\"Редактировать комментарий\"],\"rQRXo8\":[\"Введите новый секретный ключ для обновления\"],\"rQXTmd\":[\"URL карточки скопирован в буфер обмена\"],\"rRM7r0\":[\"Импортируйте свои доски Trello и сразу приступайте к работе.\"],\"rYUZIe\":[\"Выбрать источник\"],\"raHesj\":[\"Вы отписались!\"],\"rarRW/\":[\"Ошибка при приглашении участника\"],\"ri1hHe\":[\"Срок — в следующем месяце\"],\"rmN315\":[\"Весело\"],\"rs7L54\":[\"добавлен участник в карточку\"],\"rtbVvN\":[\"Можно редактировать списки\"],\"s+MGs7\":[\"Ресурсы\"],\"s6iE/c\":[\"Регистрация сейчас недоступна. Пожалуйста, попробуйте позже.\"],\"sBhOFG\":[\"Простое и наглядное управление задачами, которое действительно работает. Перетаскивайте карточки, работайте с командой и достигайте большего.\"],\"sDLCvT\":[\"Подключите любимые инструменты, чтобы упростить рабочий процесс.\"],\"sDuhfK\":[\"Стартовое предложение: неограниченное количество мест всего за $29 в месяц с Pro\"],\"sU2uWc\":[\"Карточка продублирована\"],\"sUZo7y\":[\"Регистрация | kan.bn\"],\"sVBn4K\":[\"Ошибка при обновлении отображаемого имени\"],\"sY2lzr\":[\"Для этого вложения нет доступной ссылки для скачивания.\"],\"sbNNyi\":[\"Новый вебхук\"],\"snMaH4\":[\"Удалить вебхук\"],\"t+R8+P\":[\"Выполнение\"],\"t/YqKh\":[\"Удалить\"],\"t0dTPm\":[\"Настройте вебхуки для получения уведомлений при создании, обновлении, перемещении или удалении карточек.\"],\"t2nDzl\":[\"Просматривайте и управляйте своими платежами и подпиской.\"],\"t6FvJH\":[\"Можно добавлять комментарии\"],\"tGwwnq\":[\"обновил(а) описание\"],\"tHcbLF\":[\"Можно редактировать доски\"],\"tIdipJ\":[\"Изменить URL доски\"],\"tMYIu7\":[\"Журналы активности\"],\"tOZp9v\":[\"Настраиваемые роли и права пользователей\"],\"tTbref\":[\"Для регистрации требуется пароль.\"],\"tYN21H\":[\"Пользователь уже является участником этого рабочего пространства\"],\"tbNcu4\":[\"Доска восстановлена из архива\"],\"tca56/\":[\"Ваш файл был успешно загружен.\"],\"tfDRzk\":[\"Сохранить\"],\"tlhgDC\":[\"Нет архивированных досок\"],\"tmlJN1\":[\"Пожалуйста, введите корректную ссылку на YouTube\"],\"tmpW+w\":[\"Удалить доску\"],\"tst44n\":[\"События\"],\"tyHiOa\":[\"Пожалуйста, попробуйте позже или обратитесь в службу поддержки.\"],\"u2+JIh\":[\"Для пользовательских URL требуется переход на тариф Pro\"],\"u8JHrO\":[\"Сбросить фильтры\"],\"uAQUqI\":[\"Статус\"],\"uEGGDs\":[\"Мой вебхук\"],\"uOqaMC\":[\"Вас пригласили присоединиться к рабочему пространству.\"],\"uP4V6I\":[\"Бесплатно для всех\"],\"uXGLuq\":[\"Создать API-ключ\"],\"uZg2+w\":[\"Улучшите свой workspace всего за $29 в месяц. Вы получите:\"],\"uck1tz\":[\"удалён участник из карточки\"],\"usVytm\":[\"После удаления аккаунта возврата не будет. Это действие необратимо.\"],\"uvH2xS\":[\"Копировать участников\"],\"v+Wp++\":[\"Открытый исходный код\"],\"v1kQyJ\":[\"Вебхуки\"],\"v3YoMA\":[\"Старший\"],\"vAR/I8\":[\"Запустить на собственной инфраструктуре\"],\"vAj6xG\":[\"Вы можете развернуть сервис самостоятельно, следуя инструкциям в нашем <0>репозитории.\"],\"vSJd18\":[\"Видео\"],\"vUr5JT\":[\"Нет аккаунта? <0><1>Зарегистрируйтесь\"],\"vXIe7J\":[\"Язык\"],\"vXemf6\":[\"Баг\"],\"va/3u1\":[\"Управляйте тем, кто может просматривать и редактировать ваши доски.\"],\"vbskQn\":[\"Требуется имя ключа API\"],\"veIDCY\":[\"Начните 14-дневный бесплатный пробный период\"],\"vfRdCZ\":[\"Не удалось сбросить разрешения\"],\"vgdzLf\":[\"Создать ещё одну\"],\"vifyyw\":[\"Юридическая информация\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"Права этого участника были сброшены до значений по умолчанию для его роли.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"ежемесячная оплата\"],\"vo2a+a\":[\"Маркетинг\"],\"vuxdLS\":[\"Долгосрочный\"],\"vwGkYB\":[\"Пароль должен содержать не менее 8 символов\"],\"wIb7Ng\":[\"Разработка ПО\"],\"wK4OTM\":[\"Название (необязательно)\"],\"wM8xd8\":[\"Джуниор\"],\"wPZBpR\":[\"Пожалуйста, выберите файл для загрузки.\"],\"wY+6Ye\":[\"Этот URL доски уже занят\"],\"wakO3W\":[\"добавлен чек-лист <0>\",[\"0\"],\"\"],\"wewm3j\":[\"Название доски не может превышать 100 символов\"],\"wgNoIs\":[\"Выбрать всё\"],\"wlQNTg\":[\"Участники\"],\"wqkcin\":[\"Может просматривать комментарии\"],\"wqxglO\":[\"Обучение\"],\"wruKPE\":[\"Поддержите развитие проекта\"],\"wsy94z\":[\"Лучше всего подходит для крупных организаций с расширенными потребностями\"],\"wtxjAY\":[\"Участники рабочего пространства\"],\"x0kMO/\":[\"Ошибка при обновлении URL рабочего пространства\"],\"x8GeCD\":[\"Отображаемое имя обновлено\"],\"xEbBrW\":[\"Какую лицензию вы используете?\"],\"xGVfLh\":[\"Продолжить\"],\"xLTZVf\":[\"День начала недели\"],\"xMn+V9\":[\"Импорт из Trello\"],\"xRPn3U\":[\"Введите адрес электронной почты\"],\"xvcYhz\":[\"Очистить все индивидуальные разрешения участников, чтобы все участники наследовали только разрешения по умолчанию для своей роли.\"],\"y3aU20\":[\"Сохранить изменения\"],\"yD3ZSw\":[\"Измените языковые настройки.\"],\"yV7o5I\":[\"Как импортировать мои доски Trello?\"],\"yb/fjw\":[\"Одобрение\"],\"yhLUU8\":[\"Ошибка подключения GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Импортировать проект (1)\"],\"few\":[\"Импортировать проекта (\",[\"projectCount\"],\")\"],\"many\":[\"Импортировать проектов (\",[\"projectCount\"],\")\"],\"other\":[\"Импортировать проекта (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Закрыть\"],\"zC8Whw\":[\"Начните с создания нового списка\"],\"zERArS\":[\"обновил(а) заголовок на <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Создать пригласительную ссылку\"],\"zMlxCA\":[\"1 пользователь\"],\"zMquA7\":[\"Выберите тариф\"],\"zQPhSa\":[\"Преобразовать в ссылку\"],\"zQX5Dj\":[\"Название списка\"],\"zYRVNp\":[\"Выберите список\"],\"zkWmBh\":[\"Ежегодно\"],\"zl1b97\":[\"Не удалось создать карточку\"],\"zoEbXq\":[\"Может просматривать карточки\"],\"zt/6cS\":[\"Идеально для небольших команд, которые хотят сотрудничать и работать быстрее вместе.\"],\"zto8aj\":[\"Trello отключён\"],\"zwBp5t\":[\"Приватно\"],\"zwTiVn\":[\"удалено вложение <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Узнать больше\"],\"zxKs+y\":[\"Срок — завтра\"],\"zzDlyQ\":[\"Успех\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Социальные сети\"],\"+3TYXa\":[\"Для долгосрочной устойчивости мы понимаем, что всем хорошим open source-проектам необходим источник дохода. Наш — это платное облачное решение для рабочих пространств с несколькими пользователями и для индивидуальных адресов рабочих пространств. Нет обязательства использовать его — вы можете развернуть ПО на своей инфраструктуре бесплатно.\"],\"+5kO8P\":[\"Суббота\"],\"+8Nek/\":[\"Ежемесячно\"],\"+EkBs0\":[\"Не удалось обновить ваши настройки. Пожалуйста, попробуйте ещё раз.\"],\"+MdEsf\":[\"Требуется новый пароль\"],\"+OhFss\":[\"Начните бесплатно, без ограничений по использованию. Для совместной работы выберите тариф, подходящий по размеру вашей команды.\"],\"+VoTOr\":[\"оплата ежемесячно\"],\"+djOzj\":[\"Пригласить участника\"],\"+h2faV\":[\"Настройки | Вебхуки\"],\"+jbXzb\":[\"Ваши проекты были импортированы.\"],\"+nvZ6j\":[\"Метки и фильтры\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Шаблон\"],\"/asTmx\":[\"Отчёт о баге\"],\"/bBVaD\":[\"GitHub отключён\"],\"/bZzdR\":[\"Упоминания\"],\"/f3t6v\":[\"Настройте, какие действия разрешены для каждой роли в рабочем пространстве. Эти права применяются ко всем участникам с этой ролью.\"],\"/gaSVU\":[\"Дорожная карта\"],\"/glL9Q\":[\"Нет \",[\"0\"]],\"/jd3aj\":[\"Расширенные роли администратора\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"Мощное и гибкое kanban-приложение, которое помогает организовать работу, отслеживать прогресс и достигать результатов — всё в одном месте.\"],\"/tOdd2\":[\"Ваше изображение профиля было обновлено.\"],\"0+0/3e\":[\"Создать новую метку\"],\"0+ewPp\":[\"Улучшение\"],\"02i3WU\":[\"Импорт\"],\"06EQqT\":[\"Дублирование…\"],\"09Tv5j\":[\"Reconnecting…\"],\"0AfkMq\":[\"Your role changed in\"],\"0KjpAr\":[\"Может просматривать участников\"],\"0RE1AJ\":[\"Здесь будут отображаться архивированные вами доски.\"],\"0StR7t\":[\"Введите новый пароль\"],\"0jV46i\":[\"Не удалось удалить элемент контрольного списка\"],\"0qyZ4b\":[\"Загрузка разрешений...\"],\"0rPv1T\":[\"Изображение профиля обновлено\"],\"0utuU6\":[\"Копировать чек-листы\"],\"0xD8Of\":[\"Страница, которую вы ищете, не существует или была перемещена.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Импортировать доску (1)\"],\"few\":[\"Импортировать доски (\",[\"boardCount\"],\")\"],\"many\":[\"Импортировать досок (\",[\"boardCount\"],\")\"],\"other\":[\"Импортировать доски (\",[\"boardCount\"],\")\"]}]],\"11dHnN\":[\"You were removed from\"],\"14Xi3Z\":[\"Добавление нового участника будет стоить дополнительно \",[\"price\"],\" (\",[\"billingType\"],\") за место.\"],\"1H5u1m\":[\"Вопросы?\"],\"1WuwiM\":[\"Перейти к настройкам\"],\"1bJKhj\":[\"Копировать ссылку на карточку\"],\"1hzdxO\":[\"Права доступа рабочего пространства\"],\"1iShX0\":[\"Срок — сегодня\"],\"1njn7W\":[\"Светлая тема\"],\"1rVAfU\":[\"Загрузить ещё действия\"],\"1rWxEw\":[\"Ожидание клиента\"],\"1sRmLC\":[\"Обсуждайте и сотрудничайте по карточкам.\"],\"1wCGT0\":[\"Неограниченное количество досок\"],\"25fAUC\":[\"В вашей ссылке для отписки отсутствует токен. Пожалуйста, откройте последнее письмо и попробуйте снова.\"],\"25mvI+\":[\"Ссылки-приглашения доступны только с подпиской Team или Pro. Пожалуйста, обновите тариф вашего рабочего пространства.\"],\"29sSki\":[\"завершён пункт контрольного списка <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"Список\"],\"2Bu8xj\":[\"Доски не найдены\"],\"2M84k3\":[\"Пользовательские разрешения\"],\"2MPcep\":[\"Импорт завершён\"],\"2POOFK\":[\"Бесплатно\"],\"2Py5S/\":[\"Я подтверждаю, что все данные рабочего пространства будут безвозвратно удалены, и хочу продолжить.\"],\"2Q871c\":[\"Не удалось добавить метку\"],\"2QGEbi\":[\"Не удалось удалить комментарий\"],\"2SePRT\":[\"Вас пригласили присоединиться к рабочему пространству на kan.bn.\"],\"2X4ecw\":[\"Вебхук успешно удалён\"],\"2h4PVB\":[\"Название вашего рабочего пространства было обновлено.\"],\"2liqDZ\":[\"Я подтверждаю, что все данные моего аккаунта будут безвозвратно удалены, и хочу продолжить.\"],\"2q/Q7x\":[\"Видимость\"],\"2roTVj\":[\"Отзыв отправлен\"],\"3LDCpD\":[\"Это действие нельзя отменить.\"],\"3WXdoZ\":[\"Вы всегда можете изменить это позже в настройках.\"],\"3ZjRJY\":[\"переименован чек-лист <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Любой, у кого есть эта ссылка, может присоединиться к вашему рабочему пространству\"],\"3d54Wj\":[\"Вебхук успешно обновлён\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Подключить GitHub\"],\"3pIq39\":[\"Роли администратора\"],\"4630Pc\":[\"Card updated\"],\"479pdJ\":[\"Подтвердите новый пароль\"],\"4DOCMI\":[\"YouTube URL\"],\"4Revpc\":[\"Мелкий\"],\"4RoY9J\":[\"Блог-пост\"],\"4XF0BB\":[\"Фото профиля\"],\"4gAX8s\":[\"Переключить меню\"],\"4kJRen\":[\"Письмо\"],\"4obmDr\":[\"404 - Страница не найдена | kan.bn\"],\"4sxGcV\":[\"You were assigned to a card\"],\"51UCsN\":[\"Переместить в другой список\"],\"53QYh8\":[\"Не удалось создать доску\"],\"55xJ/O\":[\"Ошибка при смене пароля\"],\"58AiWX\":[\"Пожалуйста, подтвердите новый пароль\"],\"5ACX4z\":[\"Рассылка\"],\"5IXWmO\":[\"Проверьте свой почтовый ящик\"],\"5P4rhH\":[\"Не удалось обновить участников\"],\"5RkSzq\":[\"Скопировать ссылку на доску\"],\"5eZwRW\":[\"Подключите ваш аккаунт Trello для импорта досок.\"],\"5h8ooz\":[\"Ключи API\"],\"5iplxh\":[\"Новый пароль должен отличаться от текущего\"],\"5k0NLb\":[\"Рецензия\"],\"5lWFkC\":[\"Войти\"],\"5ntVtp\":[\"Не удалось протестировать вебхук\"],\"5y6qY8\":[\"добавлено вложение\"],\"69b7aE\":[\"Открыть командное меню\"],\"6EWT6T\":[\"Набор персонала\"],\"6FDocz\":[\"Зарегистрироваться через \"],\"6FsGbN\":[\"Начните с создания нового \",[\"0\"]],\"6OTo9n\":[\"Необходимо указать имя шаблона\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"Новый \",[\"0\"]],\"6YtxFj\":[\"Имя\"],\"6mbe4b\":[\"Индивидуальные участники\"],\"6sKjjx\":[\"Индивидуальный\"],\"6tDFBe\":[\"Права участника были обновлены.\"],\"6uBU1F\":[\"Полный доступ к API\"],\"6zeSBB\":[\"Можно создавать карточки\"],\"74F7N/\":[\"Вы уверены, что хотите удалить свой аккаунт?\"],\"7EhE4k\":[\"Обновить метку\"],\"7L01XJ\":[\"Действия\"],\"7PzzBU\":[\"Пользователь\"],\"7Qqqyu\":[\"New comment on\"],\"7RpHg/\":[\"Пользовательское имя\"],\"7Ufoyg\":[\"Неограниченное количество списков\"],\"7aONWr\":[\"URL не может превышать 2048 символов\"],\"7b2yuC\":[\"Пожалуйста, введите корректный пароль\"],\"7d1a0d\":[\"Публично\"],\"7eMo+U\":[\"На главную\"],\"7hktsm\":[\"Начало работы\"],\"7i8j3G\":[\"Компания\"],\"8+BY11\":[\"URL доски скопирован в буфер обмена\"],\"86FLn5\":[\"Неограниченное количество загрузок файлов\"],\"86XI28\":[\"Подтвердите ваши настройки электронной почты:\"],\"8AbRER\":[\"Установить срок\"],\"8AwlaR\":[\"Неограниченное количество участников и персональное имя рабочего пространства для команд, готовых к масштабированию.\"],\"8F1i42\":[\"Страница не найдена\"],\"8Is1ih\":[\"Стартовое предложение\"],\"8RdLDU\":[\"Личный проект\"],\"8TveY+\":[\"Доски\"],\"8Z4pNX\":[\"Можно создавать списки\"],\"8iP0S8\":[\"Всё из бесплатного тарифа, а также:\"],\"8iP9oQ\":[\"Не удалось выполнить тест вебхука\"],\"8yFGGF\":[\"Не удалось удалить участника\"],\"99VIgC\":[\"Удалить участника\"],\"9HDx2Z\":[\"You were mentioned in\"],\"9PaIxv\":[\"Основные функции\"],\"9Xigls\":[\"На рассмотрении\"],\"9YPBHv\":[\"Не удалось удалить вебхук\"],\"9cDpsw\":[\"Разрешения\"],\"9eF5oV\":[\"С возвращением\"],\"9h7RDh\":[\"Предложение\"],\"9lFfqv\":[\"/месяц\"],\"9s9O5h\":[\"Ошибка при удалении рабочего пространства\"],\"9u5BOr\":[\"Участники | \",[\"0\"]],\"9wdpwp\":[\"Портал выставления счетов\"],\"9x4DAL\":[[\"0\"],\" не найдено\"],\"9y1RcT\":[\"Мы только начинаем.\"],\"A23Y7X\":[\"Присоединиться к рабочему пространству | kan.bn\"],\"A42Dqn\":[\"Пользовательский брендинг\"],\"A5hiCy\":[\"Создать шаблон\"],\"A8jqN7\":[\"Не удалось отправить отзыв\"],\"ABCjd9\":[\"Публикация\"],\"ADEin1\":[\"Настройки | Оплата\"],\"ALhEZV\":[\"Может приглашать участников\"],\"ANyn0x\":[\"Всё, что вам нужно, бесплатно навсегда. Неограниченные доски, списки и карточки. Можно перейти на другой тариф в любой момент.\"],\"ARvBT/\":[\"оплата ежегодно\"],\"ASjvm9\":[\"URL рабочего пространства\"],\"AUYALh\":[\"Скоро появится\"],\"AX4ktp\":[\"Создание контента\"],\"AZI/wb\":[\"Метки и фильтры\"],\"AdxYds\":[\"Ваш аккаунт GitHub был отключён.\"],\"AeXO77\":[\"Аккаунт\"],\"Alp2ti\":[\"Связаться с отделом продаж\"],\"Ax/hYa\":[\"Описание рабочего пространства не может превышать 280 символов\"],\"B3xxao\":[\"Добавить карточку\"],\"BBUDfW\":[\"Срочно\"],\"BEVzjL\":[\"Ошибка импорта\"],\"BJbLe4\":[\"Мы используем <0>лицензию AGPL-3.0.\"],\"BMkVQ3\":[\"удалил(а) чек-лист <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"переместил(а) карточку из <0>\",[\"0\"],\" в<1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Дублировать карточку\"],\"BZkYSt\":[\"удалено \",[\"0\"],\" меток: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Вы уверены, что хотите удалить рабочее пространство \",[\"0\"],\"?\"],\"Bhgd0l\":[\"Связаться с нами\"],\"BzEFor\":[\"или\"],\"C56tim\":[\"Не удалось обновить дату выполнения\"],\"C6gv54\":[\"Доска была восстановлена из архива.\"],\"CAL6E9\":[\"Команды\"],\"CB/NpV\":[\"Высокий приоритет\"],\"CHZ1jC\":[\"удалил(а) элемент чек-листа <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Пожалуйста, введите корректное имя\"],\"CJWDTP\":[\"Ваш аккаунт Trello был отключён.\"],\"CJukzS\":[[\"0\"],\" метки\"],\"CTqTgr\":[\"Горячие клавиши\"],\"CYWHT+\":[\"Ошибка при загрузке изображения профиля\"],\"Cb5YSG\":[\"You were added to\"],\"Cd4sTD\":[\"Лучше всего подходит для индивидуальных пользователей и соло-креаторов, начинающих работу\"],\"Ci/KUX\":[\"Настройки | Рабочее пространство\"],\"CkVV1t\":[\"Ошибка при обновлении описания рабочего пространства\"],\"Cmudpi\":[\"Можно удалить рабочее пространство\"],\"CozWO1\":[\"Название рабочего пространства\"],\"CujNX4\":[\"добавлено вложение <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"Система\"],\"D0esZz\":[\"Журнал активности\"],\"D3C4Yx\":[\"Требуется текущий пароль\"],\"D7/JvJ\":[\"Отрегулируйте квадратную обрезку для вашего аватара.\"],\"D9ROdV\":[\"Ссылки-приглашения\"],\"DAV3uK\":[\"Разрешения обновлены\"],\"DBC3t5\":[\"Воскресенье\"],\"DFjdv0\":[\"Удалить шаблон\"],\"DMeWZD\":[\"Вы уверены, что хотите удалить этот объект \",[\"0\"],\"?\"],\"DPfwMq\":[\"Готово\"],\"DSGzV+\":[\"Имя пользователя рабочего пространства\"],\"DahTzR\":[\"Не удалось удалить контрольный список\"],\"DbZgsJ\":[\"Создать шаблон\"],\"DtXlZq\":[\"Не удалось обновить контрольный список\"],\"Dz63YI\":[\"Произошла ошибка при отключении вашего аккаунта GitHub.\"],\"E0t3jO\":[\"добавлен элемент чек-листа <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Цена за место\"],\"E8zYtd\":[\"<0>\",[\"0\"],\" был(а) удалён(а) из карточки\"],\"ECJKc4\":[\"Ключ API создан\"],\"EEHmPC\":[\"Стартовое предложение: неограниченное количество участников с Pro\"],\"EH8IL3\":[\"Чек-листы\"],\"EII/X8\":[\"Все функции Teams +\"],\"ERpq2P\":[\"По запросу «\",[\"debouncedQuery\"],\"» ничего не найдено.\"],\"ESClHO\":[\"Приоритетная поддержка по электронной почте\"],\"EYpSRU\":[\"You were added to a workspace\"],\"Eg99Sc\":[\"В данный момент нет доступных методов аутентификации\"],\"Eit43O\":[\"установить срок\"],\"EkH9pt\":[\"Обновить\"],\"EvArWh\":[\"Бесшовно сотрудничайте с вашей командой.\"],\"F/FPk/\":[\"Настройки | Разрешения\"],\"F/vB2g\":[\"Идеи по улучшению этой страницы...\"],\"F0YmUY\":[\"Скопировать ссылку на карточку\"],\"F3bW6y\":[\"Платформа\"],\"F4KRmY\":[\"$8/месяц\"],\"F4PLG4\":[\"Описание рабочего пространства обновлено\"],\"F6m23G\":[\"Загрузка файлов\"],\"F6pfE9\":[\"Активно\"],\"F8DaWi\":[\"Только просмотр\"],\"FEr96N\":[\"Тема\"],\"FdtSNC\":[\"Создать рабочее пространство\"],\"FmN5me\":[\"Решение\"],\"FmfJjN\":[\"Просматривайте и управляйте своими API-ключами.\"],\"Fpci8b\":[\"Вы уверены, что хотите удалить этот чек-лист?\"],\"G1Gw0v\":[\"Новый шаблон\"],\"GAD3Dx\":[\"Пользовательский домен\"],\"GDvlUT\":[\"Роль\"],\"GKeVeM\":[\"Your role was changed\"],\"GRAGsB\":[\"Ваше рабочее пространство\"],\"GYv20o\":[\"Не удалось обновить разрешения\"],\"GdWB+V\":[\"Вебхук успешно создан\"],\"GnRmu4\":[\"Название чек-листа\"],\"GnSSGm\":[\"Описание вашего рабочего пространства было обновлено.\"],\"GoDLB9\":[\"Ваш аккаунт был удалён.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Расширённая дорожная карта\"],\"Gxxi5J\":[\"Добавить чек-лист\"],\"H5G+qG\":[\"В чём разница между Kan и Trello?\"],\"HBI6nY\":[\"Нужна помощь?\"],\"HO+uOC\":[\"Сортировка\"],\"HQVm6e\":[\"Этот URL уже занят\"],\"HVIzNO\":[\"Может просматривать списки\"],\"HYV6Lq\":[\"Не удалось принять приглашение. Пожалуйста, попробуйте позже или обратитесь в службу поддержки.\"],\"HbXReU\":[\"No notifications yet\"],\"HcT8J4\":[\"Ваш аккаунт GitHub был подключён.\"],\"HeFWjW\":[\"Дальнейшие шаги\"],\"Hf1cEZ\":[\"URL вебхука обязателен\"],\"Hg1qE9\":[\"Слаг вашего рабочего пространства был обновлён.\"],\"I+AROe\":[\"Можно редактировать карточки\"],\"I0gAKM\":[\"Не удалось обновить список\"],\"IDvohQ\":[\"отметил элемент контрольного списка как невыполненный\"],\"IFgUX6\":[\"Может удалять участников\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Перейти на Pro\"],\"Iqh0Uv\":[\"Запланировано\"],\"IqjpYe\":[\"Видимость email\"],\"IrZaAn\":[\"Пароль изменён\"],\"It4/FS\":[\"Восстановить доску из архива\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Продолжить с \"],\"J4+OTA\":[\"Переместить в список\"],\"J5nbej\":[\"Критично\"],\"J5pbP6\":[\"Можно редактировать роли и права участников\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JBaoDB\":[[\"overflow\"],\" more viewers\"],\"JCdzgZ\":[\"Запрос функции\"],\"JUce1S\":[\"Исполнители\"],\"JbXXUW\":[\"Обратите внимание: это действие необратимо.\"],\"JcCDm9\":[\"Шаблон создан\"],\"Jgaz7E\":[\"Разрешения сброшены\"],\"JjEJSy\":[\"Настройте ваше рабочее пространство\"],\"JnWJXY\":[\"магическая ссылка\"],\"JxhWxU\":[\"в\"],\"JyXBgS\":[\"документация\"],\"K3iLeO\":[\"Посмотрите, что наши пользователи говорят о Kan\"],\"K4xHKu\":[\"New comment on a card\"],\"K7k9u3\":[\"Невозможно переместить карточку\"],\"KAsRdK\":[\"Перейти к участникам\"],\"KEim/+\":[\"удалено вложение\"],\"KFJgmZ\":[\"Отображаемое имя должно содержать не менее 3 символов\"],\"KLJ4eD\":[\"Ссылка-приглашение скопирована\"],\"KM6m8p\":[\"Команда\"],\"KNKCTb\":[\"Бэклог\"],\"Kec+/t\":[\"Расширенные настройки администратора\"],\"KiVc+q\":[\"Полная занятость\"],\"KuSt9W\":[\"Как развернуть самостоятельно?\"],\"L5WQLg\":[\"Требуется токен\"],\"L5ZPjz\":[\"обновил(а) элемент контрольного списка\"],\"LTGE7Y\":[\"Рабочее пространство успешно создано. Вы сможете обновить его позже в настройках.\"],\"LeM5RY\":[\"Не удалось сбросить переопределения\"],\"LoUCpj\":[\"Ошибка при обновлении названия рабочего пространства\"],\"LqWW5F\":[\"Ваше отображаемое имя обновлено.\"],\"LrcnbT\":[\"Разместите Kan на собственной инфраструктуре. Идеально для организаций, которым нужен полный контроль над своими данными.\"],\"Lt+ZP3\":[\"завершил(а) пункт контрольного списка\"],\"M9p3Vw\":[\"Неограниченный журнал активности\"],\"MCIXdZ\":[\"Подключите свой аккаунт GitHub, чтобы импортировать проекты.\"],\"MFKlMB\":[\"Пригласить\"],\"MHrjPM\":[\"Заголовок\"],\"MI5OBT\":[\"URL может содержать только буквы, цифры и дефисы\"],\"MK16u2\":[\"Нет дат\"],\"MKAScN\":[\"Может просматривать доски\"],\"MN6YzG\":[\"Слаг рабочего пространства обновлён\"],\"MWrbWq\":[\"Настройки | Аккаунт\"],\"MdN5zD\":[\"Вам нужно быть администратором, чтобы управлять правами доступа рабочего пространства.\"],\"MdwUGG\":[\"Экономьте время с шаблонами досок для повторного использования.\"],\"MeO/vH\":[\"Это приведёт к безвозвратному удалению всех данных, связанных с этим рабочим пространством.\"],\"MlyjJu\":[\"Отображаемое имя не может превышать 280 символов\"],\"MxQXhL\":[\"Не удалось создать рабочую область\"],\"N/bcWA\":[\"Вход | kan.bn\"],\"N3380t\":[\"Можно создавать доски\"],\"N7aud6\":[\"Интеллектуальный поиск\"],\"NH54UR\":[\"переименован пункт чек-листа в <0>\",[\"0\"],\"\"],\"NcFrgC\":[\"Доска была архивирована.\"],\"NgaR6B\":[\"Введите пароль\"],\"NnH3pK\":[\"Тест\"],\"NoNwIX\":[\"Неактивен\"],\"NypLoL\":[\"переименован чек-лист\"],\"O0li0W\":[\"Введите текущий пароль и выберите новый надёжный пароль.\"],\"O1wAlQ\":[\"Гость\"],\"O3oNi5\":[\"Email\"],\"O83K21\":[\"добавлен элемент чек-листа\"],\"O9jVbx\":[\"Низкий приоритет\"],\"OAYToL\":[\"Это удалит все индивидуальные права участников в этом рабочем пространстве. Участники будут наследовать права только от своих ролей.\"],\"OIA0ad\":[\"Название рабочего пространства обновлено\"],\"OTxjpR\":[\"your-workspace\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Отключить GitHub\"],\"Oi+J+N\":[\"Выберите тариф, чтобы начать. Все платные тарифы включают 14-дневный бесплатный пробный период.\"],\"OkTY4+\":[\"Секретный ключ не может превышать 512 символов\"],\"Oo4E6p\":[\"Невозможно дублировать карточку\"],\"OpNhRn\":[\"Кредитная карта не требуется\"],\"OtjenF\":[\"Пожалуйста, введите корректный адрес электронной почты\"],\"OvoEq7\":[\"Участник\"],\"OwneeH\":[\"Пользовательское имя рабочего пространства\"],\"Ozt2vv\":[\"Ваш пароль был изменён.\"],\"P6dJdq\":[\"Переопределения сброшены\"],\"P8Cunr\":[\"Имя пользователя по умолчанию\"],\"PCIlOO\":[\"Добавить участника\"],\"PELbXB\":[\"Ваш аккаунт GitHub подключён.\"],\"PRjvDT\":[\"Вы уверены, что хотите удалить этот комментарий?\"],\"PRofO0\":[\"Редактировать видео на YouTube\"],\"PTzsxH\":[\"Видимость доски обновлена\"],\"PVT7q7\":[\"GitHub подключён\"],\"PZCqeW\":[\"Пожалуйста, попробуйте позже.\"],\"Pat4r8\":[\"Базовый роадмап\"],\"PpZkda\":[\"Функции\"],\"PyYD/v\":[\"назначено <0>\",[\"0\"],\" на карточку\"],\"Q60WUZ\":[\"Не удалось начать оформление заказа\"],\"Q9pQaX\":[\"Для этого рабочего пространства пока не найдено ролей.\"],\"QD8opX\":[\"Доска\"],\"QHhZeE\":[\"Шаблон успешно создан\"],\"QNtP5M\":[\"Использовать шаблон\"],\"Qh7QmR\":[\"Удалено из избранного\"],\"QnzD50\":[\"Локально\"],\"QtACvI\":[\"Создать метку\"],\"Qtzfdk\":[\"Тариф Pro ∞\"],\"R+w/Va\":[\"Выставление счетов\"],\"R1c3Mq\":[\"Требуется указать название доски\"],\"R275Pz\":[\"В вашем Pro-плане неограниченное количество мест. За новых участников дополнительная плата не взимается!\"],\"R3FsF4\":[\"Не удалось загрузить\"],\"R41XLH\":[\"Не удалось обновить вебхук\"],\"R6pB8R\":[\"Поставьте звезду на Github\"],\"RHZu7R\":[\"Любим командами по всему миру\"],\"RJA+sg\":[\"Новый тикет\"],\"RRn9jf\":[\"Перейдите по ссылке, которую мы отправили на \",[\"magicLinkRecipient\"],\", чтобы войти.\"],\"RSGOS1\":[\"Можно удалять списки\"],\"RfgJqw\":[\"обновил(а) срок выполнения\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Отправить отзыв\"],\"RtlIYB\":[\"Вы собираетесь изменить свой пароль.\"],\"RzxgOE\":[\"Роли и разрешения\"],\"SFnH1j\":[\"Зачем делать open source Trello?\"],\"SMaFdc\":[\"Отписаться\"],\"SNfg0e\":[\"Может просматривать рабочее пространство\"],\"SPLN9O\":[\"Владейте своими данными\"],\"SRvxId\":[\"Секретный ключ HMAC для проверки подписи\"],\"STSYcd\":[\"Можно удалять комментарии\"],\"SUXBxp\":[\"Разработка\"],\"SUvm1Y\":[\"Подходит для начинающих пользователей, которым нужны только базовые функции.\"],\"SWEskc\":[\"URL должен содержать не менее 3 символов\"],\"Sb2gYF\":[\"Новый список\"],\"ScJ9fj\":[\"Политика конфиденциальности\"],\"Se/UIp\":[\"К выполнению\"],\"SiPp29\":[\"Создать вебхук\"],\"SkCNhl\":[\"Поиск досок и карточек...\"],\"SlfejT\":[\"Ошибка\"],\"T/pF0Z\":[\"Удалить из избранного\"],\"T21jY/\":[\"добавлена метка на карточку\"],\"T7DJ2k\":[\"Не удалось добавить комментарий\"],\"T7LJic\":[\"переместил(а) карточку в другой список\"],\"T7Mywq\":[\"Не удалось обновить доску\"],\"TCOMOO\":[\"Изменить права доступа\"],\"TCt/8K\":[\"Ограниченный доступ к API\"],\"TFv5tM\":[\"Не удалось обновить роль\"],\"TH3Irz\":[\"Разрешение\"],\"TKFUnX\":[\"Аккаунт удалён\"],\"TX0bT7\":[\"Вебхуки не настроены. Добавьте вебхук для получения уведомлений.\"],\"TXO5TM\":[\"Горячие клавиши не зарегистрированы.\"],\"TYli1B\":[\"Можно редактировать комментарии\"],\"TbjyhA\":[\"Документация\"],\"TcXcmk\":[\"Code Review\"],\"TdfEV7\":[\"В архиве\"],\"TjREUS\":[\"Новый API-ключ\"],\"TmvrjU\":[\"URL доски должен содержать не менее 3 символов\"],\"TvY/XA\":[\"Документация\"],\"Tz0i8g\":[\"Настройки\"],\"TztLaN\":[\"Не удалось создать список\"],\"U2+rn0\":[\"Название вебхука обязательно\"],\"U3pytU\":[\"Админ\"],\"U5dMR6\":[\"Просмотреть рабочее пространство\"],\"UCLeG0\":[\"Условия использования\"],\"UGCIzB\":[\"Добавить / изменить метку\"],\"UQbwrz\":[\"Все системы работают нормально\"],\"URAE3q\":[\"Приостановлено\"],\"USVCGU\":[\"Ошибка при деактивации ссылки-приглашения\"],\"UbRKMZ\":[\"В ожидании\"],\"UbYdrA\":[\"Частота платежей\"],\"UeDFpo\":[\"Как финансируется проект?\"],\"UirJfL\":[\"Пользовательское SLA\"],\"UlhdTP\":[\"Рабочее пространство удалено\"],\"Un80BR\":[\"OSS Friends\"],\"UoSI+i\":[\"Лучше всего подходит для небольших и развивающихся команд, которым нужна совместная работа\"],\"UveK6V\":[\"Перейти в приложение\"],\"Uworke\":[\"Частичная занятость\"],\"UxKoFf\":[\"Навигация\"],\"V1KOLq\":[\"Уведомления по email о упоминаниях\"],\"V3MPSQ\":[\"обновил(а) заголовок\"],\"V8YRD4\":[\"Viewing now: \",[\"0\"]],\"V8YWP3\":[\"Введите собственный заголовок\"],\"VHS0aJ\":[\"Очистить все пользовательские разрешения?\"],\"VKoDQD\":[\"Создать новый \",[\"0\"]],\"VUZDlr\":[\"Отзывы\"],\"VXk54Y\":[\"самостоятельно назначил(а) карточку\"],\"VbyRUy\":[\"Комментарии\"],\"VhMDMg\":[\"Сменить пароль\"],\"Vt50G1\":[\"Базовый канбан\"],\"W/Elkg\":[\"Средний приоритет\"],\"W/nQk1\":[\"Бесплатный тариф\"],\"W1ewR0\":[\"Не удалось скопировать ссылку\"],\"W5r8Qh\":[\"удалил(а) элемент чек-листа\"],\"W8oT+L\":[\"Не удалось получить информацию о видео\"],\"WHHLh9\":[\"Не удалось удалить вложение\"],\"WI4eGo\":[\"Как получить собственный URL?\"],\"WQPDcG\":[\"Не удалось обновить элемент контрольного списка\"],\"WRkpB1\":[\"Регистрация отключена\"],\"WRsbHO\":[\"Ваш аккаунт Trello подключён.\"],\"WYDptz\":[\"Требуется подписка\"],\"WYwN1G\":[\"Новый импорт\"],\"WbTDwg\":[\"В процессе\"],\"Weq9zb\":[\"Общее\"],\"WmPhYW\":[\"Произошла ошибка при отключении вашей учетной записи Trello.\"],\"WnEwDO\":[\"Уже есть аккаунт? <0><1>Войти\"],\"Ws+3X+\":[\"Неограниченное количество мест и расширенные функции для развивающихся команд.\"],\"Ws1I0u\":[\"A card was updated\"],\"Wy6pcF\":[\"Не удалось обновить видимость доски\"],\"X0N0PA\":[\" (отредактировано)\"],\"XDRXbZ\":[\"Описание рабочего пространства должно содержать не менее 3 символов\"],\"XEoGkQ\":[\"Перейти на главную\"],\"XILg0L\":[\"Недействительный адрес электронной почты\"],\"XJOV1Y\":[\"Активность\"],\"XNxYxq\":[\"Шаблоны досок\"],\"XTKtey\":[\"Создать список\"],\"XXbgHS\":[\"Принят на работу\"],\"XYLcNv\":[\"Поддержка\"],\"XicmhT\":[\"Срок выполнения\"],\"Xid3K6\":[\"URL доски может содержать только буквы, цифры и дефисы\"],\"Xjj/kS\":[\"Kanban по-новому\"],\"XpcjLO\":[\"Не удалось обновить URL доски\"],\"Y8yzGg\":[\"Начните бесплатно. Переходите на новый тариф по мере роста команды. Без скрытых платежей и контрактов.\"],\"YBBifR\":[\"Отключить Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Не удалось изменить порядок элемента контрольного списка\"],\"YRk79X\":[\"Расширенная безопасность, соответствие требованиям и выделенная поддержка для крупных организаций.\"],\"YVT40D\":[\"удалена метка <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Ошибка при обновлении подписки\"],\"YcyP2z\":[\"Не удалось создать шаблон\"],\"YdIn4I\":[\"You were removed from a workspace\"],\"Yf9FAx\":[\"Они не смогут получить доступ к этому рабочему пространству.\"],\"YhvWXb\":[\"Аналитика доски\"],\"YirHq7\":[\"Обратная связь\"],\"YkfDoz\":[\"Ежегодно\"],\"YoyKbT\":[\"Этот API-ключ будет показан только один раз. Пожалуйста, сохраните его в надёжном месте.\"],\"Ypy5pZ\":[\"Вы уверены, что хотите удалить вебхук \\\"\",[\"webhookName\"],\"\\\"? Это действие невозможно отменить.\"],\"YtUfwW\":[\"Не удалось войти через \",[\"0\"],\". Пожалуйста, попробуйте ещё раз.\"],\"Yx0Ud8\":[\"Запрошено\"],\"Z3FXyt\":[\"Загрузка...\"],\"Z3krJD\":[\"Разрешить участникам рабочего пространства видеть электронные адреса друг друга\"],\"Z6r9z1\":[\"Не удалось удалить карточку\"],\"ZAs2NN\":[\"Все функции Pro +\"],\"ZDGm40\":[\"Удалить аккаунт\"],\"ZDIydz\":[\"Начать\"],\"ZDPJBc\":[\"Для пользовательских имен пользователей требуется обновление до тарифа Pro\"],\"ZDo4HN\":[\"Мозговой штурм\"],\"ZH7TVS\":[\"Название карточки\"],\"ZL1A+p\":[\"Не удалось загрузить вложение. Пожалуйста, попробуйте ещё раз.\"],\"ZT4Khw\":[\"Вы уверены, что хотите удалить эту карточку?\"],\"ZU5IYI\":[\"Неограниченное количество досок, списков и карточек. Кредитная карта не требуется.\"],\"ZXSPJt\":[\"Произошла непредвиденная ошибка. Пожалуйста, попробуйте позже.\"],\"ZqDqbi\":[\"Быстро организуйте и находите карточки с помощью мощных инструментов фильтрации.\"],\"Zz1qkk\":[\"Неограниченное количество карточек\"],\"a3LDKx\":[\"Безопасность\"],\"aHCEmh\":[\"Цены\"],\"aHRWVI\":[\"удалена дата выполнения\"],\"aJ4pMe\":[\"Часто задаваемые вопросы\"],\"aKJHG+\":[\"Архивировать доску\"],\"aW3TOw\":[\"Уведомления по email\"],\"aWDhU5\":[\"Kanban эффективнее в команде. Идеально для небольших и растущих команд, стремящихся к совместной работе.\"],\"aWlSc/\":[\"Создать новый список\"],\"abUZlY\":[\"Добавить детали...\"],\"aelko+\":[\"Вы можете получить собственный URL рабочего пространства, например <0>kan.bn/kan, перейдя в <1>настройки рабочего пространства и оформив подписку на pro-версию. Все подписки помогают финансировать развитие проекта!\"],\"agPptk\":[\"Средний\"],\"aiHZVP\":[\"Посмотреть документацию\"],\"b/LfJo\":[\"email\"],\"b3Thhd\":[\"Ошибка загрузки\"],\"b5FKyH\":[\"добавлена метка <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Создать \",[\"0\"]],\"bD8I7O\":[\"Завершить\"],\"bDI6VI\":[[\"0\"],\" удалён из избранного.\"],\"bFREhu\":[\"Конец списка\"],\"bJZm1W\":[\"Кандидаты\"],\"bJtM0P\":[\"Этот URL рабочей области зарезервирован\"],\"bKzM8L\":[\"Выделенный менеджер аккаунта\"],\"bZSICm\":[\"Не удалось добавить элемент контрольного списка\"],\"bcIybO\":[\"Требуется указать название рабочего пространства\"],\"bdztP2\":[\"Исследование\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"Роль участника была обновлена.\"],\"bff61F\":[\"Тариф для команды\"],\"bfgr/e\":[\"Вопрос\"],\"bmXKoX\":[\"добавлено \",[\"0\"],\" меток: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Ошибка при удалении аккаунта\"],\"c/IAuR\":[\"Важно\"],\"c3b0B0\":[\"Начать\"],\"c4nMcR\":[\"Ваш аватар\"],\"c9AJhn\":[\"Присоединиться к рабочему пространству\"],\"cAgBMh\":[\"Полный контроль и владение:\"],\"cFQEU/\":[\"Открыть горячие клавиши\"],\"cOh+MI\":[\"Скрининг\"],\"cWXW+7\":[\"Добавить вебхук\"],\"cWcxrL\":[\"Новый чек-лист\"],\"cWtfn1\":[\"Перейти на Pro (29\xA0$/месяц)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Описание рабочего пространства\"],\"cji2nM\":[\"Ошибка при создании ссылки-приглашения\"],\"cnGeoo\":[\"Удалить\"],\"cp1rsD\":[\"Деактивировать ссылку-приглашение\"],\"csFbe+\":[\"Перейти к шаблонам\"],\"curoK5\":[\"Новый рабочий пространство\"],\"d+F6q9\":[\"Создан\"],\"d33Usy\":[\"Создать чек-лист\"],\"dEgA5A\":[\"Отмена\"],\"dUh9QW\":[\"Планирование\"],\"ddrz1m\":[\"Просрочено\"],\"delOXn\":[\"Не удалось обновить метки\"],\"dgr4Kq\":[\"Редактировать метку\"],\"dmKdk0\":[\"После удаления рабочего пространства возврата не будет. Это действие необратимо.\"],\"dsLT3m\":[\"Создать карточку\"],\"dtQIWT\":[\"Сотрудничество\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"Этот URL рабочего пространства уже занят\"],\"e1v+J3\":[\"Секретный ключ (необязательно)\"],\"e4hPSt\":[\"Сбросить к настройкам роли по умолчанию\"],\"e6wIqm\":[\"You were mentioned in a card\"],\"eEQyz+\":[\"Отслеживайте все изменения карточек с подробной историей активности.\"],\"ePK91l\":[\"Редактировать\"],\"eZCGbT\":[\"Да, мы предлагаем бессрочный бесплатный тариф для индивидуального использования. Без ограничений, без платных функций, без лимитов.\"],\"edWbV6\":[\"Ссылка скопирована\"],\"ekCRTP\":[\"Отклонено\"],\"en3oy5\":[\"Функция\"],\"euc6Ns\":[\"Дублировать\"],\"eus61c\":[\"Отправить тест\"],\"evg7+A\":[\"Ваши доски были импортированы.\"],\"evj0lK\":[\"У вас есть бесплатный тариф?\"],\"f8fH8W\":[\"Дизайн\"],\"f8lDFq\":[\"создал(а) карточку\"],\"fDQ7hA\":[\"Копировать метки\"],\"fEY2vP\":[\"Карточка не найдена\"],\"fQCrjt\":[\"Видимость вашей доски установлена на \",[\"0\"],\".\"],\"fR9laE\":[\"Введите текущий пароль\"],\"fSf2ee\":[\"Посмотреть наш роадмап\"],\"fW5sSv\":[\"Редактировать вебхук\"],\"fYVH36\":[\"Не удалось обновить комментарий\"],\"fcWrnU\":[\"Выйти\"],\"fuwKpE\":[\"Пожалуйста, попробуйте ещё раз.\"],\"fvLNDy\":[\"Списки ещё не созданы\"],\"fzGyWs\":[\"Изменить размер шрифта приложения.\"],\"fziA2d\":[\"Неограниченное количество комментариев\"],\"g2xBxu\":[\"Импортировать ваши доски Trello в Kan очень просто. Следуйте нашему пошаговому руководству <0>здесь.\"],\"g9NChz\":[\"Менеджер аккаунта\"],\"gGx5tM\":[\"Редактирование\"],\"gKmoow\":[\"Этот URL зарезервирован\"],\"gL/7jw\":[\"Добавить описание... (введите '/' для открытия команд или '@' для упоминания)\"],\"gQ/02p\":[\"Ошибка при отключении GitHub\"],\"gUX7b+\":[\"Open source <0/> альтернатива Trello\"],\"gZxH/p\":[\"изменил(а) срок выполнения на <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"Название рабочего пространства не может превышать 64 символа\"],\"gkxGkF\":[\"14 дней бесплатно · Сменить тариф или отменить в любой момент\"],\"gkzAEM\":[\"Продолжить с \",[\"0\"]],\"goklcJ\":[\"Собеседование\"],\"gpfJ3v\":[\"Бесплатно, навсегда\"],\"gukxZ5\":[\"Онбординг\"],\"gv5kbo\":[\"URL доски не может превышать 60 символов\"],\"h16FyT\":[\"Списки\"],\"h2FKMV\":[\"У вас нет прав доступа\"],\"h2ztFt\":[\"Все функции Free +\"],\"h4VV67\":[\"добавлен чек-лист\"],\"h7MgpO\":[\"Горячие клавиши\"],\"h8DugX\":[\"Метки\"],\"hAMddS\":[\"Пользователь удалил себя из карточки\"],\"hB02vO\":[\"Управление участниками\"],\"hXMFoN\":[\"Нет списков\"],\"hYzsXr\":[\"Настройки | Интеграции\"],\"hty0d5\":[\"Понедельник\"],\"i0ZMQl\":[\"Доска архивирована\"],\"i30J2U\":[\"Проекты не найдены\"],\"i5rE2/\":[\"URL не может превышать 64 символа\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Назад\"],\"iHcdea\":[\"Срок — на следующей неделе\"],\"iLbjv+\":[\"Можно редактировать рабочее пространство\"],\"iQmbPb\":[\"Лицензия\"],\"iSLIjg\":[\"Подключить\"],\"iTylMl\":[\"Шаблоны\"],\"iVIGZb\":[\"Вложение загружено\"],\"isRobC\":[\"Новый\"],\"itgYbC\":[\"Тестовый вебхук успешно отправлен!\"],\"iwr7AP\":[\"Идеи\"],\"iy1wb+\":[\"Настройки | API\"],\"j0o6ml\":[\"Описание вашего рабочего пространства\"],\"j1+HPc\":[\"Произошла ошибка при подключении вашего аккаунта GitHub.\"],\"j2+d/o\":[\"Справочник по API\"],\"j77sVH\":[\"You were assigned to\"],\"j9IZZ0\":[\"Пользовательский URL рабочего пространства\"],\"jDRt4n\":[\"Вы хотите отписаться?\"],\"jEw0Mr\":[\"Пожалуйста, введите корректный URL\"],\"jIuWsV\":[\"Название вебхука не может превышать 255 символов\"],\"jL82rC\":[\"Очистить пользовательские разрешения\"],\"jNuzV/\":[\"Можно удалять карточки\"],\"jQ6I8X\":[\"Роль обновлена\"],\"jZBHkN\":[\"Название рабочего пространства должно содержать не менее 3 символов\"],\"jfC/xh\":[\"Контакты\"],\"jl3aEJ\":[\"отметил элемент контрольного списка <0>\",[\"0\"],\" как невыполненный\"],\"jlB2RY\":[\"Введённый вами текущий пароль неверен.\"],\"jwI32v\":[\"Доска не найдена\"],\"k7rCa/\":[\"Крупный\"],\"kECVpo\":[\"Вы уверены, что хотите удалить эту метку?\"],\"kQwvU8\":[\"удалена метка с карточки\"],\"kSxwQL\":[\"Вы можете пригласить участников команды, нажав кнопку «Пригласить» в правом верхнем углу <0>страницы участников и введя их адрес электронной почты. Они получат письмо со ссылкой для присоединения к рабочему пространству.\"],\"kYu0eF\":[\"Удалить рабочее пространство\"],\"kfOGMr\":[\"Быстрая победа\"],\"klpSmb\":[\"Изменить URL рабочего пространства\"],\"kp6L3T\":[\"Это имя пользователя рабочей области уже занято\"],\"kryGs+\":[\"Карточка\"],\"kuoc68\":[\"$10/месяц\"],\"kxEs5t\":[\"Импорт из Trello\"],\"l2PIAy\":[\"Самостоятельный хостинг с Github\"],\"l31EoQ\":[\"Найдите ответы на часто задаваемые вопросы о Kan. Не нашли то, что искали? Не стесняйтесь <0>связаться с нами.\"],\"l3s5ri\":[\"Импорт\"],\"l4asa1\":[\"Эта доска приватная или не существует\"],\"lGjicL\":[\", или смотрите нашу\"],\"lKAvEd\":[\"Ошибка при отключении Trello\"],\"lXvXNI\":[\"Не удалось скопировать ссылку-приглашение\"],\"lYT7pQ\":[\"Удалить список\"],\"lkz85l\":[\"Главное отличие Kan от Trello в том, что Kan — это open source, и любой может просматривать, изменять и вносить вклад в наш код. В нашем облачном сервисе также нет ограничений по функциям для индивидуального использования, в то время как Trello блокирует базовые возможности, такие как количество досок, за платным доступом.\"],\"lo8xBK\":[\"Вы уверены, что хотите удалить \",[\"entityLabel\"],\"?\"],\"lpIMne\":[\"Пароли не совпадают\"],\"lsgnzd\":[\"Ошибка при переходе на Pro\"],\"lyqwgn\":[\"Добавить метку\"],\"m2nk0i\":[\"Простые тарифы\"],\"mErq7F\":[\"Зарегистрироваться\"],\"mHhffx\":[\"Не удалось создать контрольный список\"],\"mTGd3+\":[\"удалил(а) чек-лист\"],\"mTwGOf\":[\"Эта ссылка-приглашение недействительна или истекла.\"],\"mU+M00\":[[\"0\"],\" добавлен в избранное.\"],\"mVZH9V\":[\"Когда Trello появился в 2011 году, он поразил всех своей продуманной простотой, но со временем утратил свою магию и стал чем-то вроде \\\"Jira Lite\\\". Этот проект — наша попытка вернуть ту самую магию простоты Trello, но в формате open source.\"],\"mZGPxt\":[\"Ссылка-приглашение скопирована в буфер обмена\"],\"mchgzf\":[\"Вы успешно зарегистрировались.\"],\"mgXgHu\":[\"Перейти к доскам\"],\"mrhyIB\":[\"Идеально для небольших и развивающихся команд, которые хотят сотрудничать.\"],\"mwBdZ2\":[\"Это приведёт к безвозвратному удалению всех данных, связанных с вашим аккаунтом.\"],\"mx8+1u\":[\"Неограниченное количество участников\"],\"n+xLOH\":[\"Служба поддержки клиентов\"],\"n1GRql\":[\"Новая метка\"],\"n1ekoW\":[\"Войти\"],\"n6EWYz\":[\"Используется для подписи данных вебхука для проверки. Оставьте пустым, чтобы сохранить существующий секретный ключ.\"],\"n9V+ps\":[\"Введите имя\"],\"nKBUeF\":[\"Карточка была продублирована.\"],\"nOhz3x\":[\"Выйти\"],\"nYNMZZ\":[\"Позиция в списке (0 = первая, оставьте пустым для конца)\"],\"nabda1\":[\"Удалить карточку\"],\"nbfdhU\":[\"Интеграции\"],\"ngBZOd\":[\"Добавить комментарий... (введите '/' для открытия команд или '@' для упоминания)\"],\"nhMhRr\":[\"Спасибо за ваш отзыв!\"],\"njJFtc\":[\"Удалить комментарий\"],\"nk7caK\":[\"Подключить Trello\"],\"nol/Fb\":[\"Как пригласить участников команды?\"],\"notwF1\":[\"Имя шаблона не может превышать 100 символов\"],\"nq7q3Z\":[\"Имя ключа API не может превышать 30 символов\"],\"nqdIhs\":[\"Пользовательские шаблоны досок\"],\"nryrgW\":[\"Все индивидуальные разрешения участников были сброшены к значениям по умолчанию для их ролей.\"],\"o+JCfN\":[\"Нам доверяют быстроразвивающиеся команды<0/>по всему миру\"],\"o4e/70\":[\"Выберите хотя бы одно событие\"],\"o4sQAg\":[\"Не удалось создать вебхук\"],\"o7J4JM\":[\"Фильтр\"],\"o8adVG\":[\"Загрузка файлов до 10 МБ\"],\"o9WLwO\":[\"Не удалось обновить карточку\"],\"oVBq1w\":[\"за пользователя/месяц\"],\"oW13KZ\":[\"Начните бесплатно уже сегодня\"],\"odFCYX\":[\"Недействительное приглашение\"],\"okpxfB\":[\"Создать новый ключ\"],\"onllUU\":[\"Mark all as read\"],\"oyRjD/\":[\"Тариф Pro\"],\"p/hk9N\":[\"Вы успешно вошли в систему.\"],\"pBsoKL\":[\"Добавить в избранное\"],\"pFGfsR\":[\"Ознакомьтесь с нашими любимыми open source проектами.\"],\"pFKC6A\":[\"Имя ключа API\"],\"pL78ec\":[\"Добавлено в избранное\"],\"pM1sn/\":[\"New notification\"],\"pVctI7\":[\"Вариант локального развертывания\"],\"pXVFJy\":[\"Можно удалять доски\"],\"pa9o5D\":[\"Обрежьте свой аватар\"],\"pfa8F0\":[\"Отображаемое имя\"],\"pmUArF\":[\"Рабочее пространство\"],\"pnrmSP\":[\"Новая карточка\"],\"ppaRWv\":[\"Самостоятельный хостинг\"],\"pvnfJD\":[\"Тёмная тема\"],\"q+lt9D\":[\"Ошибка при удалении метки\"],\"q3il6U\":[\"Размер шрифта\"],\"qPP4lD\":[\"Приглашение участников доступно только на тарифе Team. Вы будете перенаправлены для обновления рабочего пространства.\"],\"qQXocp\":[\"Может управлять настройками рабочего пространства\"],\"qaS+1/\":[\"Лучше всего подходит для команд, которые хотят масштабироваться без ограничений\"],\"qfUS/w\":[\"Друзья Open Source\"],\"qkjvgj\":[\"Ваше рабочее пространство было удалено.\"],\"qlAIQ1\":[\"Удалённо\"],\"qtE5nt\":[\"Добавить элемент...\"],\"qzdST2\":[\"Видимость доски\"],\"r6BgwX\":[\"Для входа требуется пароль.\"],\"rD6UIt\":[\"Начать в облаке\"],\"rF8SEQ\":[\"Редактировать комментарий\"],\"rQRXo8\":[\"Введите новый секретный ключ для обновления\"],\"rQXTmd\":[\"URL карточки скопирован в буфер обмена\"],\"rRM7r0\":[\"Импортируйте свои доски Trello и сразу приступайте к работе.\"],\"rYUZIe\":[\"Выбрать источник\"],\"raHesj\":[\"Вы отписались!\"],\"rarRW/\":[\"Ошибка при приглашении участника\"],\"ri1hHe\":[\"Срок — в следующем месяце\"],\"rmN315\":[\"Весело\"],\"rs7L54\":[\"добавлен участник в карточку\"],\"rtbVvN\":[\"Можно редактировать списки\"],\"s+MGs7\":[\"Ресурсы\"],\"s6iE/c\":[\"Регистрация сейчас недоступна. Пожалуйста, попробуйте позже.\"],\"sBhOFG\":[\"Простое и наглядное управление задачами, которое действительно работает. Перетаскивайте карточки, работайте с командой и достигайте большего.\"],\"sDLCvT\":[\"Подключите любимые инструменты, чтобы упростить рабочий процесс.\"],\"sDuhfK\":[\"Стартовое предложение: неограниченное количество мест всего за $29 в месяц с Pro\"],\"sU2uWc\":[\"Карточка продублирована\"],\"sUZo7y\":[\"Регистрация | kan.bn\"],\"sVBn4K\":[\"Ошибка при обновлении отображаемого имени\"],\"sY2lzr\":[\"Для этого вложения нет доступной ссылки для скачивания.\"],\"sbNNyi\":[\"Новый вебхук\"],\"snMaH4\":[\"Удалить вебхук\"],\"t+R8+P\":[\"Выполнение\"],\"t/YqKh\":[\"Удалить\"],\"t0dTPm\":[\"Настройте вебхуки для получения уведомлений при создании, обновлении, перемещении или удалении карточек.\"],\"t2nDzl\":[\"Просматривайте и управляйте своими платежами и подпиской.\"],\"t6FvJH\":[\"Можно добавлять комментарии\"],\"tGwwnq\":[\"обновил(а) описание\"],\"tHcbLF\":[\"Можно редактировать доски\"],\"tIdipJ\":[\"Изменить URL доски\"],\"tMYIu7\":[\"Журналы активности\"],\"tOZp9v\":[\"Настраиваемые роли и права пользователей\"],\"tTbref\":[\"Для регистрации требуется пароль.\"],\"tYN21H\":[\"Пользователь уже является участником этого рабочего пространства\"],\"tbNcu4\":[\"Доска восстановлена из архива\"],\"tca56/\":[\"Ваш файл был успешно загружен.\"],\"tfDRzk\":[\"Сохранить\"],\"tlhgDC\":[\"Нет архивированных досок\"],\"tmlJN1\":[\"Пожалуйста, введите корректную ссылку на YouTube\"],\"tmpW+w\":[\"Удалить доску\"],\"tst44n\":[\"События\"],\"tyHiOa\":[\"Пожалуйста, попробуйте позже или обратитесь в службу поддержки.\"],\"u2+JIh\":[\"Для пользовательских URL требуется переход на тариф Pro\"],\"u8JHrO\":[\"Сбросить фильтры\"],\"uAQUqI\":[\"Статус\"],\"uEGGDs\":[\"Мой вебхук\"],\"uOqaMC\":[\"Вас пригласили присоединиться к рабочему пространству.\"],\"uP4V6I\":[\"Бесплатно для всех\"],\"uXGLuq\":[\"Создать API-ключ\"],\"uZg2+w\":[\"Улучшите свой workspace всего за $29 в месяц. Вы получите:\"],\"uck1tz\":[\"удалён участник из карточки\"],\"usVytm\":[\"После удаления аккаунта возврата не будет. Это действие необратимо.\"],\"uvH2xS\":[\"Копировать участников\"],\"v+Wp++\":[\"Открытый исходный код\"],\"v1kQyJ\":[\"Вебхуки\"],\"v3YoMA\":[\"Старший\"],\"vAR/I8\":[\"Запустить на собственной инфраструктуре\"],\"vAj6xG\":[\"Вы можете развернуть сервис самостоятельно, следуя инструкциям в нашем <0>репозитории.\"],\"vSJd18\":[\"Видео\"],\"vUr5JT\":[\"Нет аккаунта? <0><1>Зарегистрируйтесь\"],\"vXIe7J\":[\"Язык\"],\"vXemf6\":[\"Баг\"],\"va/3u1\":[\"Управляйте тем, кто может просматривать и редактировать ваши доски.\"],\"vbskQn\":[\"Требуется имя ключа API\"],\"veIDCY\":[\"Начните 14-дневный бесплатный пробный период\"],\"vfRdCZ\":[\"Не удалось сбросить разрешения\"],\"vgdzLf\":[\"Создать ещё одну\"],\"vifyyw\":[\"Юридическая информация\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"Права этого участника были сброшены до значений по умолчанию для его роли.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"ежемесячная оплата\"],\"vo2a+a\":[\"Маркетинг\"],\"vuxdLS\":[\"Долгосрочный\"],\"vwGkYB\":[\"Пароль должен содержать не менее 8 символов\"],\"wIb7Ng\":[\"Разработка ПО\"],\"wK4OTM\":[\"Название (необязательно)\"],\"wM8xd8\":[\"Джуниор\"],\"wPZBpR\":[\"Пожалуйста, выберите файл для загрузки.\"],\"wY+6Ye\":[\"Этот URL доски уже занят\"],\"wakO3W\":[\"добавлен чек-лист <0>\",[\"0\"],\"\"],\"wewm3j\":[\"Название доски не может превышать 100 символов\"],\"wgNoIs\":[\"Выбрать всё\"],\"wlQNTg\":[\"Участники\"],\"wqkcin\":[\"Может просматривать комментарии\"],\"wqxglO\":[\"Обучение\"],\"wruKPE\":[\"Поддержите развитие проекта\"],\"wsy94z\":[\"Лучше всего подходит для крупных организаций с расширенными потребностями\"],\"wtxjAY\":[\"Участники рабочего пространства\"],\"x0kMO/\":[\"Ошибка при обновлении URL рабочего пространства\"],\"x8GeCD\":[\"Отображаемое имя обновлено\"],\"xEbBrW\":[\"Какую лицензию вы используете?\"],\"xGVfLh\":[\"Продолжить\"],\"xLTZVf\":[\"День начала недели\"],\"xMn+V9\":[\"Импорт из Trello\"],\"xRPn3U\":[\"Введите адрес электронной почты\"],\"xvcYhz\":[\"Очистить все индивидуальные разрешения участников, чтобы все участники наследовали только разрешения по умолчанию для своей роли.\"],\"y3aU20\":[\"Сохранить изменения\"],\"yD3ZSw\":[\"Измените языковые настройки.\"],\"yV7o5I\":[\"Как импортировать мои доски Trello?\"],\"yb/fjw\":[\"Одобрение\"],\"yhLUU8\":[\"Ошибка подключения GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Импортировать проект (1)\"],\"few\":[\"Импортировать проекта (\",[\"projectCount\"],\")\"],\"many\":[\"Импортировать проектов (\",[\"projectCount\"],\")\"],\"other\":[\"Импортировать проекта (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Закрыть\"],\"zC8Whw\":[\"Начните с создания нового списка\"],\"zERArS\":[\"обновил(а) заголовок на <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Создать пригласительную ссылку\"],\"zMlxCA\":[\"1 пользователь\"],\"zMquA7\":[\"Выберите тариф\"],\"zQPhSa\":[\"Преобразовать в ссылку\"],\"zQX5Dj\":[\"Название списка\"],\"zYRVNp\":[\"Выберите список\"],\"zkWmBh\":[\"Ежегодно\"],\"zl1b97\":[\"Не удалось создать карточку\"],\"zoEbXq\":[\"Может просматривать карточки\"],\"zt/6cS\":[\"Идеально для небольших команд, которые хотят сотрудничать и работать быстрее вместе.\"],\"zto8aj\":[\"Trello отключён\"],\"zwBp5t\":[\"Приватно\"],\"zwTiVn\":[\"удалено вложение <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Узнать больше\"],\"zxKs+y\":[\"Срок — завтра\"],\"zzDlyQ\":[\"Успех\"]}")as Messages; \ No newline at end of file diff --git a/apps/web/src/providers/events.tsx b/apps/web/src/providers/events.tsx new file mode 100644 index 000000000..861c35760 --- /dev/null +++ b/apps/web/src/providers/events.tsx @@ -0,0 +1,161 @@ +import { useCallback, useEffect } from "react"; +import type { ReactNode } from "react"; + +import type { BoardEvent, CardEvent, NotificationEvent } from "@kan/api/events"; + +import { authClient } from "@kan/auth/client"; +import { env as runtimeEnv } from "next-runtime-env"; +import { useWorkspace } from "~/providers/workspace"; +import { api } from "~/utils/api"; + +interface EventsProviderProps { + children: ReactNode; +} + +export const EventsProvider: React.FC = ({ children }) => { + const utils = api.useUtils(); + const { workspace } = useWorkspace(); + const { data: session } = authClient.useSession(); + const currentUserId = session?.user?.id; + + const websocketEnabled = Boolean(runtimeEnv("NEXT_PUBLIC_WEBSOCKET_URL")); + const workspacePublicId = workspace.publicId; + const hasWorkspacePublicId = workspacePublicId.length === 12; + const shouldSubscribe = websocketEnabled && hasWorkspacePublicId; + + const invalidateAll = useCallback(() => { + void utils.board.byId.invalidate(); + void utils.board.all.invalidate(); + void utils.card.byId.invalidate(); + void utils.card.getActivities.invalidate(); + }, [utils]); + + const invalidateBoard = useCallback(() => { + void utils.board.byId.invalidate(); + }, [utils]); + + const invalidateCard = useCallback( + (cardPublicId: string) => { + void utils.card.byId.invalidate({ cardPublicId }); + void utils.card.getActivities.invalidate({ cardPublicId }); + }, + [utils], + ); + + const clearCardFromCache = useCallback( + (cardPublicId: string) => { + utils.card.byId.setData({ cardPublicId }, () => undefined); + }, + [utils], + ); + + const handleBoardEvent = useCallback( + (event: BoardEvent) => { + if (event.actorUserId && event.actorUserId === currentUserId) return; + switch (event.type) { + case "card.created": + case "card.updated": + case "card.deleted": + case "checklist.changed": + case "list.created": + case "list.updated": + case "list.deleted": + case "label.changed": + invalidateBoard(); + if ("cardPublicId" in event && event.cardPublicId) { + invalidateCard(event.cardPublicId); + } + break; + case "board.updated": + case "board.deleted": + case "board.created": + invalidateBoard(); + void utils.board.all.invalidate(); + break; + case "member.invited": + case "member.removed": + case "member.role.changed": + void utils.workspace.byId.invalidate(); + break; + default: + break; + } + }, + [currentUserId, invalidateBoard, invalidateCard, utils], + ); + + const handleCardEvent = useCallback( + (event: CardEvent) => { + if (event.actorUserId && event.actorUserId === currentUserId) return; + switch (event.type) { + case "comment.added": + case "comment.updated": + case "comment.deleted": + case "label.added": + case "label.removed": + case "member.added": + case "member.removed": + case "checklist.changed": + case "attachment.changed": + case "updated": + case "deleted": + if (event.type === "deleted") { + clearCardFromCache(event.cardPublicId); + } + invalidateCard(event.cardPublicId); + invalidateBoard(); + break; + default: + break; + } + }, + [clearCardFromCache, currentUserId, invalidateBoard, invalidateCard], + ); + + const handleNotificationEvent = useCallback( + (_event: NotificationEvent) => { + void utils.notification.unreadCount.invalidate(); + void utils.notification.list.invalidate(); + }, + [utils], + ); + + api.events.board.useSubscription( + { workspacePublicId }, + { + enabled: shouldSubscribe, + onData: handleBoardEvent, + onStarted: invalidateAll, + onError(error) { + console.error("Board event subscription error", error); + }, + }, + ); + + api.events.card.useSubscription( + { workspacePublicId }, + { + enabled: shouldSubscribe, + onData: handleCardEvent, + onStarted: invalidateAll, + onError(error) { + console.error("Card event subscription error", error); + }, + }, + ); + + api.events.notification.useSubscription(undefined, { + enabled: websocketEnabled && !!currentUserId, + onData: handleNotificationEvent, + }); + + // When the browser comes back online, invalidate all caches so stale data + // is refreshed and any queued mutations that just replayed are visible. + useEffect(() => { + const handleOnline = () => invalidateAll(); + window.addEventListener("online", handleOnline); + return () => window.removeEventListener("online", handleOnline); + }, [invalidateAll]); + + return <>{children}; +}; diff --git a/apps/web/src/utils/api.ts b/apps/web/src/utils/api.ts index 7a511bc1c..b1f72511f 100644 --- a/apps/web/src/utils/api.ts +++ b/apps/web/src/utils/api.ts @@ -1,13 +1,17 @@ import type { TRPCLink } from "@trpc/client"; import type { inferRouterInputs, inferRouterOutputs } from "@trpc/server"; import { QueryClient } from "@tanstack/react-query"; -import { httpBatchLink, loggerLink } from "@trpc/client"; +import { httpBatchLink, loggerLink, splitLink } from "@trpc/client"; +import { createWSClient, wsLink } from "@trpc/client/links/wsLink/wsLink"; import { createTRPCNext } from "@trpc/next"; import { observable } from "@trpc/server/observable"; import superjson from "superjson"; import type { AppRouter } from "@kan/api/root"; +import { env } from "~/env"; +import { env as runtimeEnv } from "next-runtime-env"; + /** * This is the client-side entrypoint for your tRPC API. It is used to create the `api` object which * contains the Next.js App-wrapper, as well as your type-safe React Query hooks. @@ -39,34 +43,84 @@ const authLink: TRPCLink = () => { const getBaseUrl = () => { if (typeof window !== "undefined") return ""; // browser should use relative url - if (process.env.VERCEL_URL) return `https://${process.env.VERCEL_URL}`; // SSR should use vercel url - return `http://localhost:${process.env.PORT ?? 3000}`; // dev SSR should use localhost + if (env.VERCEL_URL) return `https://${env.VERCEL_URL}`; // SSR should use vercel url + const port = env.PORT ? Number(env.PORT) : undefined; + return `http://localhost:${port ?? 3000}`; // dev SSR should use localhost }; -const queryClient = new QueryClient(); +const queryClient = new QueryClient({ + defaultOptions: { + mutations: { + // Queue mutations while offline; React Query auto-replays them when the + // network comes back. + networkMode: "offlineFirst", + }, + }, +}); + +let wsClient: ReturnType | null = null; +let hasRegisteredBeforeUnload = false; + +const resolveWsClient = () => { + if (typeof window === "undefined") return null; + const wsUrl = runtimeEnv("NEXT_PUBLIC_WEBSOCKET_URL"); + if (!wsUrl) return null; + if (wsClient) return wsClient; + + wsClient = createWSClient({ + url: wsUrl, + retryDelayMs(attemptIndex) { + const capped = Math.min(attemptIndex, 8); + return Math.pow(2, capped) * 500; + }, + }); + + if (!hasRegisteredBeforeUnload) { + hasRegisteredBeforeUnload = true; + window.addEventListener("beforeunload", () => { + if (wsClient) void wsClient.close(); + }); + } -// @ts-expect-error + return wsClient; +}; + +// @ts-expect-error - upstream createTRPCNext types require server transformer setup export const api = createTRPCNext({ config() { + const httpLink = httpBatchLink({ + url: `${getBaseUrl()}/api/trpc`, + transformer: superjson, + }); + + const client = resolveWsClient(); + + const links = [ + loggerLink({ + enabled: (opts) => + env.NODE_ENV === "development" || + (opts.direction === "down" && opts.result instanceof Error), + }), + authLink, + client + ? splitLink({ + condition: (op) => op.type === "subscription", + true: wsLink({ client, transformer: superjson }), + false: httpLink, + }) + : httpLink, + ]; + return { - links: [ - loggerLink({ - enabled: (opts) => - process.env.NODE_ENV === "development" || - (opts.direction === "down" && opts.result instanceof Error), - }), - authLink, - httpBatchLink({ - url: `${getBaseUrl()}/api/trpc`, - transformer: superjson, - }), - ], + links, queryClient: queryClient, }; }, ssr: false, }); +export const getWsClient = () => wsClient; + /** * Inference helper for inputs. * diff --git a/apps/web/src/views/board/components/PresenceAvatars.tsx b/apps/web/src/views/board/components/PresenceAvatars.tsx new file mode 100644 index 000000000..bc3e6caeb --- /dev/null +++ b/apps/web/src/views/board/components/PresenceAvatars.tsx @@ -0,0 +1,78 @@ +import { t } from "@lingui/core/macro"; +import { twMerge } from "tailwind-merge"; + +import type { Viewer } from "~/hooks/useBoardPresence"; +import { getAvatarUrl, getInitialsFromName } from "~/utils/helpers"; + +const MAX_SHOWN = 5; + +const ViewerAvatar = ({ + viewer, + size, +}: { + viewer: Viewer; + size: number; +}) => { + const initials = getInitialsFromName(viewer.userName); + const avatarUrl = viewer.userImage ? getAvatarUrl(viewer.userImage) : ""; + + return ( + + {avatarUrl ? ( + // eslint-disable-next-line @next/next/no-img-element + {viewer.userName} + ) : ( + + + {initials} + + + )} + + {/* Green "online" dot */} + + + ); +}; + +export const PresenceAvatars = ({ + viewers, + className, +}: { + viewers: Viewer[]; + className?: string; +}) => { + if (viewers.length === 0) return null; + + const shown = viewers.slice(0, MAX_SHOWN); + const overflow = viewers.length - MAX_SHOWN; + + return ( +
v.userName).join(", ")}`} + > +
+ {shown.map((viewer) => ( + + ))} + {overflow > 0 && ( + + +{overflow} + + )} +
+
+ ); +}; diff --git a/apps/web/src/views/board/index.tsx b/apps/web/src/views/board/index.tsx index 8d25696a7..4ba0bbe1b 100644 --- a/apps/web/src/views/board/index.tsx +++ b/apps/web/src/views/board/index.tsx @@ -35,9 +35,11 @@ import { useModal } from "~/providers/modal"; import { usePopup } from "~/providers/popup"; import { useWorkspace } from "~/providers/workspace"; import { api } from "~/utils/api"; +import { useBoardPresence } from "~/hooks/useBoardPresence"; import { formatToArray } from "~/utils/helpers"; import { DeleteCardConfirmation } from "~/views/card/components/DeleteCardConfirmation"; import BoardDropdown from "./components/BoardDropdown"; +import { PresenceAvatars } from "./components/PresenceAvatars"; import Card from "./components/Card"; import { CardContextDueDateModal } from "./components/CardContextDueDateModal"; import { CardContextDuplicateModal } from "./components/CardContextDuplicateModal"; @@ -99,6 +101,8 @@ export default function BoardPage({ isTemplate }: { isTemplate?: boolean }) { : params.boardId : null; + const presenceViewers = useBoardPresence(boardId ?? null); + const updateBoard = api.board.update.useMutation(); const { register, handleSubmit, setValue } = useForm({ @@ -568,6 +572,7 @@ export default function BoardPage({ isTemplate }: { isTemplate?: boolean }) { )} {!isTemplate && ( <> + openModal("UPDATE_BOARD_SLUG")} isLoading={isLoading} diff --git a/apps/web/src/views/card/components/ChecklistItemRow.tsx b/apps/web/src/views/card/components/ChecklistItemRow.tsx index 32c689dde..4c7582a6b 100644 --- a/apps/web/src/views/card/components/ChecklistItemRow.tsx +++ b/apps/web/src/views/card/components/ChecklistItemRow.tsx @@ -1,6 +1,6 @@ import type { DraggableProvided } from "react-beautiful-dnd"; import { t } from "@lingui/core/macro"; -import { useState } from "react"; +import { useEffect, useState } from "react"; import { HiXMark } from "react-icons/hi2"; import { RiDraggable } from "react-icons/ri"; import { twMerge } from "tailwind-merge"; @@ -33,6 +33,7 @@ export default function ChecklistItemRow({ }: ChecklistItemRowProps) { const utils = api.useUtils(); const { showPopup } = usePopup(); + const [title, setTitle] = useState(item.title); const [completed, setCompleted] = useState(item.completed); const updateItem = api.checklist.updateItem.useMutation({ @@ -101,6 +102,25 @@ export default function ChecklistItemRow({ }, }); + // Only resync from props when switching items to avoid clobbering edits + useEffect(() => { + if (title !== item.title) { + setTitle(item.title); + } + if (completed !== item.completed) { + setCompleted(item.completed); + } + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [item.publicId, item.title, item.completed]); + + const sanitizeHtmlToPlainText = (html: string): string => + html + .replace(/(\n)?/gi, "\n") + .replace(/
<\/div>/gi, "") + .replace(/<[^>]*>/g, "") + .replace(/ /g, " ") + .trim(); + const handleToggleCompleted = () => { if (viewOnly) return; setCompleted((prev) => !prev); diff --git a/apps/web/src/views/card/index.tsx b/apps/web/src/views/card/index.tsx index 7eacfc438..92464af90 100644 --- a/apps/web/src/views/card/index.tsx +++ b/apps/web/src/views/card/index.tsx @@ -1,7 +1,7 @@ import Link from "next/link"; import { useRouter } from "next/router"; import { t } from "@lingui/core/macro"; -import { useEffect, useState } from "react"; +import { useEffect, useRef, useState } from "react"; import { useForm } from "react-hook-form"; import { HiXMark } from "react-icons/hi2"; import { IoChevronForwardSharp } from "react-icons/io5"; @@ -24,6 +24,8 @@ import { useWorkspace } from "~/providers/workspace"; import { api } from "~/utils/api"; import { invalidateCard } from "~/utils/cardInvalidation"; import { formatMemberDisplayName, getAvatarUrl } from "~/utils/helpers"; +import { env } from "~/env"; +import { env as runtimeEnv } from "next-runtime-env"; import { DeleteLabelConfirmation } from "../../components/DeleteLabelConfirmation"; import ActivityList from "./components/ActivityList"; import { AttachmentThumbnails } from "./components/AttachmentThumbnails"; @@ -202,6 +204,46 @@ export default function CardPage({ isTemplate }: { isTemplate?: boolean }) { const isCreator = card?.createdBy && session?.user.id === card.createdBy; const canEdit = canEditCard || isCreator; + const lastKnownBoardRef = useRef(null); + const [hasRedirected, setHasRedirected] = useState(false); + const [hasLoadedCard, setHasLoadedCard] = useState(false); + + useEffect(() => { + const boardPublicId = card?.list.board.publicId; + if (boardPublicId) { + lastKnownBoardRef.current = boardPublicId; + } + }, [card?.list.board.publicId]); + + useEffect(() => { + if (card && !hasLoadedCard) { + setHasLoadedCard(true); + } + }, [card, hasLoadedCard]); + + const websocketEnabled = Boolean(runtimeEnv("NEXT_PUBLIC_WEBSOCKET_URL")); + const workspacePublicId = workspace.publicId; + const shouldSubscribe = + websocketEnabled && workspacePublicId.length === 12 && Boolean(cardId); + + api.events.card.useSubscription( + { workspacePublicId }, + { + enabled: shouldSubscribe, + onData(event) { + if (event.type !== "deleted") return; + if (event.cardPublicId !== cardId) return; + if (hasRedirected) return; + + const destination = lastKnownBoardRef.current + ? `/boards/${lastKnownBoardRef.current}` + : "/boards"; + setHasRedirected(true); + void router.replace(destination); + }, + }, + ); + const refetchCard = async () => { if (cardId) await utils.card.byId.refetch({ cardPublicId: cardId }); }; @@ -253,7 +295,7 @@ export default function CardPage({ isTemplate }: { isTemplate?: boolean }) { }, }); - const { register, handleSubmit, setValue, watch } = useForm({ + const { register, handleSubmit, setValue } = useForm({ values: { cardId: cardId ?? "", title: card?.title ?? "", @@ -290,8 +332,13 @@ export default function CardPage({ isTemplate }: { isTemplate?: boolean }) { // Open the new item form after creating a new checklist useEffect(() => { if (!card) return; - const state = getModalState("ADD_CHECKLIST"); - const createdId: string | undefined = state?.createdChecklistId; + const rawState = getModalState("ADD_CHECKLIST") as unknown; + const createdId = + rawState && + typeof rawState === "object" && + "createdChecklistId" in rawState + ? (rawState as { createdChecklistId?: string }).createdChecklistId + : undefined; if (createdId) { setActiveChecklistForm(createdId); clearModalState("ADD_CHECKLIST"); diff --git a/apps/websocket/Dockerfile b/apps/websocket/Dockerfile new file mode 100644 index 000000000..58486e229 --- /dev/null +++ b/apps/websocket/Dockerfile @@ -0,0 +1,73 @@ +# syntax=docker/dockerfile:1.7 + +ARG NODE_VERSION=20 + +# ============================================ +# Stage 1: Alpine base with pnpm and turbo +# ============================================ +FROM node:${NODE_VERSION}-alpine AS alpine +RUN apk update && \ + apk add --no-cache libc6-compat && \ + rm -rf /var/cache/apk/* /tmp/* || true && \ + corepack enable && \ + npm install turbo@2.3.1 --global && \ + pnpm config set store-dir ~/.pnpm-store + +# ============================================ +# Stage 2: Prune the monorepo +# ============================================ +FROM alpine AS pruner + +WORKDIR /app +COPY . . +RUN turbo prune --scope=@kan/websocket --docker + +# ============================================ +# Stage 3: Install dependencies +# ============================================ +FROM alpine AS deps +WORKDIR /app + +COPY --from=pruner /app/out/pnpm-lock.yaml ./pnpm-lock.yaml +COPY --from=pruner /app/out/pnpm-workspace.yaml ./pnpm-workspace.yaml +COPY --from=pruner /app/out/json/ . + +ENV CI=true +RUN --mount=type=cache,id=pnpm,target=~/.pnpm-store pnpm install --frozen-lockfile + +# ============================================ +# Stage 4: Build the websocket server +# ============================================ +FROM alpine AS builder +WORKDIR /app + +COPY --from=deps /app/ ./ +COPY --from=pruner /app/out/full/ . + +ENV CI=true +RUN pnpm build --filter=@kan/websocket + +# ============================================ +# Stage 5: Production image +# ============================================ +FROM node:${NODE_VERSION}-alpine AS runner +WORKDIR /app + +ENV NODE_ENV=production +ENV PORT=3010 +ENV WEBSOCKET_PORT=3010 + +RUN apk add --no-cache wget + +# Copy built output +COPY --from=builder /app/apps/websocket/dist/ ./apps/websocket/dist/ + +# Drop privileges +USER node + +EXPOSE 3010 + +HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \ + CMD wget -qO- http://127.0.0.1:3010/health || exit 1 + +CMD ["node", "apps/websocket/dist/index.js"] diff --git a/apps/websocket/build.mjs b/apps/websocket/build.mjs new file mode 100644 index 000000000..b1a854de8 --- /dev/null +++ b/apps/websocket/build.mjs @@ -0,0 +1,19 @@ +import * as esbuild from "esbuild"; + +await esbuild.build({ + entryPoints: ["src/index.ts"], + bundle: true, + platform: "node", + target: "node20", + format: "cjs", + outfile: "dist/index.js", + external: ["fsevents"], + // In CJS output, import.meta.url is undefined; polyfill it so packages + // that do createRequire(import.meta.url) work correctly. + define: { + "import.meta.url": "_importMetaUrl", + }, + banner: { + js: "const _importMetaUrl = require('url').pathToFileURL(__filename).href;", + }, +}); diff --git a/apps/websocket/eslint.config.js b/apps/websocket/eslint.config.js new file mode 100644 index 000000000..d20c0ddef --- /dev/null +++ b/apps/websocket/eslint.config.js @@ -0,0 +1,18 @@ +import baseConfig from "@kan/eslint-config/base"; + +/** @type {import('typescript-eslint').Config} */ +export default [ + { + ignores: ["dist/**"], + }, + ...baseConfig, + { + files: ["scripts/**/*.ts"], + languageOptions: { + parserOptions: { + project: "./tsconfig.scripts.json", + tsconfigRootDir: import.meta.dirname, + }, + }, + }, +]; diff --git a/apps/websocket/package.json b/apps/websocket/package.json new file mode 100644 index 000000000..1566c3b16 --- /dev/null +++ b/apps/websocket/package.json @@ -0,0 +1,37 @@ +{ + "name": "@kan/websocket", + "version": "0.1.0", + "private": true, + "type": "module", + "scripts": { + "build": "node build.mjs", + "clean": "git clean -xdf .cache .turbo dist node_modules", + "dev": "pnpm with-env tsx watch src/index.ts", + "format": "prettier --check . --ignore-path ../../.gitignore", + "lint": "eslint", + "start": "pnpm with-env node ./dist/index.js", + "smoke": "pnpm with-env tsx scripts/smoke.ts", + "typecheck": "tsc --noEmit --emitDeclarationOnly false", + "with-env": "dotenv -e ../../.env --" + }, + "dependencies": { + "@kan/api": "workspace:*", + "@kan/logger": "workspace:*", + "@trpc/server": "catalog:", + "ws": "^8.18.0" + }, + "devDependencies": { + "@kan/eslint-config": "workspace:*", + "@kan/prettier-config": "workspace:*", + "@kan/tsconfig": "workspace:*", + "@types/node": "^20.17.7", + "@types/ws": "^8.18.1", + "dotenv-cli": "^7.4.4", + "esbuild": "^0.25.0", + "eslint": "catalog:", + "prettier": "catalog:", + "tsx": "^4.19.1", + "typescript": "catalog:" + }, + "prettier": "@kan/prettier-config" +} diff --git a/apps/websocket/scripts/smoke.ts b/apps/websocket/scripts/smoke.ts new file mode 100644 index 000000000..38ea367de --- /dev/null +++ b/apps/websocket/scripts/smoke.ts @@ -0,0 +1,73 @@ +/** + * Smoke test: verifies the WebSocket server is reachable and the /health endpoint responds. + * + * Usage: pnpm smoke + * Requires the server to be running on ws://localhost:3010 (or WS_URL env var). + */ +import http from "node:http"; +import { WebSocket } from "ws"; + +const WS_URL = process.env.WS_URL ?? "ws://localhost:3010"; +const HEALTH_URL = WS_URL.replace(/^ws/, "http").replace(/\/$/, "") + "/health"; +const TIMEOUT_MS = 5_000; + +let exitCode = 0; + +const fail = (msg: string) => { + console.error(`[smoke] FAIL: ${msg}`); + exitCode = 1; +}; + +// ── 1. Health endpoint ──────────────────────────────────────────────────────── +const healthCheck = (): Promise => + new Promise((resolve) => { + const req = http.get(HEALTH_URL, (res) => { + if (res.statusCode === 200) { + console.log(`[smoke] PASS: GET ${HEALTH_URL} → 200`); + } else { + fail(`GET ${HEALTH_URL} returned ${res.statusCode}`); + } + resolve(); + }); + req.on("error", (err) => { + fail(`GET ${HEALTH_URL} failed: ${err.message}`); + resolve(); + }); + req.setTimeout(TIMEOUT_MS, () => { + fail(`GET ${HEALTH_URL} timed out`); + req.destroy(); + resolve(); + }); + }); + +// ── 2. WebSocket handshake ──────────────────────────────────────────────────── +const wsCheck = (): Promise => + new Promise((resolve) => { + const timer = setTimeout(() => { + fail(`WebSocket connection to ${WS_URL} timed out after ${TIMEOUT_MS}ms`); + ws.terminate(); + resolve(); + }, TIMEOUT_MS); + + const ws = new WebSocket(WS_URL); + + ws.once("open", () => { + clearTimeout(timer); + console.log(`[smoke] PASS: WebSocket connected to ${WS_URL}`); + ws.close(); + resolve(); + }); + + ws.once("error", (err) => { + clearTimeout(timer); + fail(`WebSocket error: ${err.message}`); + resolve(); + }); + }); + +// ── Run ─────────────────────────────────────────────────────────────────────── +void (async () => { + await healthCheck(); + await wsCheck(); + process.exit(exitCode); +})(); diff --git a/apps/websocket/src/config.ts b/apps/websocket/src/config.ts new file mode 100644 index 000000000..ffe0d5e34 --- /dev/null +++ b/apps/websocket/src/config.ts @@ -0,0 +1,37 @@ +const parseNumber = (value: string | undefined, fallback: number) => { + if (!value) { + return fallback; + } + + const parsed = Number(value); + return Number.isFinite(parsed) ? parsed : fallback; +}; + +const DEFAULT_PORT = 3010; +const DEFAULT_PING_MS = 30_000; +const DEFAULT_PONG_TIMEOUT_MS = 5_000; +const DEFAULT_INGEST_PATH = "/internal/events"; + +export const websocketConfig = { + port: parseNumber( + process.env.WEBSOCKET_PORT, + parseNumber(process.env.PORT, DEFAULT_PORT), + ), + host: process.env.WEBSOCKET_HOST ?? "0.0.0.0", + keepAlive: { + enabled: true, + pingMs: parseNumber(process.env.WEBSOCKET_PING_MS, DEFAULT_PING_MS), + pongWaitMs: parseNumber( + process.env.WEBSOCKET_PONG_TIMEOUT_MS, + DEFAULT_PONG_TIMEOUT_MS, + ), + }, + ingest: { + path: process.env.WEBSOCKET_EVENT_PATH ?? DEFAULT_INGEST_PATH, + secret: process.env.WEBSOCKET_EVENT_SECRET ?? "", + }, +} as const; + +if (process.env.NODE_ENV === "production" && !websocketConfig.ingest.secret) { + throw new Error("WEBSOCKET_EVENT_SECRET must be set in production"); +} diff --git a/apps/websocket/src/index.ts b/apps/websocket/src/index.ts new file mode 100644 index 000000000..e86c3f8ae --- /dev/null +++ b/apps/websocket/src/index.ts @@ -0,0 +1,15 @@ +import { createLogger } from "@kan/logger"; +import { startWebsocketServer } from "~/server"; + +const log = createLogger("websocket"); + +const bootstrap = () => { + try { + startWebsocketServer(); + } catch (error) { + log.error({ err: error }, "failed to start websocket server"); + process.exitCode = 1; + } +}; + +bootstrap(); diff --git a/apps/websocket/src/server/context.ts b/apps/websocket/src/server/context.ts new file mode 100644 index 000000000..d778316e8 --- /dev/null +++ b/apps/websocket/src/server/context.ts @@ -0,0 +1,13 @@ +import type { CreateWSSContextFnOptions } from "@trpc/server/adapters/ws"; + +import { createWSContext } from "@kan/api"; + +export const createWebsocketContext = async ( + opts: CreateWSSContextFnOptions, +) => { + return createWSContext(opts); +}; + +export type WebsocketContext = Awaited< + ReturnType +>; diff --git a/apps/websocket/src/server/handler.ts b/apps/websocket/src/server/handler.ts new file mode 100644 index 000000000..7b2d53082 --- /dev/null +++ b/apps/websocket/src/server/handler.ts @@ -0,0 +1,21 @@ +import type { Server } from "ws"; +import { applyWSSHandler } from "@trpc/server/adapters/ws"; + +import { appRouter } from "@kan/api"; + +import { createWebsocketContext } from "./context"; + +interface KeepAliveOptions { + enabled: boolean; + pingMs: number; + pongWaitMs: number; +} + +export const createWsHandler = (wss: Server, keepAlive: KeepAliveOptions) => { + return applyWSSHandler({ + wss, + router: appRouter, + createContext: createWebsocketContext, + keepAlive, + }); +}; diff --git a/apps/websocket/src/server/index.ts b/apps/websocket/src/server/index.ts new file mode 100644 index 000000000..b961f7237 --- /dev/null +++ b/apps/websocket/src/server/index.ts @@ -0,0 +1,87 @@ +import { createServer } from "node:http"; +import { WebSocketServer } from "ws"; + +import { createLogger } from "@kan/logger"; + +import { websocketConfig } from "~/config"; +import { createWsHandler } from "./handler"; +import { handleEventIngest } from "./ingest"; + +const log = createLogger("websocket"); + +export const startWebsocketServer = () => { + const server = createServer((req, res) => { + void (async () => { + if (req.method === "GET" && req.url === "/health") { + res.statusCode = 200; + res.setHeader("content-type", "application/json"); + res.end(JSON.stringify({ status: "ok" })); + return; + } + + if (req.url === websocketConfig.ingest.path) { + await handleEventIngest(req, res); + return; + } + + res.statusCode = 404; + res.end(); + })(); + }); + + const wss = new WebSocketServer({ server }); + const handler = createWsHandler(wss, websocketConfig.keepAlive); + + wss.on("connection", (socket) => { + log.info(`connection opened (active: ${wss.clients.size})`); + socket.once("close", () => { + log.info(`connection closed (active: ${wss.clients.size})`); + }); + }); + + let shuttingDown = false; + + const shutdown = (signal: NodeJS.Signals) => { + if (shuttingDown) return; + shuttingDown = true; + + // Force-exit safety net — prevents the process from hanging indefinitely. + setTimeout(() => { + log.error("forced exit after shutdown timeout"); + process.exit(1); + }, 10_000).unref(); + + // Inform connected clients so they can resubscribe when the process exits. + log.warn(`${signal} received, notifying clients about reconnect`); + handler.broadcastReconnectNotification(); + wss.close((error) => { + if (error) { + log.error({ err: error }, "error while closing websocket server"); + } + server.close((closeError) => { + if (closeError) { + log.error({ err: closeError }, "error while closing websocket http server"); + } + log.info("websocket server closed"); + process.exit(0); + }); + }); + }; + + (["SIGINT", "SIGTERM"] as NodeJS.Signals[]).forEach((signal) => { + process.once(signal, () => shutdown(signal)); + }); + + server.listen(websocketConfig.port, websocketConfig.host, () => { + log.info( + `websocket listening on :${websocketConfig.port} (ingest path: ${websocketConfig.ingest.path})`, + ); + }); + + return { + port: websocketConfig.port, + handler, + wss, + stop: () => shutdown("SIGTERM"), + }; +}; diff --git a/apps/websocket/src/server/ingest.ts b/apps/websocket/src/server/ingest.ts new file mode 100644 index 000000000..6abd0fa16 --- /dev/null +++ b/apps/websocket/src/server/ingest.ts @@ -0,0 +1,165 @@ +import { timingSafeEqual } from "node:crypto"; +import type { IncomingMessage, ServerResponse } from "node:http"; + +import type { BoardEvent, CardEvent, NotificationEvent } from "@kan/api/events"; +import { publishBoardEvent, publishCardEvent, publishNotificationEvent } from "@kan/api/events"; +import { createLogger } from "@kan/logger"; + +import { websocketConfig } from "~/config"; + +const log = createLogger("websocket:ingest"); + +const MAX_INGEST_BODY_BYTES = 1_048_576; // 1 MiB + +interface WorkspaceEventPayload { + workspacePublicId: string; + scope: "board" | "card"; + event: BoardEvent | CardEvent; + /** @deprecated Pass the secret via the x-websocket-secret header instead. */ + secret?: string; +} + +interface NotificationEventPayload { + userId: string; + scope: "notification"; + event: NotificationEvent; + secret?: string; +} + +type EventPayload = WorkspaceEventPayload | NotificationEventPayload; + +const readBody = async (req: IncomingMessage): Promise => { + const chunks: Uint8Array[] = []; + let total = 0; + + for await (const chunk of req) { + const buf: Uint8Array = Buffer.isBuffer(chunk) + ? chunk + : Buffer.from(chunk as string); + total += buf.byteLength; + if (total > MAX_INGEST_BODY_BYTES) { + throw Object.assign(new Error("payload too large"), { code: "TOO_LARGE" }); + } + chunks.push(buf); + } + + return Buffer.concat(chunks).toString("utf8"); +}; + +const isBoardEvent = ( + payload: EventPayload, +): payload is WorkspaceEventPayload & { event: BoardEvent } => { + return payload.scope === "board"; +}; + +const isCardEvent = ( + payload: EventPayload, +): payload is WorkspaceEventPayload & { event: CardEvent } => { + return payload.scope === "card"; +}; + +const isNotificationEvent = ( + payload: EventPayload, +): payload is NotificationEventPayload => { + return payload.scope === "notification"; +}; + +const isValidSecret = (provided: string, expected: string): boolean => { + if (provided.length !== expected.length) return false; + return timingSafeEqual(Buffer.from(provided), Buffer.from(expected)); +}; + +export const handleEventIngest = async ( + req: IncomingMessage, + res: ServerResponse, +) => { + if (req.method !== "POST") { + res.statusCode = 405; + res.end(); + return; + } + + const contentType = req.headers["content-type"] ?? ""; + if (!contentType.startsWith("application/json")) { + res.statusCode = 415; + res.end(); + return; + } + + let payload: EventPayload; + + try { + const body = await readBody(req); + payload = JSON.parse(body) as EventPayload; + } catch (error) { + const isTooLarge = + error instanceof Error && + (error as Error & { code?: string }).code === "TOO_LARGE"; + if (isTooLarge) { + res.statusCode = 413; + res.end(); + return; + } + log.error({ err: error }, "failed to parse event payload"); + res.statusCode = 400; + res.end(); + return; + } + + if (!isNotificationEvent(payload)) { + if ( + !payload.workspacePublicId || + typeof payload.workspacePublicId !== "string" + ) { + res.statusCode = 400; + res.end(); + return; + } + } + + if (isNotificationEvent(payload)) { + if (!payload.userId || typeof payload.userId !== "string") { + res.statusCode = 400; + res.end(); + return; + } + } + + if (websocketConfig.ingest.secret) { + // Prefer the header-based secret; fall back to body for one-release backward compat. + const headerSecret = req.headers["x-websocket-secret"]; + let provided: string | undefined; + + if (typeof headerSecret === "string") { + provided = headerSecret; + } else if (typeof payload.secret === "string") { + log.warn( + "secret provided in request body is deprecated — use the x-websocket-secret header instead", + ); + provided = payload.secret; + } + + if (!provided || !isValidSecret(provided, websocketConfig.ingest.secret)) { + log.warn("rejecting event due to invalid secret"); + res.statusCode = 401; + res.end(); + return; + } + } + + if (isBoardEvent(payload)) { + publishBoardEvent(payload.workspacePublicId, payload.event); + } else if (isCardEvent(payload)) { + publishCardEvent(payload.workspacePublicId, payload.event); + } else if (isNotificationEvent(payload)) { + publishNotificationEvent(payload.userId, payload.event); + } else { + res.statusCode = 400; + res.end(); + return; + } + + res.statusCode = 204; + res.end(); +}; + diff --git a/apps/websocket/tsconfig.json b/apps/websocket/tsconfig.json new file mode 100644 index 000000000..7385a6b63 --- /dev/null +++ b/apps/websocket/tsconfig.json @@ -0,0 +1,19 @@ +{ + "extends": "@kan/tsconfig/base.json", + "compilerOptions": { + "target": "ES2022", + "module": "ESNext", + "moduleResolution": "Bundler", + "lib": ["ES2022"], + "baseUrl": ".", + "rootDir": "src", + "outDir": "dist", + "noEmit": false, + "paths": { + "~/*": ["./src/*"] + }, + "types": ["node"] + }, + "include": ["src/**/*.ts"], + "exclude": ["dist", "node_modules"] +} diff --git a/apps/websocket/tsconfig.scripts.json b/apps/websocket/tsconfig.scripts.json new file mode 100644 index 000000000..18adf27ad --- /dev/null +++ b/apps/websocket/tsconfig.scripts.json @@ -0,0 +1,16 @@ +{ + "extends": "@kan/tsconfig/base.json", + "compilerOptions": { + "target": "ES2022", + "module": "ESNext", + "moduleResolution": "Bundler", + "lib": ["ES2022"], + "baseUrl": ".", + "noEmit": true, + "paths": { + "~/*": ["./src/*"] + }, + "types": ["node"] + }, + "include": ["scripts/**/*.ts"] +} diff --git a/docker-compose.yml b/docker-compose.yml index f731cebe6..f0e8c672c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -126,11 +126,39 @@ services: - APPLE_CLIENT_ID=${APPLE_CLIENT_ID} - APPLE_CLIENT_SECRET=${APPLE_CLIENT_SECRET} - APPLE_APP_BUNDLE_IDENTIFIER=${APPLE_APP_BUNDLE_IDENTIFIER} + + # WebSocket integration + - NEXT_PUBLIC_WEBSOCKET_URL=${NEXT_PUBLIC_WEBSOCKET_URL:-ws://localhost:3010} + - WEBSOCKET_INGEST_URL=http://websocket:3010/internal/events + - WEBSOCKET_EVENT_SECRET=${WEBSOCKET_EVENT_SECRET} depends_on: migrate: condition: service_completed_successfully restart: unless-stopped + websocket: + build: + context: . + dockerfile: apps/websocket/Dockerfile + container_name: kan-websocket + ports: + - "${WEBSOCKET_PORT:-3010}:3010" + networks: + - kan-network + environment: + - NODE_ENV=production + - POSTGRES_URL=${POSTGRES_URL} + - NEXT_PUBLIC_BASE_URL=${NEXT_PUBLIC_BASE_URL} + - BETTER_AUTH_SECRET=${BETTER_AUTH_SECRET} + - WEBSOCKET_PORT=3010 + - WEBSOCKET_HOST=0.0.0.0 + - WEBSOCKET_EVENT_SECRET=${WEBSOCKET_EVENT_SECRET} + - WEBSOCKET_EVENT_PATH=/internal/events + depends_on: + postgres: + condition: service_healthy + restart: unless-stopped + postgres: image: postgres:15 container_name: kan-db diff --git a/package.json b/package.json index 823aa5a52..e823b7d2b 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "db:studio": "turbo -F @kan/db studio", "dev": "turbo watch dev --continue", "dev:next": "turbo watch dev -F @kan/web...", + "dev:realtime": "turbo run dev --filter=@kan/web --filter=@kan/websocket", "format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache", "format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache", "lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache", diff --git a/packages/api/package.json b/packages/api/package.json index 06d4977f2..2f331dd69 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -16,6 +16,10 @@ "types": "./dist/trpc.d.ts", "default": "./src/trpc.ts" }, + "./events": { + "types": "./dist/events/index.d.ts", + "default": "./src/events/index.ts" + }, "./types": { "types": "./dist/types.d.ts", "default": "./src/types/router.types.ts" diff --git a/packages/api/src/events/bus.ts b/packages/api/src/events/bus.ts new file mode 100644 index 000000000..4f08f5bf3 --- /dev/null +++ b/packages/api/src/events/bus.ts @@ -0,0 +1,232 @@ +import { EventEmitter } from "node:events"; +import IoRedis from "ioredis"; + +import type { BoardEvent, CardEvent, NotificationEvent, PresenceEvent, WorkspaceEventScope } from "./types"; +import { createLogger } from "@kan/logger"; + +const log = createLogger("api:events:bus"); + +// Local EventEmitter used for dispatch in all cases (Redis messages are forwarded here) +const emitter = new EventEmitter({ captureRejections: false }); +emitter.setMaxListeners(0); + +const channelFor = (workspacePublicId: string, scope: WorkspaceEventScope) => + `workspace:${workspacePublicId}:${scope}`; + +const channelForUser = (userId: string) => `user:${userId}:notifications`; + +// --- Redis Pub/Sub --- + +let _redisSub: InstanceType | null = null; + +/** + * Returns a dedicated Redis subscriber connection, creating it lazily. + * A separate connection is required because ioredis does not allow + * commands and subscriptions on the same connection. + */ +function getRedisSubscriber(): InstanceType | null { + if (_redisSub) return _redisSub; + const redisUrl = process.env.REDIS_URL; + if (!redisUrl) return null; + + _redisSub = new IoRedis(redisUrl, { + lazyConnect: true, + enableReadyCheck: true, + maxRetriesPerRequest: 3, + }); + + _redisSub.on("error", (err: Error) => + log.error({ err }, "Redis subscriber connection error"), + ); + + // Forward all Redis pub/sub messages to the local EventEmitter + _redisSub.on("message", (channel: string, message: string) => { + try { + emitter.emit(channel, JSON.parse(message)); + } catch (err) { + log.error({ err, channel }, "Failed to parse Redis pub/sub message"); + } + }); + + return _redisSub; +} + +/** + * Returns a lazily-imported Redis publisher client, or null when Redis is not configured. + * Uses ioredis directly to avoid the shared-connection restriction. + */ +let _redisPub: InstanceType | null = null; + +function getRedisPublisher(): InstanceType | null { + if (_redisPub) return _redisPub; + const redisUrl = process.env.REDIS_URL; + if (!redisUrl) return null; + + _redisPub = new IoRedis(redisUrl, { + lazyConnect: true, + enableReadyCheck: true, + maxRetriesPerRequest: 3, + }); + + _redisPub.on("error", (err: Error) => + log.error({ err }, "Redis publisher connection error"), + ); + + return _redisPub; +} + +/** Publish to Redis if available, otherwise emit locally. */ +function publish(channel: string, event: unknown): void { + const pub = getRedisPublisher(); + if (pub) { + pub.publish(channel, JSON.stringify(event)).catch((err: unknown) => { + log.error({ err, channel }, "Redis publish error"); + }); + } else { + emitter.emit(channel, event); + } +} + +/** + * Subscribe to a channel. + * With Redis: adds the Redis subscription (if not already subscribed on this channel) + * and registers the handler on the local emitter. + * Without Redis: registers directly on the local emitter. + * Returns an unsubscribe function. + */ +function subscribe( + channel: string, + handler: (event: T) => void, +): () => void { + const sub = getRedisSubscriber(); + if (sub) { + sub.subscribe(channel).catch((err: unknown) => { + log.error({ err, channel }, "Redis channel subscribe error"); + }); + } + emitter.on(channel, handler as (...args: unknown[]) => void); + + return () => { + emitter.off(channel, handler as (...args: unknown[]) => void); + // Only unsubscribe from Redis when no local handlers remain for this channel + if (sub && emitter.listenerCount(channel) === 0) { + sub.unsubscribe(channel).catch((err: unknown) => { + log.error({ err, channel }, "Redis channel unsubscribe error"); + }); + } + }; +} + +type BoardHandler = (event: BoardEvent) => void; +type CardHandler = (event: CardEvent) => void; +type NotificationHandler = (event: NotificationEvent) => void; + +export const publishBoardEvent = ( + workspacePublicId: string, + event: BoardEvent, +) => { + publish(channelFor(workspacePublicId, "board"), event); +}; + +export const publishCardEvent = ( + workspacePublicId: string, + event: CardEvent, +) => { + publish(channelFor(workspacePublicId, "card"), event); +}; + +export const subscribeToBoardEvents = ( + workspacePublicId: string, + handler: BoardHandler, +) => subscribe(channelFor(workspacePublicId, "board"), handler); + +export const subscribeToCardEvents = ( + workspacePublicId: string, + handler: CardHandler, +) => subscribe(channelFor(workspacePublicId, "card"), handler); + +export const publishNotificationEvent = (userId: string, event: NotificationEvent) => { + publish(channelForUser(userId), event); +}; + +export const subscribeToNotificationEvents = ( + userId: string, + handler: NotificationHandler, +) => subscribe(channelForUser(userId), handler); + +// --- Presence tracking --- + +type Viewer = { userId: string; userName: string; userImage: string | null }; + +/** In-memory presence map: boardPublicId → Map */ +const presenceMap = new Map>(); + +const channelForPresence = (boardPublicId: string) => + `presence:${boardPublicId}`; + +type PresenceHandler = (event: PresenceEvent) => void; + +/** + * Subscribe to presence events for a board. + * Returns an unsubscribe function. + */ +export const subscribeToPresenceEvents = ( + boardPublicId: string, + handler: PresenceHandler, +) => subscribe(channelForPresence(boardPublicId), handler); + +/** + * Register a viewer as present on a board. + * Emits `presence.state` to the joining subscriber only (via returned function), + * then broadcasts `presence.joined` to all other board subscribers. + */ +export const joinBoard = ( + boardPublicId: string, + viewer: Viewer, +): (() => void) => { + if (!presenceMap.has(boardPublicId)) { + presenceMap.set(boardPublicId, new Map()); + } + const viewers = presenceMap.get(boardPublicId)!; + viewers.set(viewer.userId, viewer); + + // Broadcast joined event to all board presence subscribers + publish(channelForPresence(boardPublicId), { + scope: "presence", + type: "presence.joined", + boardPublicId, + userId: viewer.userId, + userName: viewer.userName, + userImage: viewer.userImage, + } satisfies PresenceEvent); + + return () => { + leaveBoard(boardPublicId, viewer.userId); + }; +}; + +/** + * Remove a viewer from a board and broadcast `presence.left`. + */ +export const leaveBoard = (boardPublicId: string, userId: string): void => { + const viewers = presenceMap.get(boardPublicId); + if (!viewers) return; + viewers.delete(userId); + if (viewers.size === 0) presenceMap.delete(boardPublicId); + + publish(channelForPresence(boardPublicId), { + scope: "presence", + type: "presence.left", + boardPublicId, + userId, + } satisfies PresenceEvent); +}; + +/** + * Return current viewers for a board (snapshot for the joining client). + */ +export const getBoardViewers = (boardPublicId: string): Viewer[] => { + const viewers = presenceMap.get(boardPublicId); + if (!viewers) return []; + return Array.from(viewers.values()); +}; diff --git a/packages/api/src/events/index.ts b/packages/api/src/events/index.ts new file mode 100644 index 000000000..bdd47a572 --- /dev/null +++ b/packages/api/src/events/index.ts @@ -0,0 +1,18 @@ +export * from "./types"; +export { + publishBoardEvent, + publishCardEvent, + publishNotificationEvent, + subscribeToBoardEvents, + subscribeToCardEvents, + subscribeToNotificationEvents, + subscribeToPresenceEvents, + joinBoard, + leaveBoard, + getBoardViewers, +} from "./bus"; +export { + publishBoardEventToWebsocket, + publishCardEventToWebsocket, + publishNotificationEventToWebsocket, +} from "./publisher"; diff --git a/packages/api/src/events/publisher.ts b/packages/api/src/events/publisher.ts new file mode 100644 index 000000000..13da9b6b7 --- /dev/null +++ b/packages/api/src/events/publisher.ts @@ -0,0 +1,66 @@ +import { createLogger } from "@kan/logger"; + +import type { BoardEvent, CardEvent, NotificationEvent } from "./types"; + +const log = createLogger("api:publisher"); + +interface WorkspaceEventPayload { + workspacePublicId: string; + scope: "board" | "card"; + event: BoardEvent | CardEvent; + /** @deprecated Pass the secret via the x-websocket-secret header instead. */ + secret?: string; +} + +interface NotificationEventPayload { + userId: string; + scope: "notification"; + event: NotificationEvent; + secret?: string; +} + +const eventEndpoint = process.env.WEBSOCKET_INGEST_URL; +const eventSecret = process.env.WEBSOCKET_EVENT_SECRET; + +const postEvent = async (payload: WorkspaceEventPayload | NotificationEventPayload) => { + if (!eventEndpoint) { + if (process.env.NODE_ENV !== "production") { + log.warn("WEBSOCKET_INGEST_URL is not configured; skipping event"); + } + return; + } + + try { + await fetch(eventEndpoint, { + method: "POST", + headers: { + "content-type": "application/json", + ...(eventSecret ? { "x-websocket-secret": eventSecret } : {}), + }, + body: JSON.stringify(payload), + }); + } catch (error) { + log.error({ err: error }, "failed to publish workspace event"); + } +}; + +export const publishBoardEventToWebsocket = async ( + workspacePublicId: string, + event: BoardEvent, +) => { + await postEvent({ workspacePublicId, scope: "board", event }); +}; + +export const publishCardEventToWebsocket = async ( + workspacePublicId: string, + event: CardEvent, +) => { + await postEvent({ workspacePublicId, scope: "card", event }); +}; + +export const publishNotificationEventToWebsocket = async ( + userId: string, + event: NotificationEvent, +) => { + await postEvent({ userId, scope: "notification", event }); +}; diff --git a/packages/api/src/events/types.ts b/packages/api/src/events/types.ts new file mode 100644 index 000000000..6a8f7ce61 --- /dev/null +++ b/packages/api/src/events/types.ts @@ -0,0 +1,134 @@ +export type BoardEvent = ( + | { + scope: "board"; + type: "card.created" | "card.updated" | "card.deleted"; + boardId: number; + cardPublicId: string; + listPublicId?: string; + changes?: Partial<{ + title: string | null | undefined; + description: string | null | undefined; + listPublicId: string | undefined; + index: number | undefined; + }>; + } + | { + scope: "board"; + type: "list.created" | "list.updated" | "list.deleted"; + boardId: number; + listPublicId: string; + name?: string; + index?: number; + } + | { + scope: "board"; + type: "checklist.changed"; + boardId: number; + cardPublicId: string; + } + | { + scope: "board"; + type: "label.changed"; + boardId: number; + labelPublicId: string; + } + | { + scope: "board"; + type: "board.created"; + boardId: number; + boardPublicId: string; + } + | { + scope: "board"; + type: "board.updated" | "board.deleted"; + boardId: number; + boardPublicId: string; + } + | { + scope: "board"; + type: "member.invited" | "member.removed" | "member.role.changed"; + workspaceMemberPublicId: string; + }) & { actorUserId?: string }; + +export type CardEvent = ( + | { + scope: "card"; + type: "comment.added" | "comment.updated" | "comment.deleted"; + cardId: number; + cardPublicId: string; + commentPublicId: string; + comment?: string; + } + | { + scope: "card"; + type: "label.added" | "label.removed"; + cardId: number; + cardPublicId: string; + labelPublicId: string; + } + | { + scope: "card"; + type: "member.added" | "member.removed"; + cardId: number; + cardPublicId: string; + workspaceMemberPublicId: string; + } + | { + scope: "card"; + type: "checklist.changed"; + cardId: number; + cardPublicId: string; + } + | { + scope: "card"; + type: "updated" | "deleted"; + cardId: number; + cardPublicId: string; + changes?: Partial<{ + title: string | null | undefined; + description: string | null | undefined; + listPublicId: string | undefined; + index: number | undefined; + }>; + } + | { + scope: "card"; + type: "attachment.changed"; + cardId: number; + cardPublicId: string; + attachmentPublicId?: string; + }) & { actorUserId?: string }; + +export type WorkspaceEventScope = "board" | "card"; + +export type WorkspaceEvent = + | ({ workspacePublicId: string } & { scope: "board"; event: BoardEvent }) + | ({ workspacePublicId: string } & { scope: "card"; event: CardEvent }); + +export type NotificationEvent = { + scope: "notification"; + type: "notification.created"; + notificationPublicId: string; +}; + +export type PresenceEvent = + | { + scope: "presence"; + type: "presence.joined"; + boardPublicId: string; + userId: string; + userName: string; + userImage: string | null; + } + | { + scope: "presence"; + type: "presence.left"; + boardPublicId: string; + userId: string; + } + | { + scope: "presence"; + type: "presence.state"; + boardPublicId: string; + viewers: { userId: string; userName: string; userImage: string | null }[]; + }; diff --git a/packages/api/src/index.ts b/packages/api/src/index.ts index c488f2528..d6cf51cf9 100644 --- a/packages/api/src/index.ts +++ b/packages/api/src/index.ts @@ -6,12 +6,21 @@ import { createCallerFactory, createNextApiContext, createTRPCContext, + createWSContext, } from "./trpc"; +export * from "./events"; + const createCaller = createCallerFactory(appRouter); type RouterInputs = inferRouterInputs; type RouterOutputs = inferRouterOutputs; -export { createTRPCContext, appRouter, createCaller, createNextApiContext }; +export { + createTRPCContext, + createWSContext, + appRouter, + createCaller, + createNextApiContext, +}; export type { AppRouter, RouterInputs, RouterOutputs }; diff --git a/packages/api/src/root.ts b/packages/api/src/root.ts index 711e3ca61..35c014bac 100644 --- a/packages/api/src/root.ts +++ b/packages/api/src/root.ts @@ -2,6 +2,7 @@ import { attachmentRouter } from "./routers/attachment"; import { boardRouter } from "./routers/board"; import { cardRouter } from "./routers/card"; import { checklistRouter } from "./routers/checklist"; +import { eventsRouter } from "./routers/events"; import { feedbackRouter } from "./routers/feedback"; import { healthRouter } from "./routers/health"; import { importRouter } from "./routers/import"; @@ -9,6 +10,7 @@ import { integrationRouter } from "./routers/integration"; import { labelRouter } from "./routers/label"; import { listRouter } from "./routers/list"; import { memberRouter } from "./routers/member"; +import { notificationRouter } from "./routers/notification"; import { permissionRouter } from "./routers/permission"; import { userRouter } from "./routers/user"; import { webhookRouter } from "./routers/webhook"; @@ -25,12 +27,14 @@ export const appRouter = createTRPCRouter({ label: labelRouter, list: listRouter, member: memberRouter, + notification: notificationRouter, import: importRouter, permission: permissionRouter, user: userRouter, webhook: webhookRouter, workspace: workspaceRouter, integration: integrationRouter, + events: eventsRouter, }); export type AppRouter = typeof appRouter; diff --git a/packages/api/src/routers/attachment.ts b/packages/api/src/routers/attachment.ts index 6434a76ef..cb47b76bd 100644 --- a/packages/api/src/routers/attachment.ts +++ b/packages/api/src/routers/attachment.ts @@ -10,6 +10,24 @@ import { generateUID } from "@kan/shared/utils"; import { createTRPCRouter, protectedProcedure } from "../trpc"; import { assertPermission } from "../utils/permissions"; import { deleteObject, generateUploadUrl } from "@kan/shared/utils"; +import type { CardEvent } from "../events"; +import { publishCardEventToWebsocket } from "../events"; +import { createLogger } from "@kan/logger"; + +const log = createLogger("api:events"); + +const emitCardEvent = async ( + workspacePublicId: string | null | undefined, + event: CardEvent, + actorUserId?: string, +) => { + if (!workspacePublicId) return; + try { + await publishCardEventToWebsocket(workspacePublicId, actorUserId ? { ...event, actorUserId } : event); + } catch (error) { + log.error({ err: error }, "failed to publish card event"); + } +}; export const attachmentRouter = createTRPCRouter({ generateUploadUrl: protectedProcedure @@ -157,6 +175,14 @@ export const attachmentRouter = createTRPCRouter({ createdBy: userId, }); + await emitCardEvent(card.workspacePublicId, { + scope: "card", + type: "attachment.changed", + cardId: card.id, + cardPublicId: input.cardPublicId, + attachmentPublicId: attachment.publicId, + }, userId); + return attachment; }), delete: protectedProcedure @@ -220,6 +246,14 @@ export const attachmentRouter = createTRPCRouter({ createdBy: userId, }); + await emitCardEvent(attachment.card.list.board.workspace.publicId, { + scope: "card", + type: "attachment.changed", + cardId: attachment.card.id, + cardPublicId: attachment.card.publicId, + attachmentPublicId: input.attachmentPublicId, + }, userId); + return { success: true }; }), }); diff --git a/packages/api/src/routers/board.ts b/packages/api/src/routers/board.ts index ef764fd96..cc2d7fbb8 100644 --- a/packages/api/src/routers/board.ts +++ b/packages/api/src/routers/board.ts @@ -17,6 +17,25 @@ import { import { createTRPCRouter, protectedProcedure, publicProcedure } from "../trpc"; import { assertCanDelete, assertCanEdit, assertPermission } from "../utils/permissions"; +import { createBoardWebhookPayload, sendWebhooksForWorkspace } from "../utils/webhook"; +import type { BoardEvent } from "../events"; +import { publishBoardEventToWebsocket } from "../events"; +import { createLogger } from "@kan/logger"; + +const log = createLogger("api:events"); + +const emitBoardEvent = async ( + workspacePublicId: string | null | undefined, + event: BoardEvent, + actorUserId?: string, +) => { + if (!workspacePublicId) return; + try { + await publishBoardEventToWebsocket(workspacePublicId, actorUserId ? { ...event, actorUserId } : event); + } catch (error) { + log.error({ err: error }, "failed to publish board event"); + } +}; export const boardRouter = createTRPCRouter({ all: protectedProcedure @@ -388,6 +407,15 @@ export const boardRouter = createTRPCRouter({ sourceBoardId: sourceBoardInfo.id, }); + if (result) { + await emitBoardEvent(input.workspacePublicId, { + scope: "board", + type: "board.created", + boardId: result.id, + boardPublicId: result.publicId, + }, userId); + } + return result; } @@ -441,6 +469,13 @@ export const boardRouter = createTRPCRouter({ await labelRepo.bulkCreate(ctx.db, labelInputs); } + await emitBoardEvent(input.workspacePublicId, { + scope: "board", + type: "board.created", + boardId: result.id, + boardPublicId: result.publicId, + }, userId); + return result; }), update: protectedProcedure @@ -544,6 +579,23 @@ export const boardRouter = createTRPCRouter({ code: "INTERNAL_SERVER_ERROR", }); + await emitBoardEvent(board.workspace.publicId, { + scope: "board", + type: "board.updated", + boardId: board.id, + boardPublicId: input.boardPublicId, + }, userId); + + void sendWebhooksForWorkspace( + ctx.db, + board.workspaceId, + createBoardWebhookPayload( + "board.updated", + { id: input.boardPublicId, name: result.name }, + ctx.user ? { id: ctx.user.id, name: ctx.user.name } : undefined, + ), + ); + return result; }), delete: protectedProcedure @@ -639,6 +691,23 @@ export const boardRouter = createTRPCRouter({ } } + await emitBoardEvent(board.workspace.publicId, { + scope: "board", + type: "board.deleted", + boardId: board.id, + boardPublicId: input.boardPublicId, + }, userId); + + void sendWebhooksForWorkspace( + ctx.db, + board.workspaceId, + createBoardWebhookPayload( + "board.deleted", + { id: input.boardPublicId, name: input.boardPublicId }, + ctx.user ? { id: ctx.user.id, name: ctx.user.name } : undefined, + ), + ); + return { success: true }; }), checkSlugAvailability: publicProcedure diff --git a/packages/api/src/routers/card.ts b/packages/api/src/routers/card.ts index 66550496c..3a1353637 100644 --- a/packages/api/src/routers/card.ts +++ b/packages/api/src/routers/card.ts @@ -9,18 +9,66 @@ import * as labelRepo from "@kan/db/repository/label.repo"; import * as listRepo from "@kan/db/repository/list.repo"; import * as workspaceRepo from "@kan/db/repository/workspace.repo"; -import { createTRPCRouter, protectedProcedure, publicProcedure } from "../trpc"; +import type { BoardEvent, CardEvent } from "../events"; +import { + publishBoardEventToWebsocket, + publishCardEventToWebsocket, +} from "../events"; +import { createTRPCRouter, protectedProcedure, publicProcedure, rateLimitedCardProcedure } from "../trpc"; import { mergeActivities } from "../utils/activities"; -import { sendMentionEmails } from "../utils/notifications"; +import { sendMentionEmails, notifyCardMembers, notifyMemberAssigned } from "../utils/notifications"; import { assertCanDelete, assertCanEdit, assertPermission } from "../utils/permissions"; import { generateAttachmentUrl, generateAvatarUrl } from "@kan/shared/utils"; import { createCardWebhookPayload, + createCommentWebhookPayload, sendWebhooksForWorkspace, } from "../utils/webhook"; +import { createLogger } from "@kan/logger"; + +const log = createLogger("api:events"); + +const emitBoardEvent = async ( + workspacePublicId: string | null | undefined, + event: BoardEvent, + actorUserId?: string, +) => { + if (!workspacePublicId) { + return; + } + + try { + await publishBoardEventToWebsocket(workspacePublicId, actorUserId ? { ...event, actorUserId } : event); + } catch (error) { + log.error({ err: error }, "failed to publish board event"); + } +}; + +const emitCardEvent = async ( + workspacePublicId: string | null | undefined, + event: CardEvent, + actorUserId?: string, +) => { + if (!workspacePublicId) { + return; + } + + try { + await publishCardEventToWebsocket(workspacePublicId, actorUserId ? { ...event, actorUserId } : event); + } catch (error) { + log.error({ err: error }, "failed to publish card event"); + } +}; + +type CardUpdateChangeSet = Partial<{ + title: string | null | undefined; + description: string | null | undefined; + listPublicId: string | undefined; + index: number | undefined; +}>; export const cardRouter = createTRPCRouter({ - create: protectedProcedure + create: rateLimitedCardProcedure .meta({ openapi: { summary: "Create a card", @@ -157,6 +205,15 @@ export const cardRouter = createTRPCRouter({ })); await cardActivityRepo.bulkCreate(ctx.db, cardActivitesInsert); + + // Notify newly assigned members (non-blocking) + void notifyCardMembers({ + db: ctx.db, + cardId: newCardId, + cardPublicId: newCard.publicId, + actorUserId: userId, + type: "card.member.assigned", + }); } if (input.description) { @@ -196,9 +253,17 @@ export const cardRouter = createTRPCRouter({ console.error("Webhook delivery failed:", error); }); + await emitBoardEvent(list.workspacePublicId, { + scope: "board", + type: "card.created", + boardId: list.boardId, + cardPublicId: newCard.publicId, + listPublicId: input.listPublicId, + }, userId); + return newCard; }), - addComment: protectedProcedure + addComment: rateLimitedCardProcedure .meta({ openapi: { summary: "Add a comment to a card", @@ -268,6 +333,43 @@ export const cardRouter = createTRPCRouter({ console.error("Failed to send mention emails:", error); }); + await emitCardEvent(card.workspacePublicId, { + scope: "card", + type: "comment.added", + cardId: card.id, + cardPublicId: input.cardPublicId, + commentPublicId: newComment.publicId, + comment: newComment.comment, + }, userId); + + // Notify assigned card members about the new comment (non-blocking) + void notifyCardMembers({ + db: ctx.db, + cardId: card.id, + cardPublicId: input.cardPublicId, + actorUserId: userId, + type: "card.comment.added", + }); + + void sendWebhooksForWorkspace( + ctx.db, + card.workspaceId, + createCommentWebhookPayload( + { + id: input.cardPublicId, + title: "", + listId: card.listPublicId, + boardId: card.boardPublicId, + }, + { id: newComment.publicId, text: newComment.comment }, + { + boardName: card.boardName, + listName: card.listName, + user: ctx.user ? { id: ctx.user.id, name: ctx.user.name } : undefined, + }, + ), + ); + return newComment; }), updateComment: protectedProcedure @@ -358,6 +460,15 @@ export const cardRouter = createTRPCRouter({ console.error("Failed to send mention emails:", error); }); + await emitCardEvent(card.workspacePublicId, { + scope: "card", + type: "comment.updated", + cardId: card.id, + cardPublicId: input.cardPublicId, + commentPublicId: existingComment.publicId, + comment: updatedComment.comment, + }, userId); + return updatedComment; }), deleteComment: protectedProcedure @@ -435,6 +546,14 @@ export const cardRouter = createTRPCRouter({ createdBy: userId, }); + await emitCardEvent(card.workspacePublicId, { + scope: "card", + type: "comment.deleted", + cardId: card.id, + cardPublicId: input.cardPublicId, + commentPublicId: existingComment.publicId, + }, userId); + return deletedComment; }), addOrRemoveLabel: protectedProcedure @@ -509,6 +628,14 @@ export const cardRouter = createTRPCRouter({ createdBy: userId, }); + await emitCardEvent(card.workspacePublicId, { + scope: "card", + type: "label.removed", + cardId: card.id, + cardPublicId: input.cardPublicId, + labelPublicId: input.labelPublicId, + }, userId); + return { newLabel: false }; } @@ -528,6 +655,14 @@ export const cardRouter = createTRPCRouter({ createdBy: userId, }); + await emitCardEvent(card.workspacePublicId, { + scope: "card", + type: "label.added", + cardId: card.id, + cardPublicId: input.cardPublicId, + labelPublicId: input.labelPublicId, + }, userId); + return { newLabel: true }; }), addOrRemoveMember: protectedProcedure @@ -607,6 +742,14 @@ export const cardRouter = createTRPCRouter({ createdBy: userId, }); + await emitCardEvent(card.workspacePublicId, { + scope: "card", + type: "member.removed", + cardId: card.id, + cardPublicId: input.cardPublicId, + workspaceMemberPublicId: input.workspaceMemberPublicId, + }, userId); + return { newMember: false }; } @@ -626,6 +769,25 @@ export const cardRouter = createTRPCRouter({ createdBy: userId, }); + await emitCardEvent(card.workspacePublicId, { + scope: "card", + type: "member.added", + cardId: card.id, + cardPublicId: input.cardPublicId, + workspaceMemberPublicId: input.workspaceMemberPublicId, + }, userId); + + // Notify the newly assigned member (non-blocking) + if (member.userId) { + void notifyMemberAssigned({ + db: ctx.db, + cardId: card.id, + cardPublicId: input.cardPublicId, + assignedUserId: member.userId, + actorUserId: userId, + }); + } + return { newMember: true }; }), byId: publicProcedure @@ -850,7 +1012,7 @@ export const cardRouter = createTRPCRouter({ nextCursor: result.nextCursor?.toISOString() ?? null, }; }), - update: protectedProcedure + update: rateLimitedCardProcedure .meta({ openapi: { summary: "Update a card", @@ -1091,6 +1253,56 @@ export const cardRouter = createTRPCRouter({ console.error("Webhook delivery failed:", error); }); + const boardChanges: CardUpdateChangeSet = {}; + const cardChanges: CardUpdateChangeSet = {}; + + if (input.title && existingCard.title !== input.title) { + boardChanges.title = input.title; + cardChanges.title = input.title; + } + + if ( + input.description !== undefined && + existingCard.description !== input.description + ) { + boardChanges.description = input.description ?? null; + cardChanges.description = input.description ?? null; + } + + if (input.index !== undefined) { + boardChanges.index = input.index; + cardChanges.index = input.index; + } + + if (input.listPublicId && existingCard.listId !== newListId) { + boardChanges.listPublicId = input.listPublicId; + cardChanges.listPublicId = input.listPublicId; + } + + const hasBoardChanges = Object.keys(boardChanges).length > 0; + const hasCardChanges = Object.keys(cardChanges).length > 0; + + if (hasBoardChanges) { + await emitBoardEvent(card.workspacePublicId, { + scope: "board", + type: "card.updated", + boardId: card.boardId, + cardPublicId: input.cardPublicId, + listPublicId: input.listPublicId ?? card.listPublicId, + changes: boardChanges, + }, userId); + } + + if (hasCardChanges) { + await emitCardEvent(card.workspacePublicId, { + scope: "card", + type: "updated", + cardId: card.id, + cardPublicId: input.cardPublicId, + changes: cardChanges, + }, userId); + } + return result; }), delete: protectedProcedure @@ -1183,6 +1395,21 @@ export const cardRouter = createTRPCRouter({ }); } + await emitBoardEvent(card.workspacePublicId, { + scope: "board", + type: "card.deleted", + boardId: card.boardId, + cardPublicId: input.cardPublicId, + listPublicId: card.listPublicId, + }, userId); + + await emitCardEvent(card.workspacePublicId, { + scope: "card", + type: "deleted", + cardId: card.id, + cardPublicId: input.cardPublicId, + }, userId); + return { success: true }; }), duplicate: protectedProcedure @@ -1355,6 +1582,14 @@ export const cardRouter = createTRPCRouter({ } } + await emitBoardEvent(targetList.workspacePublicId, { + scope: "board", + type: "card.created", + boardId: targetList.boardId, + cardPublicId: newCard.publicId, + listPublicId: input.listPublicId, + }, userId); + return { publicId: newCard.publicId }; }), }); diff --git a/packages/api/src/routers/checklist.ts b/packages/api/src/routers/checklist.ts index a95759477..b27088ee7 100644 --- a/packages/api/src/routers/checklist.ts +++ b/packages/api/src/routers/checklist.ts @@ -6,8 +6,48 @@ import * as cardActivityRepo from "@kan/db/repository/cardActivity.repo"; import * as checklistRepo from "@kan/db/repository/checklist.repo"; import { stripHtml } from "@kan/shared/utils"; +import type { BoardEvent, CardEvent } from "../events"; +import { + publishBoardEventToWebsocket, + publishCardEventToWebsocket, +} from "../events"; import { createTRPCRouter, protectedProcedure } from "../trpc"; import { assertPermission } from "../utils/permissions"; +import { createLogger } from "@kan/logger"; + +const log = createLogger("api:events"); + +const emitBoardEvent = async ( + workspacePublicId: string | null | undefined, + event: BoardEvent, + actorUserId?: string, +) => { + if (!workspacePublicId) { + return; + } + + try { + await publishBoardEventToWebsocket(workspacePublicId, actorUserId ? { ...event, actorUserId } : event); + } catch (error) { + log.error({ err: error }, "failed to publish board event"); + } +}; + +const emitCardEvent = async ( + workspacePublicId: string | null | undefined, + event: CardEvent, + actorUserId?: string, +) => { + if (!workspacePublicId) { + return; + } + + try { + await publishCardEventToWebsocket(workspacePublicId, actorUserId ? { ...event, actorUserId } : event); + } catch (error) { + log.error({ err: error }, "failed to publish card event"); + } +}; const checklistSchema = z.object({ publicId: z.string().length(12), @@ -79,6 +119,20 @@ export const checklistRouter = createTRPCRouter({ createdBy: userId, }); + await emitBoardEvent(card.workspacePublicId, { + scope: "board", + type: "checklist.changed", + boardId: card.boardId, + cardPublicId: input.cardPublicId, + }, userId); + + await emitCardEvent(card.workspacePublicId, { + scope: "card", + type: "checklist.changed", + cardId: card.id, + cardPublicId: input.cardPublicId, + }, userId); + return newChecklist; }), update: protectedProcedure @@ -144,6 +198,20 @@ export const checklistRouter = createTRPCRouter({ createdBy: userId, }); + await emitBoardEvent(checklist.card.list.board.workspace.publicId, { + scope: "board", + type: "checklist.changed", + boardId: checklist.card.list.board.id, + cardPublicId: checklist.card.publicId, + }, userId); + + await emitCardEvent(checklist.card.list.board.workspace.publicId, { + scope: "card", + type: "checklist.changed", + cardId: checklist.cardId, + cardPublicId: checklist.card.publicId, + }, userId); + return updated; }), delete: protectedProcedure @@ -208,6 +276,20 @@ export const checklistRouter = createTRPCRouter({ createdBy: userId, }); + await emitBoardEvent(checklist.card.list.board.workspace.publicId, { + scope: "board", + type: "checklist.changed", + boardId: checklist.card.list.board.id, + cardPublicId: checklist.card.publicId, + }, userId); + + await emitCardEvent(checklist.card.list.board.workspace.publicId, { + scope: "card", + type: "checklist.changed", + cardId: checklist.cardId, + cardPublicId: checklist.card.publicId, + }, userId); + return { success: true }; }), createItem: protectedProcedure @@ -273,6 +355,20 @@ export const checklistRouter = createTRPCRouter({ createdBy: userId, }); + await emitBoardEvent(checklist.card.list.board.workspace.publicId, { + scope: "board", + type: "checklist.changed", + boardId: checklist.card.list.board.id, + cardPublicId: checklist.card.publicId, + }, userId); + + await emitCardEvent(checklist.card.list.board.workspace.publicId, { + scope: "card", + type: "checklist.changed", + cardId: checklist.cardId, + cardPublicId: checklist.card.publicId, + }, userId); + return newChecklistItem; }), updateItem: protectedProcedure @@ -370,6 +466,26 @@ export const checklistRouter = createTRPCRouter({ }); } + if (input.completed !== undefined || input.title !== undefined) { + await emitBoardEvent( + item.checklist.card.list.board.workspace.publicId, + { + scope: "board", + type: "checklist.changed", + boardId: item.checklist.card.list.board.id, + cardPublicId: item.checklist.card.publicId, + }, + userId, + ); + + await emitCardEvent(item.checklist.card.list.board.workspace.publicId, { + scope: "card", + type: "checklist.changed", + cardId: item.checklist.cardId, + cardPublicId: item.checklist.card.publicId, + }, userId); + } + return updatedItem; }), deleteItem: protectedProcedure @@ -428,6 +544,20 @@ export const checklistRouter = createTRPCRouter({ createdBy: userId, }); + await emitBoardEvent(item.checklist.card.list.board.workspace.publicId, { + scope: "board", + type: "checklist.changed", + boardId: item.checklist.card.list.board.id, + cardPublicId: item.checklist.card.publicId, + }, userId); + + await emitCardEvent(item.checklist.card.list.board.workspace.publicId, { + scope: "card", + type: "checklist.changed", + cardId: item.checklist.cardId, + cardPublicId: item.checklist.card.publicId, + }, userId); + return { success: true }; }), }); diff --git a/packages/api/src/routers/events.ts b/packages/api/src/routers/events.ts new file mode 100644 index 000000000..3ee74c0ad --- /dev/null +++ b/packages/api/src/routers/events.ts @@ -0,0 +1,228 @@ +import { TRPCError } from "@trpc/server"; +import { observable } from "@trpc/server/observable"; +import { z } from "zod"; + +import * as boardRepo from "@kan/db/repository/board.repo"; +import * as workspaceRepo from "@kan/db/repository/workspace.repo"; + +import type { BoardEvent, CardEvent, NotificationEvent, PresenceEvent } from "../events"; +import { + getBoardViewers, + joinBoard, + subscribeToBoardEvents, + subscribeToCardEvents, + subscribeToNotificationEvents, + subscribeToPresenceEvents, +} from "../events"; +import { createTRPCRouter, protectedProcedure } from "../trpc"; +import { assertUserInWorkspace } from "../utils/auth"; + +export const eventsRouter = createTRPCRouter({ + board: protectedProcedure + .input( + z.object({ + workspacePublicId: z.string().min(12), + boardPublicId: z.string().min(12).optional(), + }), + ) + .subscription(async ({ ctx, input }) => { + const userId = ctx.user?.id; + + if (!userId) + throw new TRPCError({ + message: "User not authenticated", + code: "UNAUTHORIZED", + }); + + const workspace = await workspaceRepo.getByPublicId( + ctx.db, + input.workspacePublicId, + ); + + if (!workspace) + throw new TRPCError({ + message: `Workspace ${input.workspacePublicId} not found`, + code: "NOT_FOUND", + }); + + await assertUserInWorkspace(ctx.db, userId, workspace.id); + + let filteredBoardId: number | undefined; + if (input.boardPublicId) { + const board = await boardRepo.getIdByPublicId( + ctx.db, + input.boardPublicId, + ); + if (!board || board.workspaceId !== workspace.id) + throw new TRPCError({ + message: `Board ${input.boardPublicId} not found in workspace`, + code: "NOT_FOUND", + }); + filteredBoardId = board.id; + } + + return observable((emit) => { + const unsubscribe = subscribeToBoardEvents( + input.workspacePublicId, + (event) => { + if ( + filteredBoardId !== undefined && + "boardId" in event && + event.boardId !== filteredBoardId + ) + return; + emit.next(event); + }, + ); + + return () => { + unsubscribe(); + }; + }); + }), + card: protectedProcedure + .input( + z.object({ + workspacePublicId: z.string().min(12), + boardPublicId: z.string().min(12).optional(), + }), + ) + .subscription(async ({ ctx, input }) => { + const userId = ctx.user?.id; + + if (!userId) + throw new TRPCError({ + message: "User not authenticated", + code: "UNAUTHORIZED", + }); + + const workspace = await workspaceRepo.getByPublicId( + ctx.db, + input.workspacePublicId, + ); + + if (!workspace) + throw new TRPCError({ + message: `Workspace ${input.workspacePublicId} not found`, + code: "NOT_FOUND", + }); + + await assertUserInWorkspace(ctx.db, userId, workspace.id); + + let filteredBoardId: number | undefined; + if (input.boardPublicId) { + const board = await boardRepo.getIdByPublicId( + ctx.db, + input.boardPublicId, + ); + if (!board || board.workspaceId !== workspace.id) + throw new TRPCError({ + message: `Board ${input.boardPublicId} not found in workspace`, + code: "NOT_FOUND", + }); + filteredBoardId = board.id; + } + + return observable((emit) => { + const unsubscribe = subscribeToCardEvents( + input.workspacePublicId, + (event) => { + if ( + filteredBoardId !== undefined && + "boardId" in event && + event.boardId !== filteredBoardId + ) + return; + emit.next(event); + }, + ); + + return () => { + unsubscribe(); + }; + }); + }), + notification: protectedProcedure + .subscription(async ({ ctx }) => { + const userId = ctx.user?.id; + + if (!userId) + throw new TRPCError({ + message: "User not authenticated", + code: "UNAUTHORIZED", + }); + + return observable((emit) => { + const unsubscribe = subscribeToNotificationEvents(userId, (event) => { + emit.next(event); + }); + + return () => { + unsubscribe(); + }; + }); + }), + + presence: protectedProcedure + .input( + z.object({ + workspacePublicId: z.string().min(12), + boardPublicId: z.string().min(12), + }), + ) + .subscription(async ({ ctx, input }) => { + const userId = ctx.user?.id; + + if (!userId) + throw new TRPCError({ + message: "User not authenticated", + code: "UNAUTHORIZED", + }); + + const workspace = await workspaceRepo.getByPublicId( + ctx.db, + input.workspacePublicId, + ); + + if (!workspace) + throw new TRPCError({ + message: `Workspace ${input.workspacePublicId} not found`, + code: "NOT_FOUND", + }); + + await assertUserInWorkspace(ctx.db, userId, workspace.id); + + const viewer = { + userId, + userName: ctx.user?.name ?? "Unknown", + userImage: ctx.user?.image ?? null, + }; + + return observable((emit) => { + // Tell the joining subscriber who is already present + const current = getBoardViewers(input.boardPublicId); + emit.next({ + scope: "presence", + type: "presence.state", + boardPublicId: input.boardPublicId, + viewers: current, + }); + + // Register presence and get cleanup + const leave = joinBoard(input.boardPublicId, viewer); + + // Forward subsequent presence changes to this subscriber + const unsubscribe = subscribeToPresenceEvents( + input.boardPublicId, + (event) => { + emit.next(event); + }, + ); + + return () => { + unsubscribe(); + leave(); + }; + }); + }), +}); diff --git a/packages/api/src/routers/label.ts b/packages/api/src/routers/label.ts index 040687232..0e7bd6494 100644 --- a/packages/api/src/routers/label.ts +++ b/packages/api/src/routers/label.ts @@ -7,6 +7,25 @@ import * as labelRepo from "@kan/db/repository/label.repo"; import { createTRPCRouter, protectedProcedure } from "../trpc"; import { assertPermission } from "../utils/permissions"; +import type { BoardEvent } from "../events"; +import { publishBoardEventToWebsocket } from "../events"; +import { createLabelWebhookPayload, sendWebhooksForWorkspace } from "../utils/webhook"; +import { createLogger } from "@kan/logger"; + +const log = createLogger("api:events"); + +const emitBoardEvent = async ( + workspacePublicId: string | null | undefined, + event: BoardEvent, + actorUserId?: string, +) => { + if (!workspacePublicId) return; + try { + await publishBoardEventToWebsocket(workspacePublicId, actorUserId ? { ...event, actorUserId } : event); + } catch (error) { + log.error({ err: error }, "failed to publish board event"); + } +}; const labelSchema = z.object({ publicId: z.string(), @@ -116,6 +135,25 @@ export const labelRouter = createTRPCRouter({ code: "INTERNAL_SERVER_ERROR", }); + await emitBoardEvent(board.workspace.publicId, { + scope: "board", + type: "label.changed", + boardId: board.id, + labelPublicId: result.publicId, + }, userId); + + void sendWebhooksForWorkspace( + ctx.db, + board.workspaceId, + createLabelWebhookPayload( + { id: result.publicId, name: result.name, colourCode: result.colourCode }, + { + boardId: input.boardPublicId, + user: ctx.user ? { id: ctx.user.id, name: ctx.user.name } : undefined, + }, + ), + ); + return { publicId: result.publicId, name: result.name, @@ -170,6 +208,25 @@ export const labelRouter = createTRPCRouter({ code: "INTERNAL_SERVER_ERROR", }); + await emitBoardEvent(label.workspacePublicId, { + scope: "board", + type: "label.changed", + boardId: label.boardId, + labelPublicId: input.labelPublicId, + }, userId); + + void sendWebhooksForWorkspace( + ctx.db, + label.workspaceId, + createLabelWebhookPayload( + { id: input.labelPublicId, name: result.name, colourCode: result.colourCode }, + { + boardId: String(label.boardId), + user: ctx.user ? { id: ctx.user.id, name: ctx.user.name } : undefined, + }, + ), + ); + return { publicId: result.publicId, name: result.name, @@ -218,6 +275,25 @@ export const labelRouter = createTRPCRouter({ deletedBy: userId, }); + await emitBoardEvent(label.workspacePublicId, { + scope: "board", + type: "label.changed", + boardId: label.boardId, + labelPublicId: input.labelPublicId, + }, userId); + + void sendWebhooksForWorkspace( + ctx.db, + label.workspaceId, + createLabelWebhookPayload( + { id: input.labelPublicId, name: "", colourCode: null }, + { + boardId: String(label.boardId), + user: ctx.user ? { id: ctx.user.id, name: ctx.user.name } : undefined, + }, + ), + ); + return { success: true }; }), }); diff --git a/packages/api/src/routers/list.ts b/packages/api/src/routers/list.ts index e0085b2b6..873a4c80b 100644 --- a/packages/api/src/routers/list.ts +++ b/packages/api/src/routers/list.ts @@ -6,8 +6,30 @@ import * as cardRepo from "@kan/db/repository/card.repo"; import * as activityRepo from "@kan/db/repository/cardActivity.repo"; import * as listRepo from "@kan/db/repository/list.repo"; +import type { BoardEvent } from "../events"; +import { publishBoardEventToWebsocket } from "../events"; import { createTRPCRouter, protectedProcedure } from "../trpc"; import { assertCanDelete, assertCanEdit, assertPermission } from "../utils/permissions"; +import { createListWebhookPayload, sendWebhooksForWorkspace } from "../utils/webhook"; +import { createLogger } from "@kan/logger"; + +const log = createLogger("api:events"); + +const emitBoardEvent = async ( + workspacePublicId: string | null | undefined, + event: BoardEvent, + actorUserId?: string, +) => { + if (!workspacePublicId) { + return; + } + + try { + await publishBoardEventToWebsocket(workspacePublicId, actorUserId ? { ...event, actorUserId } : event); + } catch (error) { + log.error({ err: error }, "failed to publish board event"); + } +}; export const listRouter = createTRPCRouter({ create: protectedProcedure @@ -62,6 +84,28 @@ export const listRouter = createTRPCRouter({ code: "INTERNAL_SERVER_ERROR", }); + await emitBoardEvent(board.workspace?.publicId, { + scope: "board", + type: "list.created", + boardId: board.id, + listPublicId: result.publicId, + name: result.name, + index: result.index, + }, userId); + + void sendWebhooksForWorkspace( + ctx.db, + board.workspaceId, + createListWebhookPayload( + "list.created", + { id: result.publicId, name: result.name }, + { + boardId: input.boardPublicId, + user: ctx.user ? { id: ctx.user.id, name: ctx.user.name } : undefined, + }, + ), + ); + return result; }), delete: protectedProcedure @@ -143,6 +187,27 @@ export const listRouter = createTRPCRouter({ if (activities.length) await activityRepo.bulkCreate(ctx.db, activities); + await emitBoardEvent(list.workspacePublicId, { + scope: "board", + type: "list.deleted", + boardId: list.boardId, + listPublicId: input.listPublicId, + }, userId); + + void sendWebhooksForWorkspace( + ctx.db, + list.workspaceId, + createListWebhookPayload( + "list.deleted", + { id: input.listPublicId, name: list.name }, + { + boardId: list.boardPublicId, + boardName: list.boardName, + user: ctx.user ? { id: ctx.user.id, name: ctx.user.name } : undefined, + }, + ), + ); + return { success: true }; }), update: protectedProcedure @@ -220,6 +285,31 @@ export const listRouter = createTRPCRouter({ code: "INTERNAL_SERVER_ERROR", }); + if (input.name !== undefined || input.index !== undefined) { + await emitBoardEvent(list.workspacePublicId, { + scope: "board", + type: "list.updated", + boardId: list.boardId, + listPublicId: input.listPublicId, + name: input.name, + index: input.index, + }, userId); + + void sendWebhooksForWorkspace( + ctx.db, + list.workspaceId, + createListWebhookPayload( + "list.updated", + { id: input.listPublicId, name: result.name }, + { + boardId: list.boardPublicId, + boardName: list.boardName, + user: ctx.user ? { id: ctx.user.id, name: ctx.user.name } : undefined, + }, + ), + ); + } + return result; }), }); diff --git a/packages/api/src/routers/member.ts b/packages/api/src/routers/member.ts index b5b55d307..c82b3ddef 100644 --- a/packages/api/src/routers/member.ts +++ b/packages/api/src/routers/member.ts @@ -21,6 +21,24 @@ import { assertCanManageRole, assertPermission, } from "../utils/permissions"; +import type { BoardEvent } from "../events"; +import { publishBoardEventToWebsocket } from "../events"; +import { createLogger } from "@kan/logger"; + +const log = createLogger("api:events"); + +const emitBoardEvent = async ( + workspacePublicId: string | null | undefined, + event: BoardEvent, + actorUserId?: string, +) => { + if (!workspacePublicId) return; + try { + await publishBoardEventToWebsocket(workspacePublicId, actorUserId ? { ...event, actorUserId } : event); + } catch (error) { + log.error({ err: error }, "failed to publish board event"); + } +}; export const memberRouter = createTRPCRouter({ invite: protectedProcedure @@ -163,6 +181,12 @@ export const memberRouter = createTRPCRouter({ }); } + await emitBoardEvent(input.workspacePublicId, { + scope: "board", + type: "member.invited", + workspaceMemberPublicId: invite.publicId, + }, userId); + return invite; }), delete: protectedProcedure @@ -229,6 +253,12 @@ export const memberRouter = createTRPCRouter({ code: "INTERNAL_SERVER_ERROR", }); + await emitBoardEvent(input.workspacePublicId, { + scope: "board", + type: "member.removed", + workspaceMemberPublicId: input.memberPublicId, + }, userId); + // Handle subscription seat decrement for cloud environment if (process.env.NEXT_PUBLIC_KAN_ENV === "cloud") { const subscriptions = await subscriptionRepo.getByReferenceId( @@ -744,6 +774,12 @@ export const memberRouter = createTRPCRouter({ roleId: workspaceRole?.id ?? null, }); + await emitBoardEvent(input.workspacePublicId, { + scope: "board", + type: "member.role.changed", + workspaceMemberPublicId: input.memberPublicId, + }, userId); + return { success: true, role: input.role, diff --git a/packages/api/src/routers/notification.ts b/packages/api/src/routers/notification.ts new file mode 100644 index 000000000..1373e44cf --- /dev/null +++ b/packages/api/src/routers/notification.ts @@ -0,0 +1,123 @@ +import { TRPCError } from "@trpc/server"; +import { z } from "zod"; + +import * as notificationRepo from "@kan/db/repository/notification.repo"; + +import { createTRPCRouter, protectedProcedure } from "../trpc"; + +export const notificationRouter = createTRPCRouter({ + list: protectedProcedure + .meta({ + openapi: { + method: "GET", + path: "/notifications", + summary: "List notifications", + description: "Retrieves paginated notifications for the current user", + tags: ["Notifications"], + protect: true, + }, + }) + .input( + z.object({ + limit: z.number().min(1).max(50).default(20), + offset: z.number().min(0).default(0), + }), + ) + .output(z.custom>>()) + .query(async ({ ctx, input }) => { + const userId = ctx.user?.id; + + if (!userId) + throw new TRPCError({ + message: "User not authenticated", + code: "UNAUTHORIZED", + }); + + return notificationRepo.list(ctx.db, { + userId, + limit: input.limit, + offset: input.offset, + }); + }), + + unreadCount: protectedProcedure + .meta({ + openapi: { + method: "GET", + path: "/notifications/unread-count", + summary: "Get unread notification count", + description: "Returns the count of unread notifications for the current user", + tags: ["Notifications"], + protect: true, + }, + }) + .output(z.object({ count: z.number() })) + .query(async ({ ctx }) => { + const userId = ctx.user?.id; + + if (!userId) + throw new TRPCError({ + message: "User not authenticated", + code: "UNAUTHORIZED", + }); + + const count = await notificationRepo.getUnreadCount(ctx.db, userId); + return { count }; + }), + + markRead: protectedProcedure + .meta({ + openapi: { + method: "POST", + path: "/notifications/{notificationPublicId}/read", + summary: "Mark notification as read", + description: "Marks a single notification as read", + tags: ["Notifications"], + protect: true, + }, + }) + .input(z.object({ notificationPublicId: z.string().min(12) })) + .output(z.object({ success: z.boolean() })) + .mutation(async ({ ctx, input }) => { + const userId = ctx.user?.id; + + if (!userId) + throw new TRPCError({ + message: "User not authenticated", + code: "UNAUTHORIZED", + }); + + await notificationRepo.markReadByPublicId(ctx.db, { + publicId: input.notificationPublicId, + userId, + }); + + return { success: true }; + }), + + markAllRead: protectedProcedure + .meta({ + openapi: { + method: "POST", + path: "/notifications/read-all", + summary: "Mark all notifications as read", + description: "Marks all unread notifications as read for the current user", + tags: ["Notifications"], + protect: true, + }, + }) + .output(z.object({ success: z.boolean() })) + .mutation(async ({ ctx }) => { + const userId = ctx.user?.id; + + if (!userId) + throw new TRPCError({ + message: "User not authenticated", + code: "UNAUTHORIZED", + }); + + await notificationRepo.markAllRead(ctx.db, userId); + + return { success: true }; + }), +}); diff --git a/packages/api/src/trpc.ts b/packages/api/src/trpc.ts index 73bcbbf09..6cc7068ba 100644 --- a/packages/api/src/trpc.ts +++ b/packages/api/src/trpc.ts @@ -1,5 +1,7 @@ import { randomUUID } from "crypto"; import type { CreateNextContextOptions } from "@trpc/server/adapters/next"; +import type { CreateWSSContextFnOptions } from "@trpc/server/adapters/ws"; +import type { IncomingHttpHeaders } from "http"; import type { NextApiRequest } from "next"; import type { OpenApiMeta } from "trpc-to-openapi"; import { initTRPC, TRPCError } from "@trpc/server"; @@ -11,6 +13,7 @@ import type { dbClient } from "@kan/db/client"; import { initAuth } from "@kan/auth/server"; import { createDrizzleClient } from "@kan/db/client"; import { createLogger } from "@kan/logger"; +import { createPerUserRateLimiter } from "./utils/rateLimit"; const log = createLogger("api"); @@ -67,6 +70,52 @@ const createAuthWithHeaders = ( }; }; +const toHeaders = (headers: IncomingHttpHeaders) => { + const normalized = new Headers(); + + for (const [key, value] of Object.entries(headers)) { + if (!value) { + continue; + } + + if (Array.isArray(value)) { + if (value.length === 0) { + continue; + } + + normalized.set(key, value.join(", ")); + continue; + } + + normalized.set(key, value); + } + + return normalized; +}; + +const mergeConnectionParamsIntoHeaders = ( + headers: Headers, + connectionParams: unknown, +) => { + if (!connectionParams || typeof connectionParams !== "object") { + return; + } + + const entries = connectionParams as Record; + + for (const [key, rawValue] of Object.entries(entries)) { + if (typeof rawValue !== "string" || rawValue.length === 0) { + continue; + } + + const normalizedKey = key.toLowerCase(); + if (!headers.has(normalizedKey)) { + // Allow non-browser clients to forward auth data (e.g. Authorization, Cookie). + headers.set(normalizedKey, rawValue); + } + } +}; + interface CreateContextOptions { user: User | null | undefined; db: dbClient; @@ -142,6 +191,25 @@ export const createRESTContext = async ({ req }: CreateNextContextOptions) => { }); }; +export const createWSContext = async (opts: CreateWSSContextFnOptions) => { + const db = createDrizzleClient(); + const baseAuth = initAuth(db); + const headers = toHeaders(opts.req.headers); + + mergeConnectionParamsIntoHeaders(headers, opts.info.connectionParams); + + const auth = createAuthWithHeaders(baseAuth, headers); + + let session: Awaited> | undefined; + try { + session = await auth.api.getSession(); + } catch (error) { + log.warn({ err: error }, "Failed to get session for WS context, treating as unauthenticated"); + } + + return createInnerTRPCContext({ db, user: session?.user, auth, headers }); +}; + const t = initTRPC .context() .meta() @@ -227,6 +295,29 @@ export const protectedProcedure = t.procedure .use(loggingMiddleware) .use(enforceUserIsAuthed); +// 60 mutations per 60 seconds per user, applied to high-frequency card mutations +const _cardMutationRateLimiter = createPerUserRateLimiter({ points: 60, duration: 60 }); + +const cardRateLimitMiddleware = t.middleware(async ({ ctx, path, next }) => { + const userId = ctx.user?.id ?? "anonymous"; + try { + await _cardMutationRateLimiter(userId, path); + } catch (err) { + if (err && typeof err === "object" && "rateLimited" in err) { + throw new TRPCError({ + code: "TOO_MANY_REQUESTS", + message: "Too many requests, please try again later.", + }); + } + } + return next(); +}); + +export const rateLimitedCardProcedure = t.procedure + .use(loggingMiddleware) + .use(enforceUserIsAuthed) + .use(cardRateLimitMiddleware); + export const adminProtectedProcedure = t.procedure .use(loggingMiddleware) .use(enforceUserIsAdmin) diff --git a/packages/api/src/utils/notifications.ts b/packages/api/src/utils/notifications.ts index 7c516a087..efd59f809 100644 --- a/packages/api/src/utils/notifications.ts +++ b/packages/api/src/utils/notifications.ts @@ -12,6 +12,8 @@ import * as workspaceRepo from "@kan/db/repository/workspace.repo"; import { sendEmail } from "@kan/email"; import { parseMentionsFromHTML } from "@kan/shared/utils"; +import { publishNotificationEventToWebsocket } from "../events"; + /** * Sends mention notification emails to mentioned members * Only sends emails for new mentions (checks notification table to avoid duplicates) @@ -100,13 +102,21 @@ export async function sendMentionEmails({ } // Create notification record - await notificationRepo.create(db, { + const notification = await notificationRepo.create(db, { type: "mention", userId, cardId, commentId, }); + if (notification) { + void publishNotificationEventToWebsocket(userId, { + scope: "notification", + type: "notification.created", + notificationPublicId: notification.publicId, + }); + } + // Send email await sendEmail( email, @@ -130,3 +140,94 @@ export async function sendMentionEmails({ } } +/** + * Sends in-app notifications to all members assigned to a card, excluding the + * actor who triggered the event (to avoid self-notifications). + */ +export async function notifyCardMembers({ + db, + cardId, + cardPublicId, + actorUserId, + type, +}: { + db: dbClient; + cardId: number; + cardPublicId: string; + actorUserId: string; + type: "card.member.assigned" | "card.comment.added" | "card.updated"; +}) { + try { + const card = await cardRepo.getWithListAndMembersByPublicId(db, cardPublicId); + if (!card) return; + + const members = card.members + .map((m) => m.user?.id) + .filter((id): id is string => !!id && id !== actorUserId); + + if (members.length === 0) return; + + await Promise.all( + members.map(async (userId) => { + try { + const notification = await notificationRepo.create(db, { + type, + userId, + cardId, + }); + + if (notification) { + void publishNotificationEventToWebsocket(userId, { + scope: "notification", + type: "notification.created", + notificationPublicId: notification.publicId, + }); + } + } catch (error) { + log.error({ err: error, userId, cardPublicId, type }, "Failed to create card member notification"); + } + }), + ); + } catch (error) { + log.error({ err: error, cardPublicId }, "Error notifying card members"); + } +} + +/** + * Sends an assignment notification to a specific user for a card. + */ +export async function notifyMemberAssigned({ + db, + cardId, + cardPublicId, + assignedUserId, + actorUserId, +}: { + db: dbClient; + cardId: number; + cardPublicId: string; + assignedUserId: string; + actorUserId: string; +}) { + // Don't notify users who assigned themselves + if (assignedUserId === actorUserId) return; + + try { + const notification = await notificationRepo.create(db, { + type: "card.member.assigned", + userId: assignedUserId, + cardId, + }); + + if (notification) { + void publishNotificationEventToWebsocket(assignedUserId, { + scope: "notification", + type: "notification.created", + notificationPublicId: notification.publicId, + }); + } + } catch (error) { + log.error({ err: error, assignedUserId, cardPublicId }, "Failed to send assignment notification"); + } +} + diff --git a/packages/api/src/utils/rateLimit.ts b/packages/api/src/utils/rateLimit.ts index 948618a8c..55317bc6e 100644 --- a/packages/api/src/utils/rateLimit.ts +++ b/packages/api/src/utils/rateLimit.ts @@ -100,3 +100,31 @@ export function withRateLimit( }; } +/** + * Creates a per-user rate limiter for use in tRPC middlewares. + * The returned function throws `{ rateLimited: true }` when the limit is exceeded + * and resolves normally otherwise (including on unexpected errors, to avoid false positives). + */ +export function createPerUserRateLimiter( + options: { points?: number; duration?: number } = {}, +) { + const limiter = createRateLimiter(options); + + return async (userId: string, keyPrefix: string): Promise => { + const key = `trpc:${keyPrefix}:${userId}`; + try { + await limiter.consume(key); + } catch (error) { + if ( + error && + typeof error === "object" && + ("msBeforeNext" in error || "remainingPoints" in error) + ) { + throw { rateLimited: true }; + } + // Unexpected errors: don't block the request + log.warn({ err: error, key }, "Rate limiter error, allowing request through"); + } + }; +} + diff --git a/packages/api/src/utils/webhook.test.ts b/packages/api/src/utils/webhook.test.ts index 55574a1be..3d8c52555 100644 --- a/packages/api/src/utils/webhook.test.ts +++ b/packages/api/src/utils/webhook.test.ts @@ -68,8 +68,8 @@ describe("webhook utilities", () => { }, ); - expect(payload.data.card.description).toBe("A description"); - expect(payload.data.card.dueDate).toBe("2024-02-01T10:00:00.000Z"); + expect(payload.data.card?.description).toBe("A description"); + expect(payload.data.card?.dueDate).toBe("2024-02-01T10:00:00.000Z"); }); it("includes board context when provided", () => { diff --git a/packages/api/src/utils/webhook.ts b/packages/api/src/utils/webhook.ts index 6b59dd021..4cde32cb9 100644 --- a/packages/api/src/utils/webhook.ts +++ b/packages/api/src/utils/webhook.ts @@ -14,7 +14,7 @@ export interface WebhookPayload { event: WebhookEventType; timestamp: string; data: { - card: { + card?: { id: string; title: string; description?: string | null; @@ -30,6 +30,15 @@ export interface WebhookPayload { id: string; name: string; }; + label?: { + id: string; + name: string; + colourCode: string | null; + }; + comment?: { + id: string; + text: string; + }; user?: { id: string; name: string | null; @@ -260,3 +269,94 @@ export function createCardWebhookPayload( }, }; } + +export function createBoardWebhookPayload( + event: WebhookEventType, + board: { id: string; name: string }, + user?: { id: string; name: string | null }, +): WebhookPayload { + return { + event, + timestamp: new Date().toISOString(), + data: { board, user }, + }; +} + +export function createListWebhookPayload( + event: WebhookEventType, + list: { id: string; name: string }, + context: { + boardId: string; + boardName?: string; + user?: { id: string; name: string | null }; + }, +): WebhookPayload { + return { + event, + timestamp: new Date().toISOString(), + data: { + list, + board: context.boardName + ? { id: context.boardId, name: context.boardName } + : undefined, + user: context.user, + }, + }; +} + +export function createLabelWebhookPayload( + label: { id: string; name: string; colourCode: string | null }, + context: { + boardId: string; + boardName?: string; + user?: { id: string; name: string | null }; + }, +): WebhookPayload { + return { + event: "label.changed", + timestamp: new Date().toISOString(), + data: { + label, + board: context.boardName + ? { id: context.boardId, name: context.boardName } + : undefined, + user: context.user, + }, + }; +} + +export function createCommentWebhookPayload( + card: { + id: string; + title: string; + listId: string; + boardId: string; + }, + comment: { id: string; text: string }, + context: { + boardName?: string; + listName?: string; + user?: { id: string; name: string | null }; + }, +): WebhookPayload { + return { + event: "card.comment.added", + timestamp: new Date().toISOString(), + data: { + card: { + id: card.id, + title: card.title, + listId: card.listId, + boardId: card.boardId, + }, + comment, + board: context.boardName + ? { id: card.boardId, name: context.boardName } + : undefined, + list: context.listName + ? { id: card.listId, name: context.listName } + : undefined, + user: context.user, + }, + }; +} diff --git a/packages/db/migrations/20260501215538_AddCardNotificationTypes.sql b/packages/db/migrations/20260501215538_AddCardNotificationTypes.sql new file mode 100644 index 000000000..bce9c4f3d --- /dev/null +++ b/packages/db/migrations/20260501215538_AddCardNotificationTypes.sql @@ -0,0 +1,3 @@ +ALTER TYPE "public"."notification_type" ADD VALUE 'card.member.assigned';--> statement-breakpoint +ALTER TYPE "public"."notification_type" ADD VALUE 'card.comment.added';--> statement-breakpoint +ALTER TYPE "public"."notification_type" ADD VALUE 'card.updated'; \ No newline at end of file diff --git a/packages/db/migrations/meta/20260501215538_snapshot.json b/packages/db/migrations/meta/20260501215538_snapshot.json new file mode 100644 index 000000000..d0a6bc933 --- /dev/null +++ b/packages/db/migrations/meta/20260501215538_snapshot.json @@ -0,0 +1,3872 @@ +{ + "id": "575f6b2c-557e-481d-8173-6a0ba0957696", + "prevId": "8a9c9a82-a807-45ab-97cc-95d0ea84d2aa", + "version": "7", + "dialect": "postgresql", + "tables": { + "public.account": { + "name": "account", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "accountId": { + "name": "accountId", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "providerId": { + "name": "providerId", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "userId": { + "name": "userId", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "accessToken": { + "name": "accessToken", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "refreshToken": { + "name": "refreshToken", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "idToken": { + "name": "idToken", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "accessTokenExpiresAt": { + "name": "accessTokenExpiresAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "refreshTokenExpiresAt": { + "name": "refreshTokenExpiresAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "scope": { + "name": "scope", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "password": { + "name": "password", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "account_userId_user_id_fk": { + "name": "account_userId_user_id_fk", + "tableFrom": "account", + "tableTo": "user", + "columnsFrom": [ + "userId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.apiKey": { + "name": "apiKey", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "start": { + "name": "start", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "prefix": { + "name": "prefix", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "key": { + "name": "key", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "userId": { + "name": "userId", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "refillInterval": { + "name": "refillInterval", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "refillAmount": { + "name": "refillAmount", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "lastRefillAt": { + "name": "lastRefillAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "enabled": { + "name": "enabled", + "type": "boolean", + "primaryKey": false, + "notNull": false + }, + "rateLimitEnabled": { + "name": "rateLimitEnabled", + "type": "boolean", + "primaryKey": false, + "notNull": false + }, + "rateLimitTimeWindow": { + "name": "rateLimitTimeWindow", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "rateLimitMax": { + "name": "rateLimitMax", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "requestCount": { + "name": "requestCount", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "remaining": { + "name": "remaining", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "lastRequest": { + "name": "lastRequest", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "expiresAt": { + "name": "expiresAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "permissions": { + "name": "permissions", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "metadata": { + "name": "metadata", + "type": "text", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "apiKey_userId_user_id_fk": { + "name": "apiKey_userId_user_id_fk", + "tableFrom": "apiKey", + "tableTo": "user", + "columnsFrom": [ + "userId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.session": { + "name": "session", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "expiresAt": { + "name": "expiresAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "token": { + "name": "token", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "ipAddress": { + "name": "ipAddress", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "userAgent": { + "name": "userAgent", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "userId": { + "name": "userId", + "type": "uuid", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "session_userId_user_id_fk": { + "name": "session_userId_user_id_fk", + "tableFrom": "session", + "tableTo": "user", + "columnsFrom": [ + "userId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "session_token_unique": { + "name": "session_token_unique", + "nullsNotDistinct": false, + "columns": [ + "token" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.verification": { + "name": "verification", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "identifier": { + "name": "identifier", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "value": { + "name": "value", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "expiresAt": { + "name": "expiresAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.board": { + "name": "board", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "slug": { + "name": "slug", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedAt": { + "name": "deletedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedBy": { + "name": "deletedBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "importId": { + "name": "importId", + "type": "bigint", + "primaryKey": false, + "notNull": false + }, + "workspaceId": { + "name": "workspaceId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "visibility": { + "name": "visibility", + "type": "board_visibility", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'private'" + }, + "type": { + "name": "type", + "type": "board_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'regular'" + }, + "isArchived": { + "name": "isArchived", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "sourceBoardId": { + "name": "sourceBoardId", + "type": "bigint", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "board_is_archived_idx": { + "name": "board_is_archived_idx", + "columns": [ + { + "expression": "isArchived", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "board_visibility_idx": { + "name": "board_visibility_idx", + "columns": [ + { + "expression": "visibility", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "board_type_idx": { + "name": "board_type_idx", + "columns": [ + { + "expression": "type", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "board_source_idx": { + "name": "board_source_idx", + "columns": [ + { + "expression": "sourceBoardId", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "unique_slug_per_workspace": { + "name": "unique_slug_per_workspace", + "columns": [ + { + "expression": "workspaceId", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "slug", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "where": "\"board\".\"deletedAt\" IS NULL", + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "board_createdBy_user_id_fk": { + "name": "board_createdBy_user_id_fk", + "tableFrom": "board", + "tableTo": "user", + "columnsFrom": [ + "createdBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "board_deletedBy_user_id_fk": { + "name": "board_deletedBy_user_id_fk", + "tableFrom": "board", + "tableTo": "user", + "columnsFrom": [ + "deletedBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "board_importId_import_id_fk": { + "name": "board_importId_import_id_fk", + "tableFrom": "board", + "tableTo": "import", + "columnsFrom": [ + "importId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "board_workspaceId_workspace_id_fk": { + "name": "board_workspaceId_workspace_id_fk", + "tableFrom": "board", + "tableTo": "workspace", + "columnsFrom": [ + "workspaceId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "board_publicId_unique": { + "name": "board_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.user_board_favorites": { + "name": "user_board_favorites", + "schema": "", + "columns": { + "userId": { + "name": "userId", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "boardId": { + "name": "boardId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "user_board_favorite_user_idx": { + "name": "user_board_favorite_user_idx", + "columns": [ + { + "expression": "userId", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "user_board_favorite_board_idx": { + "name": "user_board_favorite_board_idx", + "columns": [ + { + "expression": "boardId", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "user_board_favorites_userId_user_id_fk": { + "name": "user_board_favorites_userId_user_id_fk", + "tableFrom": "user_board_favorites", + "tableTo": "user", + "columnsFrom": [ + "userId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "user_board_favorites_boardId_board_id_fk": { + "name": "user_board_favorites_boardId_board_id_fk", + "tableFrom": "user_board_favorites", + "tableTo": "board", + "columnsFrom": [ + "boardId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "user_board_favorites_userId_boardId_pk": { + "name": "user_board_favorites_userId_boardId_pk", + "columns": [ + "userId", + "boardId" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.card_activity": { + "name": "card_activity", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "card_activity_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "cardId": { + "name": "cardId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "fromIndex": { + "name": "fromIndex", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "toIndex": { + "name": "toIndex", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "fromListId": { + "name": "fromListId", + "type": "bigint", + "primaryKey": false, + "notNull": false + }, + "toListId": { + "name": "toListId", + "type": "bigint", + "primaryKey": false, + "notNull": false + }, + "labelId": { + "name": "labelId", + "type": "bigint", + "primaryKey": false, + "notNull": false + }, + "workspaceMemberId": { + "name": "workspaceMemberId", + "type": "bigint", + "primaryKey": false, + "notNull": false + }, + "fromTitle": { + "name": "fromTitle", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "toTitle": { + "name": "toTitle", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "fromDescription": { + "name": "fromDescription", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "toDescription": { + "name": "toDescription", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "commentId": { + "name": "commentId", + "type": "bigint", + "primaryKey": false, + "notNull": false + }, + "fromComment": { + "name": "fromComment", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "toComment": { + "name": "toComment", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "fromDueDate": { + "name": "fromDueDate", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "toDueDate": { + "name": "toDueDate", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "sourceBoardId": { + "name": "sourceBoardId", + "type": "bigint", + "primaryKey": false, + "notNull": false + }, + "attachmentId": { + "name": "attachmentId", + "type": "bigint", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "card_activity_cardId_card_id_fk": { + "name": "card_activity_cardId_card_id_fk", + "tableFrom": "card_activity", + "tableTo": "card", + "columnsFrom": [ + "cardId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "card_activity_fromListId_list_id_fk": { + "name": "card_activity_fromListId_list_id_fk", + "tableFrom": "card_activity", + "tableTo": "list", + "columnsFrom": [ + "fromListId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "card_activity_toListId_list_id_fk": { + "name": "card_activity_toListId_list_id_fk", + "tableFrom": "card_activity", + "tableTo": "list", + "columnsFrom": [ + "toListId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "card_activity_labelId_label_id_fk": { + "name": "card_activity_labelId_label_id_fk", + "tableFrom": "card_activity", + "tableTo": "label", + "columnsFrom": [ + "labelId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "card_activity_workspaceMemberId_workspace_members_id_fk": { + "name": "card_activity_workspaceMemberId_workspace_members_id_fk", + "tableFrom": "card_activity", + "tableTo": "workspace_members", + "columnsFrom": [ + "workspaceMemberId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "card_activity_createdBy_user_id_fk": { + "name": "card_activity_createdBy_user_id_fk", + "tableFrom": "card_activity", + "tableTo": "user", + "columnsFrom": [ + "createdBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "card_activity_commentId_card_comments_id_fk": { + "name": "card_activity_commentId_card_comments_id_fk", + "tableFrom": "card_activity", + "tableTo": "card_comments", + "columnsFrom": [ + "commentId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "card_activity_sourceBoardId_board_id_fk": { + "name": "card_activity_sourceBoardId_board_id_fk", + "tableFrom": "card_activity", + "tableTo": "board", + "columnsFrom": [ + "sourceBoardId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "card_activity_attachmentId_card_attachment_id_fk": { + "name": "card_activity_attachmentId_card_attachment_id_fk", + "tableFrom": "card_activity", + "tableTo": "card_attachment", + "columnsFrom": [ + "attachmentId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "card_activity_publicId_unique": { + "name": "card_activity_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.card_attachment": { + "name": "card_attachment", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "cardId": { + "name": "cardId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "filename": { + "name": "filename", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "originalFilename": { + "name": "originalFilename", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "contentType": { + "name": "contentType", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "size": { + "name": "size", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "s3Key": { + "name": "s3Key", + "type": "varchar(500)", + "primaryKey": false, + "notNull": true + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deletedAt": { + "name": "deletedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "card_attachment_cardId_card_id_fk": { + "name": "card_attachment_cardId_card_id_fk", + "tableFrom": "card_attachment", + "tableTo": "card", + "columnsFrom": [ + "cardId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "card_attachment_createdBy_user_id_fk": { + "name": "card_attachment_createdBy_user_id_fk", + "tableFrom": "card_attachment", + "tableTo": "user", + "columnsFrom": [ + "createdBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "card_attachment_publicId_unique": { + "name": "card_attachment_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public._card_workspace_members": { + "name": "_card_workspace_members", + "schema": "", + "columns": { + "cardId": { + "name": "cardId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "workspaceMemberId": { + "name": "workspaceMemberId", + "type": "bigint", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "_card_workspace_members_cardId_card_id_fk": { + "name": "_card_workspace_members_cardId_card_id_fk", + "tableFrom": "_card_workspace_members", + "tableTo": "card", + "columnsFrom": [ + "cardId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_card_workspace_members_workspaceMemberId_workspace_members_id_fk": { + "name": "_card_workspace_members_workspaceMemberId_workspace_members_id_fk", + "tableFrom": "_card_workspace_members", + "tableTo": "workspace_members", + "columnsFrom": [ + "workspaceMemberId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "_card_workspace_members_cardId_workspaceMemberId_pk": { + "name": "_card_workspace_members_cardId_workspaceMemberId_pk", + "columns": [ + "cardId", + "workspaceMemberId" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.card": { + "name": "card", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "title": { + "name": "title", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "index": { + "name": "index", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedAt": { + "name": "deletedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedBy": { + "name": "deletedBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "listId": { + "name": "listId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "importId": { + "name": "importId", + "type": "bigint", + "primaryKey": false, + "notNull": false + }, + "dueDate": { + "name": "dueDate", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "card_createdBy_user_id_fk": { + "name": "card_createdBy_user_id_fk", + "tableFrom": "card", + "tableTo": "user", + "columnsFrom": [ + "createdBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "card_deletedBy_user_id_fk": { + "name": "card_deletedBy_user_id_fk", + "tableFrom": "card", + "tableTo": "user", + "columnsFrom": [ + "deletedBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "card_listId_list_id_fk": { + "name": "card_listId_list_id_fk", + "tableFrom": "card", + "tableTo": "list", + "columnsFrom": [ + "listId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "card_importId_import_id_fk": { + "name": "card_importId_import_id_fk", + "tableFrom": "card", + "tableTo": "import", + "columnsFrom": [ + "importId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "card_publicId_unique": { + "name": "card_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public._card_labels": { + "name": "_card_labels", + "schema": "", + "columns": { + "cardId": { + "name": "cardId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "labelId": { + "name": "labelId", + "type": "bigint", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "_card_labels_cardId_card_id_fk": { + "name": "_card_labels_cardId_card_id_fk", + "tableFrom": "_card_labels", + "tableTo": "card", + "columnsFrom": [ + "cardId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "_card_labels_labelId_label_id_fk": { + "name": "_card_labels_labelId_label_id_fk", + "tableFrom": "_card_labels", + "tableTo": "label", + "columnsFrom": [ + "labelId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "_card_labels_cardId_labelId_pk": { + "name": "_card_labels_cardId_labelId_pk", + "columns": [ + "cardId", + "labelId" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.card_comments": { + "name": "card_comments", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "comment": { + "name": "comment", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "cardId": { + "name": "cardId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedAt": { + "name": "deletedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedBy": { + "name": "deletedBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "card_comments_cardId_card_id_fk": { + "name": "card_comments_cardId_card_id_fk", + "tableFrom": "card_comments", + "tableTo": "card", + "columnsFrom": [ + "cardId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "card_comments_createdBy_user_id_fk": { + "name": "card_comments_createdBy_user_id_fk", + "tableFrom": "card_comments", + "tableTo": "user", + "columnsFrom": [ + "createdBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "card_comments_deletedBy_user_id_fk": { + "name": "card_comments_deletedBy_user_id_fk", + "tableFrom": "card_comments", + "tableTo": "user", + "columnsFrom": [ + "deletedBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "card_comments_publicId_unique": { + "name": "card_comments_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.card_checklist_item": { + "name": "card_checklist_item", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "title": { + "name": "title", + "type": "varchar(500)", + "primaryKey": false, + "notNull": true + }, + "completed": { + "name": "completed", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "index": { + "name": "index", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "checklistId": { + "name": "checklistId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedAt": { + "name": "deletedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedBy": { + "name": "deletedBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "card_checklist_item_checklistId_card_checklist_id_fk": { + "name": "card_checklist_item_checklistId_card_checklist_id_fk", + "tableFrom": "card_checklist_item", + "tableTo": "card_checklist", + "columnsFrom": [ + "checklistId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "card_checklist_item_createdBy_user_id_fk": { + "name": "card_checklist_item_createdBy_user_id_fk", + "tableFrom": "card_checklist_item", + "tableTo": "user", + "columnsFrom": [ + "createdBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "card_checklist_item_deletedBy_user_id_fk": { + "name": "card_checklist_item_deletedBy_user_id_fk", + "tableFrom": "card_checklist_item", + "tableTo": "user", + "columnsFrom": [ + "deletedBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "card_checklist_item_publicId_unique": { + "name": "card_checklist_item_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.card_checklist": { + "name": "card_checklist", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "index": { + "name": "index", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "cardId": { + "name": "cardId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedAt": { + "name": "deletedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedBy": { + "name": "deletedBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "card_checklist_cardId_card_id_fk": { + "name": "card_checklist_cardId_card_id_fk", + "tableFrom": "card_checklist", + "tableTo": "card", + "columnsFrom": [ + "cardId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "card_checklist_createdBy_user_id_fk": { + "name": "card_checklist_createdBy_user_id_fk", + "tableFrom": "card_checklist", + "tableTo": "user", + "columnsFrom": [ + "createdBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "card_checklist_deletedBy_user_id_fk": { + "name": "card_checklist_deletedBy_user_id_fk", + "tableFrom": "card_checklist", + "tableTo": "user", + "columnsFrom": [ + "deletedBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "card_checklist_publicId_unique": { + "name": "card_checklist_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.feedback": { + "name": "feedback", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "feedback": { + "name": "feedback", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "url": { + "name": "url", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "reviewed": { + "name": "reviewed", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + } + }, + "indexes": {}, + "foreignKeys": { + "feedback_createdBy_user_id_fk": { + "name": "feedback_createdBy_user_id_fk", + "tableFrom": "feedback", + "tableTo": "user", + "columnsFrom": [ + "createdBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.import": { + "name": "import", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "source": { + "name": "source", + "type": "source", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "status": { + "name": "status", + "type": "status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "import_createdBy_user_id_fk": { + "name": "import_createdBy_user_id_fk", + "tableFrom": "import", + "tableTo": "user", + "columnsFrom": [ + "createdBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "import_publicId_unique": { + "name": "import_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.label": { + "name": "label", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "colourCode": { + "name": "colourCode", + "type": "varchar(12)", + "primaryKey": false, + "notNull": false + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "boardId": { + "name": "boardId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "importId": { + "name": "importId", + "type": "bigint", + "primaryKey": false, + "notNull": false + }, + "deletedAt": { + "name": "deletedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedBy": { + "name": "deletedBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "label_createdBy_user_id_fk": { + "name": "label_createdBy_user_id_fk", + "tableFrom": "label", + "tableTo": "user", + "columnsFrom": [ + "createdBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "label_boardId_board_id_fk": { + "name": "label_boardId_board_id_fk", + "tableFrom": "label", + "tableTo": "board", + "columnsFrom": [ + "boardId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "label_importId_import_id_fk": { + "name": "label_importId_import_id_fk", + "tableFrom": "label", + "tableTo": "import", + "columnsFrom": [ + "importId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "label_deletedBy_user_id_fk": { + "name": "label_deletedBy_user_id_fk", + "tableFrom": "label", + "tableTo": "user", + "columnsFrom": [ + "deletedBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "label_publicId_unique": { + "name": "label_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.list": { + "name": "list", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "index": { + "name": "index", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedAt": { + "name": "deletedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedBy": { + "name": "deletedBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "boardId": { + "name": "boardId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "importId": { + "name": "importId", + "type": "bigint", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "list_createdBy_user_id_fk": { + "name": "list_createdBy_user_id_fk", + "tableFrom": "list", + "tableTo": "user", + "columnsFrom": [ + "createdBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "list_deletedBy_user_id_fk": { + "name": "list_deletedBy_user_id_fk", + "tableFrom": "list", + "tableTo": "user", + "columnsFrom": [ + "deletedBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "list_boardId_board_id_fk": { + "name": "list_boardId_board_id_fk", + "tableFrom": "list", + "tableTo": "board", + "columnsFrom": [ + "boardId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "list_importId_import_id_fk": { + "name": "list_importId_import_id_fk", + "tableFrom": "list", + "tableTo": "import", + "columnsFrom": [ + "importId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "list_publicId_unique": { + "name": "list_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.user": { + "name": "user", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "uuid_generate_v4()" + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "email": { + "name": "email", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "emailVerified": { + "name": "emailVerified", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "image": { + "name": "image", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "stripeCustomerId": { + "name": "stripeCustomerId", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "user_email_unique": { + "name": "user_email_unique", + "nullsNotDistinct": false, + "columns": [ + "email" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.integration": { + "name": "integration", + "schema": "", + "columns": { + "provider": { + "name": "provider", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "userId": { + "name": "userId", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "accessToken": { + "name": "accessToken", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "refreshToken": { + "name": "refreshToken", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "expiresAt": { + "name": "expiresAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "integration_userId_user_id_fk": { + "name": "integration_userId_user_id_fk", + "tableFrom": "integration", + "tableTo": "user", + "columnsFrom": [ + "userId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "integration_pkey": { + "name": "integration_pkey", + "columns": [ + "userId", + "provider" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.workspace_slug_checks": { + "name": "workspace_slug_checks", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "slug": { + "name": "slug", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "available": { + "name": "available", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "reserved": { + "name": "reserved", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "workspaceId": { + "name": "workspaceId", + "type": "bigint", + "primaryKey": false, + "notNull": false + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "workspace_slug_checks_workspaceId_workspace_id_fk": { + "name": "workspace_slug_checks_workspaceId_workspace_id_fk", + "tableFrom": "workspace_slug_checks", + "tableTo": "workspace", + "columnsFrom": [ + "workspaceId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "workspace_slug_checks_createdBy_user_id_fk": { + "name": "workspace_slug_checks_createdBy_user_id_fk", + "tableFrom": "workspace_slug_checks", + "tableTo": "user", + "columnsFrom": [ + "createdBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.workspace_slugs": { + "name": "workspace_slugs", + "schema": "", + "columns": { + "slug": { + "name": "slug", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "slug_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "workspace_slugs_slug_unique": { + "name": "workspace_slugs_slug_unique", + "nullsNotDistinct": false, + "columns": [ + "slug" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.workspace_members": { + "name": "workspace_members", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "email": { + "name": "email", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "userId": { + "name": "userId", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "workspaceId": { + "name": "workspaceId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedAt": { + "name": "deletedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedBy": { + "name": "deletedBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "role": { + "name": "role", + "type": "role", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "roleId": { + "name": "roleId", + "type": "bigint", + "primaryKey": false, + "notNull": false + }, + "status": { + "name": "status", + "type": "member_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'invited'" + } + }, + "indexes": {}, + "foreignKeys": { + "workspace_members_userId_user_id_fk": { + "name": "workspace_members_userId_user_id_fk", + "tableFrom": "workspace_members", + "tableTo": "user", + "columnsFrom": [ + "userId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "workspace_members_workspaceId_workspace_id_fk": { + "name": "workspace_members_workspaceId_workspace_id_fk", + "tableFrom": "workspace_members", + "tableTo": "workspace", + "columnsFrom": [ + "workspaceId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "workspace_members_deletedBy_user_id_fk": { + "name": "workspace_members_deletedBy_user_id_fk", + "tableFrom": "workspace_members", + "tableTo": "user", + "columnsFrom": [ + "deletedBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "workspace_members_roleId_workspace_roles_id_fk": { + "name": "workspace_members_roleId_workspace_roles_id_fk", + "tableFrom": "workspace_members", + "tableTo": "workspace_roles", + "columnsFrom": [ + "roleId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "restrict", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "workspace_members_publicId_unique": { + "name": "workspace_members_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.workspace": { + "name": "workspace", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "slug": { + "name": "slug", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "plan": { + "name": "plan", + "type": "workspace_plan", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'free'" + }, + "showEmailsToMembers": { + "name": "showEmailsToMembers", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "weekStartDay": { + "name": "weekStartDay", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedAt": { + "name": "deletedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "deletedBy": { + "name": "deletedBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "workspace_createdBy_user_id_fk": { + "name": "workspace_createdBy_user_id_fk", + "tableFrom": "workspace", + "tableTo": "user", + "columnsFrom": [ + "createdBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "workspace_deletedBy_user_id_fk": { + "name": "workspace_deletedBy_user_id_fk", + "tableFrom": "workspace", + "tableTo": "user", + "columnsFrom": [ + "deletedBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "workspace_publicId_unique": { + "name": "workspace_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + }, + "workspace_slug_unique": { + "name": "workspace_slug_unique", + "nullsNotDistinct": false, + "columns": [ + "slug" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.subscription": { + "name": "subscription", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "plan": { + "name": "plan", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "referenceId": { + "name": "referenceId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": false + }, + "stripeCustomerId": { + "name": "stripeCustomerId", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "stripeSubscriptionId": { + "name": "stripeSubscriptionId", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "status": { + "name": "status", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "periodStart": { + "name": "periodStart", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "periodEnd": { + "name": "periodEnd", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "cancelAtPeriodEnd": { + "name": "cancelAtPeriodEnd", + "type": "boolean", + "primaryKey": false, + "notNull": false + }, + "seats": { + "name": "seats", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "unlimitedSeats": { + "name": "unlimitedSeats", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "trialStart": { + "name": "trialStart", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "trialEnd": { + "name": "trialEnd", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "subscription_referenceId_workspace_publicId_fk": { + "name": "subscription_referenceId_workspace_publicId_fk", + "tableFrom": "subscription", + "tableTo": "workspace", + "columnsFrom": [ + "referenceId" + ], + "columnsTo": [ + "publicId" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.workspace_invite_links": { + "name": "workspace_invite_links", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "workspaceId": { + "name": "workspaceId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "code": { + "name": "code", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "status": { + "name": "status", + "type": "invite_link_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'active'" + }, + "expiresAt": { + "name": "expiresAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "updatedBy": { + "name": "updatedBy", + "type": "uuid", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "workspace_invite_links_workspaceId_workspace_id_fk": { + "name": "workspace_invite_links_workspaceId_workspace_id_fk", + "tableFrom": "workspace_invite_links", + "tableTo": "workspace", + "columnsFrom": [ + "workspaceId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "workspace_invite_links_createdBy_user_id_fk": { + "name": "workspace_invite_links_createdBy_user_id_fk", + "tableFrom": "workspace_invite_links", + "tableTo": "user", + "columnsFrom": [ + "createdBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "workspace_invite_links_updatedBy_user_id_fk": { + "name": "workspace_invite_links_updatedBy_user_id_fk", + "tableFrom": "workspace_invite_links", + "tableTo": "user", + "columnsFrom": [ + "updatedBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "workspace_invite_links_publicId_unique": { + "name": "workspace_invite_links_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + }, + "workspace_invite_links_code_unique": { + "name": "workspace_invite_links_code_unique", + "nullsNotDistinct": false, + "columns": [ + "code" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.workspace_member_permissions": { + "name": "workspace_member_permissions", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "workspaceMemberId": { + "name": "workspaceMemberId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "permission": { + "name": "permission", + "type": "varchar(64)", + "primaryKey": false, + "notNull": true + }, + "granted": { + "name": "granted", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "unique_member_permission": { + "name": "unique_member_permission", + "columns": [ + { + "expression": "workspaceMemberId", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "permission", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + }, + "permission_member_idx": { + "name": "permission_member_idx", + "columns": [ + { + "expression": "workspaceMemberId", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.workspace_role_permissions": { + "name": "workspace_role_permissions", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "workspaceRoleId": { + "name": "workspaceRoleId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "permission": { + "name": "permission", + "type": "varchar(64)", + "primaryKey": false, + "notNull": true + }, + "granted": { + "name": "granted", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "unique_role_permission": { + "name": "unique_role_permission", + "columns": [ + { + "expression": "workspaceRoleId", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "permission", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + }, + "role_permissions_role_idx": { + "name": "role_permissions_role_idx", + "columns": [ + { + "expression": "workspaceRoleId", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "workspace_role_permissions_workspaceRoleId_workspace_roles_id_fk": { + "name": "workspace_role_permissions_workspaceRoleId_workspace_roles_id_fk", + "tableFrom": "workspace_role_permissions", + "tableTo": "workspace_roles", + "columnsFrom": [ + "workspaceRoleId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.workspace_roles": { + "name": "workspace_roles", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "workspaceId": { + "name": "workspaceId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(64)", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "hierarchyLevel": { + "name": "hierarchyLevel", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "isSystem": { + "name": "isSystem", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "unique_role_per_workspace": { + "name": "unique_role_per_workspace", + "columns": [ + { + "expression": "workspaceId", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": true, + "concurrently": false, + "method": "btree", + "with": {} + }, + "workspace_roles_workspace_idx": { + "name": "workspace_roles_workspace_idx", + "columns": [ + { + "expression": "workspaceId", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "workspace_roles_workspaceId_workspace_id_fk": { + "name": "workspace_roles_workspaceId_workspace_id_fk", + "tableFrom": "workspace_roles", + "tableTo": "workspace", + "columnsFrom": [ + "workspaceId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "workspace_roles_publicId_unique": { + "name": "workspace_roles_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.notification": { + "name": "notification", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "notification_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "userId": { + "name": "userId", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "cardId": { + "name": "cardId", + "type": "bigint", + "primaryKey": false, + "notNull": false + }, + "commentId": { + "name": "commentId", + "type": "bigint", + "primaryKey": false, + "notNull": false + }, + "workspaceId": { + "name": "workspaceId", + "type": "bigint", + "primaryKey": false, + "notNull": false + }, + "metadata": { + "name": "metadata", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "readAt": { + "name": "readAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "deletedAt": { + "name": "deletedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "notification_user_deleted_idx": { + "name": "notification_user_deleted_idx", + "columns": [ + { + "expression": "userId", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "deletedAt", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "notification_user_read_deleted_idx": { + "name": "notification_user_read_deleted_idx", + "columns": [ + { + "expression": "userId", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "readAt", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "deletedAt", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "notification_user_type_card_idx": { + "name": "notification_user_type_card_idx", + "columns": [ + { + "expression": "userId", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "type", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "cardId", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "notification_user_type_workspace_idx": { + "name": "notification_user_type_workspace_idx", + "columns": [ + { + "expression": "userId", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "type", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "workspaceId", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "notification_user_created_idx": { + "name": "notification_user_created_idx", + "columns": [ + { + "expression": "userId", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "createdAt", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "notification_userId_user_id_fk": { + "name": "notification_userId_user_id_fk", + "tableFrom": "notification", + "tableTo": "user", + "columnsFrom": [ + "userId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "notification_cardId_card_id_fk": { + "name": "notification_cardId_card_id_fk", + "tableFrom": "notification", + "tableTo": "card", + "columnsFrom": [ + "cardId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "notification_commentId_card_comments_id_fk": { + "name": "notification_commentId_card_comments_id_fk", + "tableFrom": "notification", + "tableTo": "card_comments", + "columnsFrom": [ + "commentId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "notification_workspaceId_workspace_id_fk": { + "name": "notification_workspaceId_workspace_id_fk", + "tableFrom": "notification", + "tableTo": "workspace", + "columnsFrom": [ + "workspaceId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "notification_publicId_unique": { + "name": "notification_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + }, + "public.workspace_webhooks": { + "name": "workspace_webhooks", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "bigserial", + "primaryKey": true, + "notNull": true + }, + "publicId": { + "name": "publicId", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "workspaceId": { + "name": "workspaceId", + "type": "bigint", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "url": { + "name": "url", + "type": "varchar(2048)", + "primaryKey": false, + "notNull": true + }, + "secret": { + "name": "secret", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "events": { + "name": "events", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "active": { + "name": "active", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "createdBy": { + "name": "createdBy", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "createdAt": { + "name": "createdAt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updatedAt": { + "name": "updatedAt", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "workspace_webhooks_workspace_idx": { + "name": "workspace_webhooks_workspace_idx", + "columns": [ + { + "expression": "workspaceId", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "workspace_webhooks_workspaceId_workspace_id_fk": { + "name": "workspace_webhooks_workspaceId_workspace_id_fk", + "tableFrom": "workspace_webhooks", + "tableTo": "workspace", + "columnsFrom": [ + "workspaceId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "workspace_webhooks_createdBy_user_id_fk": { + "name": "workspace_webhooks_createdBy_user_id_fk", + "tableFrom": "workspace_webhooks", + "tableTo": "user", + "columnsFrom": [ + "createdBy" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "workspace_webhooks_publicId_unique": { + "name": "workspace_webhooks_publicId_unique", + "nullsNotDistinct": false, + "columns": [ + "publicId" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": true + } + }, + "enums": { + "public.board_type": { + "name": "board_type", + "schema": "public", + "values": [ + "regular", + "template" + ] + }, + "public.board_visibility": { + "name": "board_visibility", + "schema": "public", + "values": [ + "private", + "public" + ] + }, + "public.card_activity_type": { + "name": "card_activity_type", + "schema": "public", + "values": [ + "card.created", + "card.updated.title", + "card.updated.description", + "card.updated.index", + "card.updated.list", + "card.updated.label.added", + "card.updated.label.removed", + "card.updated.member.added", + "card.updated.member.removed", + "card.updated.comment.added", + "card.updated.comment.updated", + "card.updated.comment.deleted", + "card.updated.checklist.added", + "card.updated.checklist.renamed", + "card.updated.checklist.deleted", + "card.updated.checklist.item.added", + "card.updated.checklist.item.updated", + "card.updated.checklist.item.completed", + "card.updated.checklist.item.uncompleted", + "card.updated.checklist.item.deleted", + "card.updated.attachment.added", + "card.updated.attachment.removed", + "card.updated.dueDate.added", + "card.updated.dueDate.updated", + "card.updated.dueDate.removed", + "card.archived" + ] + }, + "public.source": { + "name": "source", + "schema": "public", + "values": [ + "trello", + "github" + ] + }, + "public.status": { + "name": "status", + "schema": "public", + "values": [ + "started", + "success", + "failed" + ] + }, + "public.role": { + "name": "role", + "schema": "public", + "values": [ + "admin", + "member", + "guest" + ] + }, + "public.member_status": { + "name": "member_status", + "schema": "public", + "values": [ + "invited", + "active", + "removed", + "paused" + ] + }, + "public.slug_type": { + "name": "slug_type", + "schema": "public", + "values": [ + "reserved", + "premium" + ] + }, + "public.workspace_plan": { + "name": "workspace_plan", + "schema": "public", + "values": [ + "free", + "team", + "pro", + "enterprise" + ] + }, + "public.invite_link_status": { + "name": "invite_link_status", + "schema": "public", + "values": [ + "active", + "inactive" + ] + }, + "public.notification_type": { + "name": "notification_type", + "schema": "public", + "values": [ + "mention", + "workspace.member.added", + "workspace.member.removed", + "workspace.role.changed", + "card.member.assigned", + "card.comment.added", + "card.updated" + ] + } + }, + "schemas": {}, + "sequences": {}, + "roles": {}, + "policies": {}, + "views": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/packages/db/migrations/meta/_journal.json b/packages/db/migrations/meta/_journal.json index 88c394fef..9d6317d34 100644 --- a/packages/db/migrations/meta/_journal.json +++ b/packages/db/migrations/meta/_journal.json @@ -225,6 +225,13 @@ "when": 1775170588247, "tag": "20260402225628_AddTeamWorkspacePlan", "breakpoints": true + }, + { + "idx": 32, + "version": "7", + "when": 1777672538712, + "tag": "20260501215538_AddCardNotificationTypes", + "breakpoints": true } ] } \ No newline at end of file diff --git a/packages/db/src/repository/board.repo.ts b/packages/db/src/repository/board.repo.ts index 12d8fd2d8..b39f90fa9 100644 --- a/packages/db/src/repository/board.repo.ts +++ b/packages/db/src/repository/board.repo.ts @@ -104,6 +104,7 @@ export const getIdByPublicId = async (db: dbClient, boardPublicId: string) => { id: true, type: true, isArchived: true, + workspaceId: true, }, where: eq(boards.publicId, boardPublicId), }); @@ -557,6 +558,11 @@ export const getWithListIdsByPublicId = ( createdBy: true, }, with: { + workspace: { + columns: { + publicId: true, + }, + }, lists: { columns: { id: true, @@ -712,6 +718,13 @@ export const getWorkspaceAndBoardIdByBoardPublicId = async ( workspaceId: true, createdBy: true, }, + with: { + workspace: { + columns: { + publicId: true, + }, + }, + }, where: eq(boards.publicId, boardPublicId), }); @@ -992,4 +1005,4 @@ export const removeUserFavorite = async ( ) ) .returning(); -}; \ No newline at end of file +}; diff --git a/packages/db/src/repository/card.repo.ts b/packages/db/src/repository/card.repo.ts index 431d00ec4..294907d1f 100644 --- a/packages/db/src/repository/card.repo.ts +++ b/packages/db/src/repository/card.repo.ts @@ -93,7 +93,11 @@ export const create = async ( index: index, dueDate: cardInput.dueDate ?? null, }) - .returning({ id: cards.id, listId: cards.listId, publicId: cards.publicId }); + .returning({ + id: cards.id, + publicId: cards.publicId, + listId: cards.listId, + }); if (!result[0]) throw new Error("Unable to create card"); @@ -945,15 +949,23 @@ export const getWorkspaceAndCardIdByCardPublicId = async ( where: and(eq(cards.publicId, cardPublicId), isNull(cards.deletedAt)), with: { list: { - columns: { name: true }, + columns: { name: true, publicId: true }, with: { board: { columns: { + id: true, publicId: true, workspaceId: true, visibility: true, name: true, }, + with: { + workspace: { + columns: { + publicId: true, + }, + }, + }, }, }, }, @@ -964,11 +976,14 @@ export const getWorkspaceAndCardIdByCardPublicId = async ( ? { id: result.id, createdBy: result.createdBy, + boardId: result.list.board.id, workspaceId: result.list.board.workspaceId, workspaceVisibility: result.list.board.visibility, listName: result.list.name, + listPublicId: result.list.publicId, boardPublicId: result.list.board.publicId, boardName: result.list.board.name, + workspacePublicId: result.list.board.workspace.publicId, } : null; }; diff --git a/packages/db/src/repository/cardAttachment.repo.ts b/packages/db/src/repository/cardAttachment.repo.ts index 4b604df01..f26edd19c 100644 --- a/packages/db/src/repository/cardAttachment.repo.ts +++ b/packages/db/src/repository/cardAttachment.repo.ts @@ -72,6 +72,13 @@ export const getByPublicId = (db: dbClient, publicId: string) => { id: true, workspaceId: true, }, + with: { + workspace: { + columns: { + publicId: true, + }, + }, + }, }, }, }, diff --git a/packages/db/src/repository/label.repo.ts b/packages/db/src/repository/label.repo.ts index 060bcef17..4e660a2ca 100644 --- a/packages/db/src/repository/label.repo.ts +++ b/packages/db/src/repository/label.repo.ts @@ -142,7 +142,12 @@ export const getWorkspaceAndLabelIdByLabelPublicId = async ( where: eq(labels.publicId, labelPublicId), with: { board: { - columns: { workspaceId: true }, + columns: { id: true, workspaceId: true }, + with: { + workspace: { + columns: { publicId: true }, + }, + }, }, }, }); @@ -151,6 +156,8 @@ export const getWorkspaceAndLabelIdByLabelPublicId = async ( ? { id: result.id, workspaceId: result.board.workspaceId, + boardId: result.board.id, + workspacePublicId: result.board.workspace.publicId, } : null; }; diff --git a/packages/db/src/repository/list.repo.ts b/packages/db/src/repository/list.repo.ts index 1f4ff3d44..cd64f111e 100644 --- a/packages/db/src/repository/list.repo.ts +++ b/packages/db/src/repository/list.repo.ts @@ -50,6 +50,7 @@ export const create = async ( publicId: lists.publicId, boardId: lists.boardId, name: lists.name, + index: lists.index, }); if (!result) @@ -422,10 +423,18 @@ export const getWorkspaceAndListIdByListPublicId = async ( with: { board: { columns: { + id: true, publicId: true, workspaceId: true, name: true, }, + with: { + workspace: { + columns: { + publicId: true, + }, + }, + }, }, }, }); @@ -436,8 +445,10 @@ export const getWorkspaceAndListIdByListPublicId = async ( name: result.name, createdBy: result.createdBy, workspaceId: result.board.workspaceId, + boardId: result.board.id, boardPublicId: result.board.publicId, boardName: result.board.name, + workspacePublicId: result.board.workspace.publicId, } : null; }; diff --git a/packages/db/src/repository/notification.repo.ts b/packages/db/src/repository/notification.repo.ts index 67bd2b4ce..661417f8c 100644 --- a/packages/db/src/repository/notification.repo.ts +++ b/packages/db/src/repository/notification.repo.ts @@ -1,4 +1,4 @@ -import { and, count, eq, isNull } from "drizzle-orm"; +import { and, count, desc, eq, isNull } from "drizzle-orm"; import type { dbClient } from "@kan/db/client"; import type { NotificationType } from "@kan/db/schema"; @@ -96,3 +96,52 @@ export const getUnreadCount = async ( return result[0]?.count ?? 0; }; +export const list = async ( + db: dbClient, + { userId, limit = 20, offset = 0 }: { userId: string; limit?: number; offset?: number }, +) => { + return db.query.notifications.findMany({ + where: (n, { eq, isNull: isNullFn, and: andFn }) => + andFn(eq(n.userId, userId), isNullFn(n.deletedAt)), + orderBy: (n) => [desc(n.createdAt)], + limit, + offset, + with: { + card: { columns: { publicId: true, title: true } }, + workspace: { columns: { publicId: true, name: true } }, + }, + }); +}; + +export const markReadByPublicId = async ( + db: dbClient, + { publicId, userId }: { publicId: string; userId: string }, +) => { + const [result] = await db + .update(notifications) + .set({ readAt: new Date() }) + .where( + and( + eq(notifications.publicId, publicId), + eq(notifications.userId, userId), + isNull(notifications.deletedAt), + ), + ) + .returning(); + + return result; +}; + +export const markAllRead = async (db: dbClient, userId: string) => { + await db + .update(notifications) + .set({ readAt: new Date() }) + .where( + and( + eq(notifications.userId, userId), + isNull(notifications.readAt), + isNull(notifications.deletedAt), + ), + ); +}; + diff --git a/packages/db/src/repository/workspace.repo.ts b/packages/db/src/repository/workspace.repo.ts index 423449b4f..79c3e6752 100644 --- a/packages/db/src/repository/workspace.repo.ts +++ b/packages/db/src/repository/workspace.repo.ts @@ -303,6 +303,7 @@ export const getMemberByPublicId = (db: dbClient, memberPublicId: string) => { return db.query.workspaceMembers.findFirst({ columns: { id: true, + userId: true, }, where: eq(workspaceMembers.publicId, memberPublicId), }); diff --git a/packages/db/src/schema/notifications.ts b/packages/db/src/schema/notifications.ts index cc3437f93..df241be0f 100644 --- a/packages/db/src/schema/notifications.ts +++ b/packages/db/src/schema/notifications.ts @@ -21,6 +21,9 @@ export const notificationTypes = [ "workspace.member.added", "workspace.member.removed", "workspace.role.changed", + "card.member.assigned", + "card.comment.added", + "card.updated", ] as const; export type NotificationType = (typeof notificationTypes)[number]; diff --git a/packages/db/src/schema/webhooks.ts b/packages/db/src/schema/webhooks.ts index 6c353fe59..4112d6f5a 100644 --- a/packages/db/src/schema/webhooks.ts +++ b/packages/db/src/schema/webhooks.ts @@ -19,6 +19,13 @@ export const webhookEvents = [ "card.updated", "card.moved", "card.deleted", + "card.comment.added", + "list.created", + "list.updated", + "list.deleted", + "board.updated", + "board.deleted", + "label.changed", ] as const; export type WebhookEvent = (typeof webhookEvents)[number]; diff --git a/packages/email/package.json b/packages/email/package.json index ed3736d47..01767e8e4 100644 --- a/packages/email/package.json +++ b/packages/email/package.json @@ -34,6 +34,7 @@ "@kan/prettier-config": "workspace:*", "@kan/tsconfig": "workspace:*", "@types/nodemailer": "^6.4.17", + "@types/react": "catalog:react18", "eslint": "catalog:", "prettier": "catalog:", "typescript": "catalog:" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6a5dc9e56..86e682610 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -301,7 +301,56 @@ importers: version: 5.9.2 vitest: specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1) + + apps/websocket: + dependencies: + '@kan/api': + specifier: workspace:* + version: link:../../packages/api + '@kan/logger': + specifier: workspace:* + version: link:../../packages/logger + '@trpc/server': + specifier: 'catalog:' + version: 11.5.0(typescript@5.9.2) + ws: + specifier: ^8.18.0 + version: 8.18.3 + devDependencies: + '@kan/eslint-config': + specifier: workspace:* + version: link:../../tooling/eslint + '@kan/prettier-config': + specifier: workspace:* + version: link:../../tooling/prettier + '@kan/tsconfig': + specifier: workspace:* + version: link:../../tooling/typescript + '@types/node': + specifier: ^20.17.7 + version: 20.19.11 + '@types/ws': + specifier: ^8.18.1 + version: 8.18.1 + dotenv-cli: + specifier: ^7.4.4 + version: 7.4.4 + esbuild: + specifier: ^0.25.0 + version: 0.25.12 + eslint: + specifier: 'catalog:' + version: 9.34.0(jiti@2.6.1) + prettier: + specifier: 'catalog:' + version: 3.6.2 + tsx: + specifier: ^4.19.1 + version: 4.20.6 + typescript: + specifier: 'catalog:' + version: 5.9.2 packages/api: dependencies: @@ -359,7 +408,7 @@ importers: version: 5.9.2 vitest: specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1) packages/auth: dependencies: @@ -492,6 +541,9 @@ importers: '@types/nodemailer': specifier: ^6.4.17 version: 6.4.19 + '@types/react': + specifier: catalog:react18 + version: 18.3.24 eslint: specifier: 'catalog:' version: 9.34.0(jiti@2.6.1) @@ -4197,6 +4249,9 @@ packages: '@types/uuid@9.0.8': resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} + '@types/ws@8.18.1': + resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==} + '@types/yargs-parser@21.0.3': resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} @@ -5786,25 +5841,29 @@ packages: glob@10.3.10: resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} engines: {node: '>=16 || 14 >=14.17'} + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me hasBin: true glob@10.4.5: resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me hasBin: true glob@11.0.3: resolution: {integrity: sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==} engines: {node: 20 || >=22} + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me hasBin: true glob@11.1.0: resolution: {integrity: sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw==} engines: {node: 20 || >=22} + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me hasBin: true glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me globals@14.0.0: resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} @@ -8330,6 +8389,11 @@ packages: tslib@2.8.1: resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + tsx@4.20.6: + resolution: {integrity: sha512-ytQKuwgmrrkDTFP4LjR0ToE2nqgy886GpvRSpU0JAnrdBYppuY5rLkRUYPU1yCryb24SsKBTL/hlDQAEFVwtZg==} + engines: {node: '>=18.0.0'} + hasBin: true + turbo-darwin-64@2.5.6: resolution: {integrity: sha512-3C1xEdo4aFwMJAPvtlPqz1Sw/+cddWIOmsalHFMrsqqydcptwBfu26WW2cDm3u93bUzMbBJ8k3zNKFqxJ9ei2A==} cpu: [x64] @@ -8756,6 +8820,18 @@ packages: utf-8-validate: optional: true + ws@8.18.3: + resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + xml2js@0.6.2: resolution: {integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==} engines: {node: '>=4.0.0'} @@ -12693,6 +12769,10 @@ snapshots: '@types/uuid@9.0.8': {} + '@types/ws@8.18.1': + dependencies: + '@types/node': 20.19.11 + '@types/yargs-parser@21.0.3': {} '@types/yargs@17.0.33': @@ -12802,21 +12882,21 @@ snapshots: chai: 5.3.3 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@7.3.1(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(vite@7.3.1(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 7.3.1(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(yaml@2.8.1) + vite: 7.3.1(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1) - '@vitest/mocker@3.2.4(vite@7.3.1(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(vite@7.3.1(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 7.3.1(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1) + vite: 7.3.1(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -17859,6 +17939,13 @@ snapshots: tslib@2.8.1: {} + tsx@4.20.6: + dependencies: + esbuild: 0.25.12 + get-tsconfig: 4.10.1 + optionalDependencies: + fsevents: 2.3.3 + turbo-darwin-64@2.5.6: optional: true @@ -18139,13 +18226,13 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.3 - vite-node@3.2.4(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(yaml@2.8.1): + vite-node@3.2.4(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 7.3.1(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(yaml@2.8.1) + vite: 7.3.1(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -18160,13 +18247,13 @@ snapshots: - tsx - yaml - vite-node@3.2.4(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1): + vite-node@3.2.4(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 7.3.1(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1) + vite: 7.3.1(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -18181,7 +18268,7 @@ snapshots: - tsx - yaml - vite@7.3.1(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(yaml@2.8.1): + vite@7.3.1(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1): dependencies: esbuild: 0.27.2 fdir: 6.5.0(picomatch@4.0.3) @@ -18194,9 +18281,10 @@ snapshots: fsevents: 2.3.3 jiti: 1.21.7 terser: 5.44.1 + tsx: 4.20.6 yaml: 2.8.1 - vite@7.3.1(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1): + vite@7.3.1(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1): dependencies: esbuild: 0.27.2 fdir: 6.5.0(picomatch@4.0.3) @@ -18209,13 +18297,14 @@ snapshots: fsevents: 2.3.3 jiti: 2.6.1 terser: 5.44.1 + tsx: 4.20.6 yaml: 2.8.1 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1): dependencies: '@types/chai': 5.2.3 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@7.3.1(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(vite@7.3.1(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -18233,8 +18322,8 @@ snapshots: tinyglobby: 0.2.15 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 7.3.1(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(yaml@2.8.1) + vite: 7.3.1(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@20.19.11)(jiti@1.21.7)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 @@ -18253,11 +18342,11 @@ snapshots: - tsx - yaml - vitest@3.2.4(@types/debug@4.1.12)(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1): dependencies: '@types/chai': 5.2.3 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@7.3.1(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(vite@7.3.1(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -18275,8 +18364,8 @@ snapshots: tinyglobby: 0.2.15 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 7.3.1(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(yaml@2.8.1) + vite: 7.3.1(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@25.0.0)(jiti@2.6.1)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 @@ -18435,6 +18524,8 @@ snapshots: ws@8.17.1: {} + ws@8.18.3: {} + xml2js@0.6.2: dependencies: sax: 1.2.1 diff --git a/turbo.json b/turbo.json index 204d6b339..cf9f481c7 100644 --- a/turbo.json +++ b/turbo.json @@ -3,28 +3,49 @@ "ui": "tui", "tasks": { "topo": { - "dependsOn": ["^topo"] + "dependsOn": [ + "^topo" + ] }, "build": { - "dependsOn": ["^build"], - "outputs": [".cache/tsbuildinfo.json", "dist/**"] + "dependsOn": [ + "^build" + ], + "outputs": [ + ".cache/tsbuildinfo.json", + "dist/**" + ] }, "dev": { - "dependsOn": ["^dev"], + "dependsOn": [ + "^dev" + ], "cache": false, - "persistent": false + "persistent": true }, "format": { - "outputs": [".cache/.prettiercache"], + "outputs": [ + ".cache/.prettiercache" + ], "outputLogs": "new-only" }, "lint": { - "dependsOn": ["^topo", "^build"], - "outputs": [".cache/.eslintcache"] + "dependsOn": [ + "^topo", + "^build" + ], + "outputs": [ + ".cache/.eslintcache" + ] }, "typecheck": { - "dependsOn": ["^topo", "^build"], - "outputs": [".cache/tsbuildinfo.json"] + "dependsOn": [ + "^topo", + "^build" + ], + "outputs": [ + ".cache/tsbuildinfo.json" + ] }, "clean": { "cache": false @@ -127,12 +148,23 @@ "PORT", "BETTER_AUTH_SECRET", "BETTER_AUTH_TRUSTED_ORIGINS", + "PLUNK_API_KEY", + "PLUNK_API_URL", "NOVU_API_KEY", "EMAIL_UNSUBSCRIBE_SECRET", "REDIS_URL", "LOG_LEVEL", "AXIOM_TOKEN", - "AXIOM_DATASET" + "AXIOM_DATASET", + "WEBSOCKET_PORT", + "WEBSOCKET_HOST", + "WEBSOCKET_PING_MS", + "WEBSOCKET_PONG_TIMEOUT_MS", + "WEBSOCKET_EVENT_PATH", + "WEBSOCKET_EVENT_SECRET", + "WEBSOCKET_INGEST_URL", + "NEXT_PUBLIC_WEBSOCKET_URL", + "WS_URL" ], "globalPassThroughEnv": [ "NODE_ENV",