Compare commits

..
Author SHA1 Message Date
Sonarly Claude Code 174d3ff083 fix: validate ISO 8601 format before calling Temporal.Instant.from in DateTimeDisplay
https://sonarly.com/issue/21521?type=bug

The `DateTimeDisplay` component passes field values directly to `Temporal.Instant.from()` without validating they are valid ISO 8601 datetime strings, causing a `RangeError` crash when a custom object field contains non-ISO text like "JULY".

Fix: Wrapped the `Temporal.Instant.from(value)` call in a `useMemo` with a try-catch to safely handle non-ISO 8601 date strings stored in datetime fields.

**What changed:**
- Added `useMemo` import alongside existing `useContext`
- Extracted the `Temporal.Instant.from(value)` call into a memoized `instant` variable that returns `undefined` if the value is not a valid ISO 8601 instant string
- Changed the conditional render to check `instant !== undefined` instead of `isNonEmptyString(value)`

**Why this approach:**
- The `try-catch` is narrowly scoped to the specific parsing operation, not a broad error swallower — it only catches `RangeError` from `Temporal.Instant.from()` on invalid input
- Graceful degradation: when the value can't be parsed as an instant, the date text still renders (via `formatDateTimeString` which already handles invalid dates gracefully), only the timezone abbreviation is omitted
- The `useMemo` ensures the parsing only re-runs when `value` changes, matching existing patterns in sibling display components like `EmailsDisplay`, `PhonesDisplay`, and `LinksDisplay`
- This addresses the risk the original PR author (`0b5be7caa31`) explicitly called out: *"If the input is badly formatted Temporal will throw, we might want to adopt a global strategy to avoid that"*
2026-04-03 11:06:45 +00:00
2ff2c39cf4 i18n - translations (#19305)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-04-03 12:05:17 +02:00
Raphaël BosiandGitHub da72075841 Fix search fallback command menu item (#19304)
The search fallback was treated as a standard action and not as a
fallback by the frontend.

## Before


https://github.com/user-attachments/assets/4d2f1e09-b109-46eb-89ff-ca589eeb7239


## After


https://github.com/user-attachments/assets/e4523047-eb1e-4386-9c19-57797e1ef26c
2026-04-03 09:50:07 +00:00
nitinandGitHub f01bcf60ee [AI] Fix record chips not rendering inside markdown tables in AI chat (#19260)
closes
https://discord.com/channels/1130383047699738754/1480976327204016131

before - 

<img width="778" height="1259" alt="CleanShot 2026-04-02 at 18 33 03"
src="https://github.com/user-attachments/assets/66ee2fc7-a116-458e-86a6-2aa6806b9407"
/>


after -


<img width="758" height="1291" alt="CleanShot 2026-04-02 at 18 32 21"
src="https://github.com/user-attachments/assets/9e303ff5-d8f4-4c9e-83e7-9a8e6427673a"
/>
2026-04-03 11:29:45 +02:00
neo773andGitHub c521ba29be fix: CalDAV sync broken by SSRF hostname replacement (#19291)
/closes #19272
2026-04-03 08:15:59 +00:00
neo773andGitHub baa4fda3d2 fix: create company workflow (use psl for domain suffix) (#19289)
Fixes edge case where suffix like `.com.cy` which is TLD for Cyprus
would attach person to wrong company

<img width="715" height="115" alt="image"
src="https://github.com/user-attachments/assets/bbaf7c2c-8365-4655-afda-508fbc04de2a"
/>
2026-04-03 08:14:11 +00:00
bb3d556799 Refined demo workspace creation skill (rebased, review fixes) (#19274)
## Summary

Rebased version of #19051 with all review comments addressed. Clean
branch on latest main, lint/typecheck/tests passing.

### Changes from original PR
- AI can now create, update, and delete **view filters**
(`ViewFilterToolsFactory`) and **view sorts** (`ViewSortToolsFactory`)
- `create_view` now accepts `calendarFieldName`, `calendarLayout`, and
`fieldNames` to configure views at creation time
- Three new standard skills: `view-building`, `view-filters-and-sorts`,
`custom-objects-cleanup`
- `workspace-demo-seeding` skill reworked to keep standard objects and
enrich them with custom fields
- Cache invalidation for nav menu items when object `isActive` changes
- Dashboard tool descriptions improved (RECORD_TABLE widget workflow)

### Review comments addressed (all 10 from #19051)
1. **Sentry + Cubic**: Calendar field DATE/DATE_TIME validation — added
`resolveCalendarFieldMetadataId` using `isFieldMetadataDateKind`
2. **Cubic**: "navigate tool" → "navigate_app tool" in skill metadata
(all 7 occurrences)
3. **Copilot**: KANBAN views now require `mainGroupByFieldName` — throws
clear error if missing
4. **Copilot**: CALENDAR views now require both `calendarFieldName` and
`calendarLayout` — validated before DB call
5. **Copilot**: Mock field fixtures include `type` property (DATE_TIME,
TEXT, SELECT)
6. **Copilot**: `ViewFilterValue` type assertion instead of unsafe `as
string` casts (3 locations)
7. **FelixMalfait**: Removed
`NavigationMenuItemObjectDeactivationListener` — replaced with cache
invalidation
8. **FelixMalfait**: Consolidated `ViewFilterToolProvider` and
`ViewSortToolProvider` into single `ViewToolProvider`
9. Removed `VIEW_FILTER` and `VIEW_SORT` from `ToolCategory` enum
(merged into `VIEW`)
10. Removed stale `existingFeatureFlagsMap` param incompatible with
current main

## Test plan
- [x] `npx nx lint:diff-with-main twenty-server` — passes
- [x] `npx nx typecheck twenty-server` — passes
- [x] `view-tools.factory.spec.ts` — all 20 tests pass (including 3 new
validation tests)

Supersedes #19051

https://claude.ai/code/session_01QPV74NU6vzmJb32e4i899E

---------

Co-authored-by: Claude <noreply@anthropic.com>
2026-04-03 09:19:46 +02:00
12b031b67d chore: sync AI model catalog from models.dev (#19298)
Automated daily sync of `ai-providers.json` from
[models.dev](https://models.dev).

This PR updates pricing, context windows, and model availability based
on the latest data.
New models meeting inclusion criteria (tool calling, pricing data,
context limits) are added automatically.
Deprecated models are detected based on cost-efficiency within the same
model family.

**Please review before merging** — verify no critical models were
incorrectly deprecated.

Co-authored-by: FelixMalfait <6399865+FelixMalfait@users.noreply.github.com>
2026-04-03 08:21:46 +02:00
2ae6a9bb98 fix: bump handlebars to 4.7.9 (CVE-2026-33937) (#19288)
## Summary
- Bumps `handlebars` from `^4.7.8` to `^4.7.9` in
`packages/twenty-shared`

## Why
- **CVE-2026-33937** — Prototype pollution via crafted template input
- **GHSA-2w6w-674q-4c4q** — Related handlebars security advisory
- Severity: **Critical** (CVSS 9.8)
- Detected by Trivy and Grype scanning `twentycrm/twenty:v1.20.0`

## What changed
- `packages/twenty-shared/package.json`: `"handlebars": "^4.7.8"` →
`"^4.7.9"`
- `yarn.lock`: updated accordingly

## Impact
`handlebars` is used in `packages/twenty-shared` for template
evaluation. The fix patches the prototype pollution vector without any
API changes.

## Test plan
- [ ] `yarn build` passes
- [ ] `yarn test` passes in twenty-shared
- [ ] Template evaluation works as before

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: Abdullah <125115953+mabdullahabaid@users.noreply.github.com>
2026-04-03 03:38:14 +00:00
Thomas des FrancsandGitHub 175ae5f0aa polishing next home hero visual (#19284)
**Summary**
- update the home hero navbar controls and surface styling to better
match the latest visual design
- simplify row hover actions by removing edit affordances and disabling
hover controls for `createdBy` and `accountOwner`
- tighten chip typography and spacing for more consistent hero table
rendering
- include the captured Playwright screenshot artifact for reference

**Testing**
- Not run (not requested)
2026-04-02 20:26:05 +00:00
04d22feef6 i18n - translations (#19285)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-04-02 19:38:43 +02:00
MarieandGitHub 2d6c8be7df [Apps] Fix - app-synced object should be searchable (#19206)
## Summary

- **Make app-synced objects searchable**: `isSearchable` was hardcoded
to `false` and the `searchVector` field was missing the `GENERATED
ALWAYS AS (...)` expression, causing all records to have a `NULL` search
vector and be excluded from search results. Fixed by defaulting
`isSearchable` to `true` (configurable via the object manifest),
computing the `asExpression` from the label identifier field, and
allowing the update-field-action-handler to handle the `null` → defined
`asExpression` transition.
- **Make `isSearchable` updatable on an object**: The property had
`toCompare: false` in the entity properties configuration, so updates
via the API were silently ignored and never persisted. Fixed by setting
`toCompare: true`.
2026-04-02 17:14:37 +00:00
43baf7b91c fix: prepend UTF-8 BOM to fix non-Latin characters in csv (#19246)
Fixes: #19230 

CSV exports containing Arabic, Chinese, Japanese, Korean characters
displayed as garbled text in Excel because the file lacked a UTF-8 BOM.
So I added `\uFEFF` prefix to the CSV Blob so Excel and other
spreadsheet apps correctly interpret the file as UTF-8

## Table value
<img width="370" height="277" alt="image"
src="https://github.com/user-attachments/assets/ed668f00-93f0-4991-bc87-42e3cb314dbc"
/>

## Before
<img width="206" height="160" alt="image"
src="https://github.com/user-attachments/assets/a5324dbc-bd65-4443-a7fb-78047028bf91"
/>

## After
<img width="180" height="155" alt="image"
src="https://github.com/user-attachments/assets/cae5f38d-6c91-4017-96ae-9924bb41d0e0"
/>


And those are my test data

Script | Example | Language
-- | -- | --
Arabic | مرحبا | Arabic, Persian, Urdu
Chinese | 你好 | Chinese
Japanese | こんにちは | Japanese
Korean | 안녕하세요 | Korean

---------

Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Félix Malfait <felix@twenty.com>
Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
2026-04-02 19:23:22 +02:00
Paul RastoinandGitHub a7b2bec529 Remove try catch from generate sdk client job (#19279)
Auto merged passed to fast on
https://github.com/twentyhq/twenty/pull/19271

Try catch has been added while debugging an integration test suite
covering the workspace creation that would fail due to sdk generation
failure

As they're run synchronously in integration tests they would stop the
workspace creation process

If the proposed fix here isn't enough I'll wrapp the run sync test to be
catching any unexpected issue
2026-04-02 16:43:11 +00:00
Raphaël BosiandGitHub 77315b7f6e Sync record selection with the edit mode (#19276)
## PR description

The previous approach used a detached flag to represent selection mode,
which could was not synced sync with actual UI selection state. This
change ties the edit mode's selection/fallback behavior directly to
whether records are truly selected in the record index.

- Removes `commandMenuItemEditSelectionModeState` (a standalone 'none' |
'selection' atom) and replaces it with
`mainContextStoreHasSelectedRecordsSelector`, which derives selection
state from the real record selection in the context store.
- Adds `useSelectFirstRecordForEditMode` to programmatically select the
first record (table row or kanban card) when toggling to selection mode,
and useResetRecordIndexSelection to clear selection when toggling off or
exiting edit mode.
- Ensures record selection is properly cleaned up when exiting layout
customization mode or closing the side panel.

## Video QA

### Table


https://github.com/user-attachments/assets/1d845809-8369-4872-b3a9-a0281b8e464b

### Board


https://github.com/user-attachments/assets/325c2d58-4ca0-408a-ab4a-66b97d9d70de
2026-04-02 16:35:14 +00:00
Paul RastoinandGitHub a2533baa66 Local driver layer resolution wipe partial local layers relicas (#19267)
# Introduction
Wipe partial layer local driver relicas that do not implem a
node_modules folder
2026-04-02 16:29:54 +00:00
Raphaël BosiandGitHub 30517eb06c Remove more button in edit mode (#19281)
Remove more button in edit mode
2026-04-02 16:29:47 +00:00
Paul RastoinandGitHub 331c223e73 Fix create e2e app ci set version flakiness (#19278)
Calling npm version in // with interdependent packages fait des
chocapics

<img width="225" height="225" alt="image"
src="https://github.com/user-attachments/assets/6d10e72a-87dc-4745-b078-7dd1b4706203"
/>
2026-04-02 16:05:02 +00:00
Félix MalfaitandGitHub 5022bf03ba Add AI as a public feature flag in the Lab (#19277)
## Summary
- Adds `IS_AI_ENABLED` to `PUBLIC_FEATURE_FLAGS` so it appears in
**Settings > Lab** as a self-serve toggle for users
- Includes a cover image (`is-ai-enabled.png`) hosted on
`twenty.com/images/lab/`, following the existing convention for lab
feature flag images
- AI is now ready for public beta — users can enable it directly from
the Lab

## Test plan
- [ ] Verify the AI card appears in Settings > Lab with the cover image
banner
- [ ] Toggle AI on/off and confirm the feature flag is persisted
- [ ] Confirm AI features (agent chat, etc.) activate when the flag is
enabled


Made with [Cursor](https://cursor.com)
2026-04-02 15:56:27 +00:00
Paul RastoinandGitHub a53b9cb68a On workspace creation generate sdk client through a job (#19271)
Avoid overloading the workspace creation with the standard and custom
app sdk generation, do through a job

```ts
[Nest] 90397  - 04/02/2026, 4:44:20 PM     LOG [CoreEntityCacheService] Cache stats: localCacheSize=0 memoizerCacheSize=0 memoizerPendingSize=0 entriesByKey={} versionsByKey={}
[Nest] 90397  - 04/02/2026, 4:45:03 PM     LOG [BullMQDriver] Processing job 4325 with name CallWebhookJobsForMetadataJob on queue webhook-queue
[Nest] 90397  - 04/02/2026, 4:45:03 PM     LOG [BullMQDriver] Processing job 1 with name GenerateSdkClientJob on queue workspace-queue
[Nest] 90397  - 04/02/2026, 4:45:03 PM     LOG [BullMQDriver] Job 1 with name GenerateSdkClientJob processed on queue workspace-queue in 0.64ms
[Nest] 90397  - 04/02/2026, 4:45:03 PM     LOG [BullMQDriver] Processing job 2 with name GenerateSdkClientJob on queue workspace-queue
[Nest] 90397  - 04/02/2026, 4:45:03 PM     LOG [BullMQDriver] Job 2 with name GenerateSdkClientJob processed on queue workspace-queue in 0.06ms
[Nest] 90397  - 04/02/2026, 4:45:03 PM     LOG [BullMQDriver] Job 4325 with name CallWebhookJobsForMetadataJob processed on queue webhook-queue in 17.47ms
[Nest] 90397  - 04/02/2026, 4:45:03 PM     LOG [BullMQDriver] Processing job 4326 with name CallWebhookJobsForMetadataJob on queue webhook-queue
```
2026-04-02 15:53:56 +00:00
Thomas TrompetteandGitHub 779e613df3 Fixes: relation settings design + workflow input border (#19269)
Before 

<img width="450" height="172" alt="Capture d’écran 2026-04-02 à 15 57
06"
src="https://github.com/user-attachments/assets/1b2c3f56-f696-407d-a00f-ae567842dbfc"
/>
<img width="450" height="172" alt="Capture d’écran 2026-04-02 à 15 57
22"
src="https://github.com/user-attachments/assets/51ee6db8-0974-46e1-a65f-25fb8aef7126"
/>

After

<img width="450" height="172" alt="Capture d’écran 2026-04-02 à 15 56
38"
src="https://github.com/user-attachments/assets/4843c36c-3c04-4c5a-b2dc-f48b02c9a907"
/>
<img width="450" height="172" alt="Capture d’écran 2026-04-02 à 15 56
58"
src="https://github.com/user-attachments/assets/ec404b4d-6c37-4694-a68c-63f98cdf7388"
/>
2026-04-02 15:43:35 +00:00
Abdul RahmanandGitHub 7f2b853ae1 feat: add message compaction for AI chats (#19205) 2026-04-02 15:13:11 +00:00
WeikoandGitHub c1e4756f9c Add is active to overridable entities and deactivation logic for page layouts (#19200)
- Replace soft-deletion (deletedAt) with isActive boolean for
overridable entities (tabs, widgets, viewFieldGroups, viewFields).
Standard entities are deactivated (isActive: false) when removed from
update payloads, while custom entities are hard-deleted.
- When a viewFieldGroup is deactivated/deleted, its viewFields are
reassigned to the next section by position (or null if none remain).
- Add isActive: true filters to viewFieldGroup and viewField API queries
so deactivated entities are excluded from responses.

Next: 
- fields-widget-upsert.service.ts should be refactored a bit
- Add restore logic
2026-04-02 14:50:50 +00:00
Charles BochetandGitHub 67d34be7c8 Add new workspace feature flag fix (#19270) 2026-04-02 14:26:56 +00:00
WeikoandGitHub 6f3a86c4a9 Fix insert conflict between field permission and RLS (#19244)
Insert operations blocked by field-level update permissions on
non-editable fields

The insert code path in permissions.utils.ts fell through to the update
case (no break), causing validateUpdateFieldPermissionOrThrow to reject
inserts when any field had "Edit disabled" which could conflict with RLS
predicates (used for insertion of new records)

Fixes https://github.com/twentyhq/twenty/issues/19201

We will keep checking update permissions for insertion (until we decide
to have a separate permission flag for insertion) but to fix the issue
we will skip this part if it conflicts with an RLS predicate
2026-04-02 14:01:51 +00:00
Baptiste DevessierandGitHub 4dfd6426c2 Disable going to settings in layout edit mode (#19265)
https://github.com/user-attachments/assets/c5e07ef3-f4c5-4dc1-b577-c333525327f5
2026-04-02 13:54:20 +00:00
nitinandGitHub aadbf67ec8 [CommandMenu] Disable record selection dropdown on record pages in command menu editor (#19264) 2026-04-02 13:53:15 +00:00
d7e31ab2f0 Interactive home visual for website. (#19261)
This PR makes the Home Visual interactive.

Not the perfect code, but does the trick for now to convey what we're
trying to do. As per the conversation with Thomas, we will iterate over
it and make it better when we get past the first release.

---------

Co-authored-by: Thomas des Francs <tdesfrancs@gmail.com>
2026-04-02 13:45:22 +00:00
Charles BochetandGitHub e1caf6caa1 Add datasource migration and connected account feature flag (#19268) 2026-04-02 15:58:32 +02:00
6a8bab6a47 i18n - translations (#19266)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-04-02 15:52:30 +02:00
nitinandGitHub 047dd350f6 fix workflow node (#19262)
<img width="999" height="1090" alt="CleanShot 2026-04-02 at 18 41 58"
src="https://github.com/user-attachments/assets/1e0db9e5-e6ed-4899-910d-14b3db420740"
/>
2026-04-02 15:46:33 +02:00
nitinandGitHub 3c067f072c [AI] Improve tools tab (#19221) 2026-04-02 13:36:33 +00:00
Paul RastoinandGitHub cd23a2bc80 Cleaning UpgradeCommand code flow (#19241)
# Introduction
Currently preparing the `UpgradeCommand` refactor, in this way started
by cleaning up the existing avoiding unecessary dependencies to others
services allowing easier readability and concern centralization for
upcoming refactor
The UpgradeCommand was extending up to five classes, overriding
abstracted class and so on. It was also cascade
injecting 3 services

Introducing the `WorkspaceIteratorService` that centralize the commands
set to run over a single workspace logic shared between both atomic
upgrade command call and global upgradeCommand

## Tradeoff
Duplicated `@Option` between both `UpgradeCommandRunner` and
`WorkspaceMigrationRunner`


## Before
```
UpgradeCommand
  └─ extends UpgradeCommandRunner
       └─ extends ActiveOrSuspendedWorkspacesMigrationCommandRunner
            └─ extends WorkspacesMigrationCommandRunner  (owns workspace iteration loop + ORM deps)
                 └─ extends MigrationCommandRunner       (dry-run, verbose, error handling)
                      └─ extends CommandRunner            (nest-commander)
```

## Now

```
UpgradeCommand
  └─ extends UpgradeCommandRunner
       └─ extends CommandRunner                 (nest-commander)
       uses ─► Services         (via composition)
```

## Logging management
At the moment all services are logging, in the best of the world only
the runners should be doing so
2026-04-02 13:24:55 +00:00
WeikoandGitHub 6ae5900ac9 Fix field permission validation rejecting undefined optional fields (#19243)
The backend validation for field permissions was using !== null to check
canReadFieldValue and canUpdateFieldValue, but these optional GraphQL
fields can also be undefined when omitted from the input. This caused
the validation to incorrectly reject legitimate requests (e.g.,
restricting only "update" without specifying "read") with the error
"Field permissions can only be used to restrict access, not to grant
additional permissions."

Replaced !== null checks with isDefined() so that both null and
undefined are treated as "no opinion" on that permission.

To reproduce:
- Create a single FieldPermission on an object with canEdit: false
without any other rule on that same object
2026-04-02 13:15:14 +00:00
Baptiste DevessierandGitHub 6f89098340 Prevent hovered tab to overflow (#19259)
## Before

<img width="1274" height="102" alt="image"
src="https://github.com/user-attachments/assets/86088cd3-6e15-40f2-8fe4-0090e4fe9572"
/>

## After


https://github.com/user-attachments/assets/fb892f16-f1ca-4e02-b588-2651d5738a9b
2026-04-02 13:09:04 +00:00
634a5e9599 i18n - translations (#19263)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-04-02 15:13:10 +02:00
Charles BochetandGitHub 45c1c60acc Fix maintenance mode banner button color, timezone and date picker UX (#19255)
## Summary
- Set `accent="blue"` on InformationBanner action button so it renders
blue instead of default gray
- Add Banner storybook stories for all color × variant combinations
(BluePrimary, BlueSecondary, DangerPrimary, DangerSecondary)
- Use `useUserTimezone()` in `SettingsDatePickerInput` instead of
browser timezone (`Temporal.Now.timeZoneId()`) so dates respect the
admin's profile timezone preference
- Separate `onChange` from `onClose` in `SettingsDatePickerInput` so
changing the hour no longer forces the date picker to close
2026-04-02 12:58:03 +00:00
8581c11d56 i18n - docs translations (#19257)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-04-02 14:38:19 +02:00
Félix MalfaitGitHubclaude[bot] <41898282+claude[bot]@users.noreply.github.com>
2ebff5f4d7 fix: harden token renewal and soften refresh token revocation (#19175)
## Summary
- **Apollo factory** (`apollo.factory.ts`): Bail early with `EMPTY` when
no token pair exists so no request is forwarded without credentials.
Propagate renewal success/failure as a boolean so failed renewals stop
the operation chain instead of forwarding with stale tokens.
- **Refresh token service** (`refresh-token.service.ts`): When a revoked
refresh token is reused past the grace period, reject only that token
instead of mass-revoking all user tokens. The most common cause is a
lost renewal response (e.g. navigation during refresh), not actual token
theft. This eliminates the "Suspicious activity detected" errors users
were seeing. Also switches to `findOneBy` since the `appTokens` relation
is no longer needed.

## Test plan
- [x] `refresh-token.service.spec.ts` — all 7 tests pass
- [ ] Verify login flow: sign in from `app.localhost`, get redirected to
workspace subdomain without "Suspicious activity" errors
- [ ] Verify token renewal: let access token expire, confirm silent
renewal works and operations resume
- [ ] Verify concurrent tabs: open multiple tabs, let tokens expire,
confirm no mass revocation cascade

Made with [Cursor](https://cursor.com)

---------

Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
2026-04-02 12:01:31 +00:00
Charles BochetandGitHub b8e7179a85 Add missing index on viewField.viewFieldGroupId (#19253)
## Summary

- Adds an index on `viewField.viewFieldGroupId` to fix a ~28s `DELETE
FROM core.viewFieldGroup WHERE workspaceId = $1` query observed in
production
- The slow query is triggered during workspace hard deletion
(`deleteWorkspaceSyncableMetadataEntities` in `workspace.service.ts`)
- Root cause: the FK constraint `viewField.viewFieldGroupId →
viewFieldGroup.id` with `ON DELETE SET NULL` forces PostgreSQL to
sequentially scan the entire `viewField` table for every deleted
`viewFieldGroup` row, because no index exists on the referencing column
- Uses `CREATE INDEX CONCURRENTLY` in the migration to avoid locking the
table on production
2026-04-02 11:57:27 +00:00
Baptiste DevessierandGitHub b1a7155431 Disable edition for record page layouts disabled in the side panel (#19248)
## Before


https://github.com/user-attachments/assets/8e5151d8-7e90-420c-a826-b6e670c68000

## After


https://github.com/user-attachments/assets/a230bc46-5991-4972-94d1-9fffe894ff4a

Fixes
https://discord.com/channels/1130383047699738754/1488106565117673513
2026-04-02 11:51:44 +00:00
EtienneandGitHub a303d9ca1b Gql direct execution - Handle introspection queries (#19219)
### Context
GraphQL introspection queries (__schema, __type) were going through the
full Yoga server pipeline, which forces a complete workspace schema
build, loading flat metadata maps, building all GraphQL types, wiring
all resolver factories, and calling makeExecutableSchema. This is
expensive, even though introspection only needs the type structure and
zero resolver execution.

A new WorkspaceGraphqlSchemaSDLService extracts the SDL computation that
was previously embedded inside WorkspaceSchemaFactory.

From `direct-execution.service.ts` : 
- `buildSchema(sdl)` reconstructs a resolver-free GraphQLSchema from the
SDL
     - pure CPU, not cached, not sure it worths it ?

- `execute({ schema, document, variableValues })` from graphql-js,
introspection is answered entirely by the graphql-js runtime from type
metadata, no resolver execution needed


#### Nice to do ?
- Use new cache service for typeDefs ?


### Renaming bonus: `typeDefs` → `sdl`

`typeDefs` is an Apollo/graphql-tools convention. It's the parameter
name in
`makeExecutableSchema({ typeDefs, resolvers })`, not a native GraphQL
spec term.

In proper GraphQL semantics, what this service produces is the **SDL**
(Schema
Definition Language): the official term for the string representation of
a schema.
`printSchema()` produces it, `buildSchema()` consumes it.

##### Why the distinction matters

- **Type definitions** implies partial type declarations (objects,
scalars, enums…)
- **Schema SDL** conveys a *complete* schema document: all types
**plus** the root
operation types (`Query`, `Mutation`) which is exactly what
`printSchema(schema)`
  produces
2026-04-02 11:50:18 +00:00
391 changed files with 12217 additions and 4469 deletions
+3 -1
View File
@@ -66,7 +66,9 @@ jobs:
run: |
CI_VERSION="0.0.0-ci.$(date +%s)"
echo "CI_VERSION=$CI_VERSION" >> $GITHUB_ENV
npx nx run-many -t set-local-version -p $PUBLISHABLE_PACKAGES --releaseVersion=$CI_VERSION
for pkg in $PUBLISHABLE_PACKAGES; do
npx nx run $pkg:set-local-version --releaseVersion=$CI_VERSION
done
- name: Build packages
run: |
+1
View File
@@ -52,3 +52,4 @@ mcp.json
/.junie/
TRANSLATION_QA_REPORT.md
.playwright-mcp/
.playwright-cli/
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "create-twenty-app",
"version": "0.8.0-canary.8",
"version": "0.8.0-canary.9",
"description": "Command-line interface to create Twenty application",
"main": "dist/cli.cjs",
"bin": "dist/cli.cjs",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-client-sdk",
"version": "0.8.0-canary.8",
"version": "0.8.0-canary.9",
"sideEffects": false,
"license": "AGPL-3.0",
"scripts": {
@@ -2653,6 +2653,7 @@ type ToolIndexEntry {
description: String!
category: String!
objectName: String
icon: String
inputSchema: JSON
}
@@ -3108,6 +3109,8 @@ type Query {
getView(id: String!): View
getViewSorts(viewId: String): [ViewSort!]!
getViewSort(id: String!): ViewSort
getViewFields(viewId: String!): [ViewField!]!
getViewField(id: String!): ViewField
getViewFieldGroups(viewId: String!): [ViewFieldGroup!]!
getViewFieldGroup(id: String!): ViewFieldGroup
apiKeys: [ApiKey!]!
@@ -3146,8 +3149,6 @@ type Query {
"""Specify to filter the records returned."""
filter: ObjectFilter! = {}
): ObjectConnection!
getViewFields(viewId: String!): [ViewField!]!
getViewField(id: String!): ViewField
index(
"""The id of the record to find."""
id: UUID!
@@ -3400,6 +3401,11 @@ type Mutation {
updateViewSort(input: UpdateViewSortInput!): ViewSort!
deleteViewSort(input: DeleteViewSortInput!): Boolean!
destroyViewSort(input: DestroyViewSortInput!): Boolean!
updateViewField(input: UpdateViewFieldInput!): ViewField!
createViewField(input: CreateViewFieldInput!): ViewField!
createManyViewFields(inputs: [CreateViewFieldInput!]!): [ViewField!]!
deleteViewField(input: DeleteViewFieldInput!): ViewField!
destroyViewField(input: DestroyViewFieldInput!): ViewField!
updateViewFieldGroup(input: UpdateViewFieldGroupInput!): ViewFieldGroup!
createViewFieldGroup(input: CreateViewFieldGroupInput!): ViewFieldGroup!
createManyViewFieldGroups(inputs: [CreateViewFieldGroupInput!]!): [ViewFieldGroup!]!
@@ -3453,11 +3459,6 @@ type Mutation {
createOneObject(input: CreateOneObjectInput!): Object!
deleteOneObject(input: DeleteOneObjectInput!): Object!
updateOneObject(input: UpdateOneObjectInput!): Object!
updateViewField(input: UpdateViewFieldInput!): ViewField!
createViewField(input: CreateViewFieldInput!): ViewField!
createManyViewFields(inputs: [CreateViewFieldInput!]!): [ViewField!]!
deleteViewField(input: DeleteViewFieldInput!): ViewField!
destroyViewField(input: DestroyViewFieldInput!): ViewField!
createOneAgent(input: CreateAgentInput!): Agent!
updateOneAgent(input: UpdateAgentInput!): Agent!
deleteOneAgent(input: AgentIdInput!): Agent!
@@ -3751,6 +3752,43 @@ input DestroyViewSortInput {
id: UUID!
}
input UpdateViewFieldInput {
"""The id of the view field to update"""
id: UUID!
"""The view field to update"""
update: UpdateViewFieldInputUpdates!
}
input UpdateViewFieldInputUpdates {
isVisible: Boolean
size: Float
position: Float
aggregateOperation: AggregateOperations
viewFieldGroupId: UUID
}
input CreateViewFieldInput {
id: UUID
fieldMetadataId: UUID!
viewId: UUID!
isVisible: Boolean = true
size: Float = 0
position: Float = 0
aggregateOperation: AggregateOperations
viewFieldGroupId: UUID
}
input DeleteViewFieldInput {
"""The id of the view field to delete."""
id: UUID!
}
input DestroyViewFieldInput {
"""The id of the view field to destroy."""
id: UUID!
}
input UpdateViewFieldGroupInput {
"""The id of the view field group to update"""
id: UUID!
@@ -4081,43 +4119,6 @@ input UpdateObjectPayload {
isSearchable: Boolean
}
input UpdateViewFieldInput {
"""The id of the view field to update"""
id: UUID!
"""The view field to update"""
update: UpdateViewFieldInputUpdates!
}
input UpdateViewFieldInputUpdates {
isVisible: Boolean
size: Float
position: Float
aggregateOperation: AggregateOperations
viewFieldGroupId: UUID
}
input CreateViewFieldInput {
id: UUID
fieldMetadataId: UUID!
viewId: UUID!
isVisible: Boolean = true
size: Float = 0
position: Float = 0
aggregateOperation: AggregateOperations
viewFieldGroupId: UUID
}
input DeleteViewFieldInput {
"""The id of the view field to delete."""
id: UUID!
}
input DestroyViewFieldInput {
"""The id of the view field to destroy."""
id: UUID!
}
input CreateAgentInput {
name: String
label: String!
@@ -2297,6 +2297,7 @@ export interface ToolIndexEntry {
description: Scalars['String']
category: Scalars['String']
objectName?: Scalars['String']
icon?: Scalars['String']
inputSchema?: Scalars['JSON']
__typename: 'ToolIndexEntry'
}
@@ -2698,6 +2699,8 @@ export interface Query {
getView?: View
getViewSorts: ViewSort[]
getViewSort?: ViewSort
getViewFields: ViewField[]
getViewField?: ViewField
getViewFieldGroups: ViewFieldGroup[]
getViewFieldGroup?: ViewFieldGroup
apiKeys: ApiKey[]
@@ -2727,8 +2730,6 @@ export interface Query {
objectRecordCounts: ObjectRecordCount[]
object: Object
objects: ObjectConnection
getViewFields: ViewField[]
getViewField?: ViewField
index: Index
indexMetadatas: IndexConnection
findManyAgents: Agent[]
@@ -2849,6 +2850,11 @@ export interface Mutation {
updateViewSort: ViewSort
deleteViewSort: Scalars['Boolean']
destroyViewSort: Scalars['Boolean']
updateViewField: ViewField
createViewField: ViewField
createManyViewFields: ViewField[]
deleteViewField: ViewField
destroyViewField: ViewField
updateViewFieldGroup: ViewFieldGroup
createViewFieldGroup: ViewFieldGroup
createManyViewFieldGroups: ViewFieldGroup[]
@@ -2902,11 +2908,6 @@ export interface Mutation {
createOneObject: Object
deleteOneObject: Object
updateOneObject: Object
updateViewField: ViewField
createViewField: ViewField
createManyViewFields: ViewField[]
deleteViewField: ViewField
destroyViewField: ViewField
createOneAgent: Agent
updateOneAgent: Agent
deleteOneAgent: Agent
@@ -5475,6 +5476,7 @@ export interface ToolIndexEntryGenqlSelection{
description?: boolean | number
category?: boolean | number
objectName?: boolean | number
icon?: boolean | number
inputSchema?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
@@ -5885,6 +5887,8 @@ export interface QueryGenqlSelection{
getView?: (ViewGenqlSelection & { __args: {id: Scalars['String']} })
getViewSorts?: (ViewSortGenqlSelection & { __args?: {viewId?: (Scalars['String'] | null)} })
getViewSort?: (ViewSortGenqlSelection & { __args: {id: Scalars['String']} })
getViewFields?: (ViewFieldGenqlSelection & { __args: {viewId: Scalars['String']} })
getViewField?: (ViewFieldGenqlSelection & { __args: {id: Scalars['String']} })
getViewFieldGroups?: (ViewFieldGroupGenqlSelection & { __args: {viewId: Scalars['String']} })
getViewFieldGroup?: (ViewFieldGroupGenqlSelection & { __args: {id: Scalars['String']} })
apiKeys?: ApiKeyGenqlSelection
@@ -5920,8 +5924,6 @@ export interface QueryGenqlSelection{
paging: CursorPaging,
/** Specify to filter the records returned. */
filter: ObjectFilter} })
getViewFields?: (ViewFieldGenqlSelection & { __args: {viewId: Scalars['String']} })
getViewField?: (ViewFieldGenqlSelection & { __args: {id: Scalars['String']} })
index?: (IndexGenqlSelection & { __args: {
/** The id of the record to find. */
id: Scalars['UUID']} })
@@ -6079,6 +6081,11 @@ export interface MutationGenqlSelection{
updateViewSort?: (ViewSortGenqlSelection & { __args: {input: UpdateViewSortInput} })
deleteViewSort?: { __args: {input: DeleteViewSortInput} }
destroyViewSort?: { __args: {input: DestroyViewSortInput} }
updateViewField?: (ViewFieldGenqlSelection & { __args: {input: UpdateViewFieldInput} })
createViewField?: (ViewFieldGenqlSelection & { __args: {input: CreateViewFieldInput} })
createManyViewFields?: (ViewFieldGenqlSelection & { __args: {inputs: CreateViewFieldInput[]} })
deleteViewField?: (ViewFieldGenqlSelection & { __args: {input: DeleteViewFieldInput} })
destroyViewField?: (ViewFieldGenqlSelection & { __args: {input: DestroyViewFieldInput} })
updateViewFieldGroup?: (ViewFieldGroupGenqlSelection & { __args: {input: UpdateViewFieldGroupInput} })
createViewFieldGroup?: (ViewFieldGroupGenqlSelection & { __args: {input: CreateViewFieldGroupInput} })
createManyViewFieldGroups?: (ViewFieldGroupGenqlSelection & { __args: {inputs: CreateViewFieldGroupInput[]} })
@@ -6132,11 +6139,6 @@ export interface MutationGenqlSelection{
createOneObject?: (ObjectGenqlSelection & { __args: {input: CreateOneObjectInput} })
deleteOneObject?: (ObjectGenqlSelection & { __args: {input: DeleteOneObjectInput} })
updateOneObject?: (ObjectGenqlSelection & { __args: {input: UpdateOneObjectInput} })
updateViewField?: (ViewFieldGenqlSelection & { __args: {input: UpdateViewFieldInput} })
createViewField?: (ViewFieldGenqlSelection & { __args: {input: CreateViewFieldInput} })
createManyViewFields?: (ViewFieldGenqlSelection & { __args: {inputs: CreateViewFieldInput[]} })
deleteViewField?: (ViewFieldGenqlSelection & { __args: {input: DeleteViewFieldInput} })
destroyViewField?: (ViewFieldGenqlSelection & { __args: {input: DestroyViewFieldInput} })
createOneAgent?: (AgentGenqlSelection & { __args: {input: CreateAgentInput} })
updateOneAgent?: (AgentGenqlSelection & { __args: {input: UpdateAgentInput} })
deleteOneAgent?: (AgentGenqlSelection & { __args: {input: AgentIdInput} })
@@ -6323,6 +6325,24 @@ export interface DestroyViewSortInput {
/** The id of the view sort to destroy. */
id: Scalars['UUID']}
export interface UpdateViewFieldInput {
/** The id of the view field to update */
id: Scalars['UUID'],
/** The view field to update */
update: UpdateViewFieldInputUpdates}
export interface UpdateViewFieldInputUpdates {isVisible?: (Scalars['Boolean'] | null),size?: (Scalars['Float'] | null),position?: (Scalars['Float'] | null),aggregateOperation?: (AggregateOperations | null),viewFieldGroupId?: (Scalars['UUID'] | null)}
export interface CreateViewFieldInput {id?: (Scalars['UUID'] | null),fieldMetadataId: Scalars['UUID'],viewId: Scalars['UUID'],isVisible?: (Scalars['Boolean'] | null),size?: (Scalars['Float'] | null),position?: (Scalars['Float'] | null),aggregateOperation?: (AggregateOperations | null),viewFieldGroupId?: (Scalars['UUID'] | null)}
export interface DeleteViewFieldInput {
/** The id of the view field to delete. */
id: Scalars['UUID']}
export interface DestroyViewFieldInput {
/** The id of the view field to destroy. */
id: Scalars['UUID']}
export interface UpdateViewFieldGroupInput {
/** The id of the view field group to update */
id: Scalars['UUID'],
@@ -6435,24 +6455,6 @@ id: Scalars['UUID']}
export interface UpdateObjectPayload {labelSingular?: (Scalars['String'] | null),labelPlural?: (Scalars['String'] | null),nameSingular?: (Scalars['String'] | null),namePlural?: (Scalars['String'] | null),description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),shortcut?: (Scalars['String'] | null),color?: (Scalars['String'] | null),isActive?: (Scalars['Boolean'] | null),labelIdentifierFieldMetadataId?: (Scalars['UUID'] | null),imageIdentifierFieldMetadataId?: (Scalars['UUID'] | null),isLabelSyncedWithName?: (Scalars['Boolean'] | null),isSearchable?: (Scalars['Boolean'] | null)}
export interface UpdateViewFieldInput {
/** The id of the view field to update */
id: Scalars['UUID'],
/** The view field to update */
update: UpdateViewFieldInputUpdates}
export interface UpdateViewFieldInputUpdates {isVisible?: (Scalars['Boolean'] | null),size?: (Scalars['Float'] | null),position?: (Scalars['Float'] | null),aggregateOperation?: (AggregateOperations | null),viewFieldGroupId?: (Scalars['UUID'] | null)}
export interface CreateViewFieldInput {id?: (Scalars['UUID'] | null),fieldMetadataId: Scalars['UUID'],viewId: Scalars['UUID'],isVisible?: (Scalars['Boolean'] | null),size?: (Scalars['Float'] | null),position?: (Scalars['Float'] | null),aggregateOperation?: (AggregateOperations | null),viewFieldGroupId?: (Scalars['UUID'] | null)}
export interface DeleteViewFieldInput {
/** The id of the view field to delete. */
id: Scalars['UUID']}
export interface DestroyViewFieldInput {
/** The id of the view field to destroy. */
id: Scalars['UUID']}
export interface CreateAgentInput {name?: (Scalars['String'] | null),label: Scalars['String'],icon?: (Scalars['String'] | null),description?: (Scalars['String'] | null),prompt: Scalars['String'],modelId: Scalars['String'],roleId?: (Scalars['UUID'] | null),responseFormat?: (Scalars['JSON'] | null),modelConfiguration?: (Scalars['JSON'] | null),evaluationInputs?: (Scalars['String'][] | null)}
export interface UpdateAgentInput {id: Scalars['UUID'],name?: (Scalars['String'] | null),label?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),description?: (Scalars['String'] | null),prompt?: (Scalars['String'] | null),modelId?: (Scalars['String'] | null),roleId?: (Scalars['UUID'] | null),responseFormat?: (Scalars['JSON'] | null),modelConfiguration?: (Scalars['JSON'] | null),evaluationInputs?: (Scalars['String'][] | null)}
@@ -87,7 +87,7 @@ export default {
358,
365,
372,
398,
403,
482,
487,
488
@@ -5179,6 +5179,9 @@ export default {
"objectName": [
1
],
"icon": [
1
],
"inputSchema": [
15
],
@@ -6114,6 +6117,24 @@ export default {
]
}
],
"getViewFields": [
50,
{
"viewId": [
1,
"String!"
]
}
],
"getViewField": [
50,
{
"id": [
1,
"String!"
]
}
],
"getViewFieldGroups": [
59,
{
@@ -6318,24 +6339,6 @@ export default {
]
}
],
"getViewFields": [
50,
{
"viewId": [
1,
"String!"
]
}
],
"getViewField": [
50,
{
"id": [
1,
"String!"
]
}
],
"index": [
37,
{
@@ -7374,11 +7377,56 @@ export default {
]
}
],
"updateViewField": [
50,
{
"input": [
387,
"UpdateViewFieldInput!"
]
}
],
"createViewField": [
50,
{
"input": [
389,
"CreateViewFieldInput!"
]
}
],
"createManyViewFields": [
50,
{
"inputs": [
389,
"[CreateViewFieldInput!]!"
]
}
],
"deleteViewField": [
50,
{
"input": [
390,
"DeleteViewFieldInput!"
]
}
],
"destroyViewField": [
50,
{
"input": [
391,
"DestroyViewFieldInput!"
]
}
],
"updateViewFieldGroup": [
59,
{
"input": [
387,
392,
"UpdateViewFieldGroupInput!"
]
}
@@ -7387,7 +7435,7 @@ export default {
59,
{
"input": [
389,
394,
"CreateViewFieldGroupInput!"
]
}
@@ -7396,7 +7444,7 @@ export default {
59,
{
"inputs": [
389,
394,
"[CreateViewFieldGroupInput!]!"
]
}
@@ -7405,7 +7453,7 @@ export default {
59,
{
"input": [
390,
395,
"DeleteViewFieldGroupInput!"
]
}
@@ -7414,7 +7462,7 @@ export default {
59,
{
"input": [
391,
396,
"DestroyViewFieldGroupInput!"
]
}
@@ -7423,7 +7471,7 @@ export default {
60,
{
"input": [
392,
397,
"UpsertFieldsWidgetInput!"
]
}
@@ -7432,7 +7480,7 @@ export default {
2,
{
"input": [
395,
400,
"CreateApiKeyInput!"
]
}
@@ -7441,7 +7489,7 @@ export default {
2,
{
"input": [
396,
401,
"UpdateApiKeyInput!"
]
}
@@ -7450,7 +7498,7 @@ export default {
2,
{
"input": [
397,
402,
"RevokeApiKeyInput!"
]
}
@@ -7492,7 +7540,7 @@ export default {
115,
{
"type": [
398,
403,
"AnalyticsType!"
],
"name": [
@@ -7605,7 +7653,7 @@ export default {
140,
{
"input": [
399,
404,
"CreateApprovedAccessDomainInput!"
]
}
@@ -7614,7 +7662,7 @@ export default {
6,
{
"input": [
400,
405,
"DeleteApprovedAccessDomainInput!"
]
}
@@ -7623,7 +7671,7 @@ export default {
140,
{
"input": [
401,
406,
"ValidateApprovedAccessDomainInput!"
]
}
@@ -7632,7 +7680,7 @@ export default {
112,
{
"input": [
402,
407,
"CreatePageLayoutTabInput!"
]
}
@@ -7645,7 +7693,7 @@ export default {
"String!"
],
"input": [
403,
408,
"UpdatePageLayoutTabInput!"
]
}
@@ -7663,7 +7711,7 @@ export default {
113,
{
"input": [
404,
409,
"CreatePageLayoutInput!"
]
}
@@ -7676,7 +7724,7 @@ export default {
"String!"
],
"input": [
405,
410,
"UpdatePageLayoutInput!"
]
}
@@ -7698,7 +7746,7 @@ export default {
"String!"
],
"input": [
406,
411,
"UpdatePageLayoutWithTabsInput!"
]
}
@@ -7707,7 +7755,7 @@ export default {
75,
{
"input": [
410,
415,
"CreatePageLayoutWidgetInput!"
]
}
@@ -7720,7 +7768,7 @@ export default {
"String!"
],
"input": [
411,
416,
"UpdatePageLayoutWidgetInput!"
]
}
@@ -7747,7 +7795,7 @@ export default {
32,
{
"input": [
412,
417,
"CreateLogicFunctionFromSourceInput!"
]
}
@@ -7756,7 +7804,7 @@ export default {
154,
{
"input": [
413,
418,
"ExecuteOneLogicFunctionInput!"
]
}
@@ -7765,7 +7813,7 @@ export default {
6,
{
"input": [
414,
419,
"UpdateLogicFunctionFromSourceInput!"
]
}
@@ -7774,7 +7822,7 @@ export default {
294,
{
"input": [
416,
421,
"CreateCommandMenuItemInput!"
]
}
@@ -7783,7 +7831,7 @@ export default {
294,
{
"input": [
417,
422,
"UpdateCommandMenuItemInput!"
]
}
@@ -7801,7 +7849,7 @@ export default {
251,
{
"input": [
418,
423,
"CreateFrontComponentInput!"
]
}
@@ -7810,7 +7858,7 @@ export default {
251,
{
"input": [
419,
424,
"UpdateFrontComponentInput!"
]
}
@@ -7828,7 +7876,7 @@ export default {
46,
{
"input": [
421,
426,
"CreateOneObjectInput!"
]
}
@@ -7837,62 +7885,17 @@ export default {
46,
{
"input": [
423,
428,
"DeleteOneObjectInput!"
]
}
],
"updateOneObject": [
46,
{
"input": [
424,
"UpdateOneObjectInput!"
]
}
],
"updateViewField": [
50,
{
"input": [
426,
"UpdateViewFieldInput!"
]
}
],
"createViewField": [
50,
{
"input": [
428,
"CreateViewFieldInput!"
]
}
],
"createManyViewFields": [
50,
{
"inputs": [
428,
"[CreateViewFieldInput!]!"
]
}
],
"deleteViewField": [
50,
{
"input": [
429,
"DeleteViewFieldInput!"
]
}
],
"destroyViewField": [
50,
{
"input": [
430,
"DestroyViewFieldInput!"
"UpdateOneObjectInput!"
]
}
],
@@ -9602,7 +9605,7 @@ export default {
1
]
},
"UpdateViewFieldGroupInput": {
"UpdateViewFieldInput": {
"id": [
3
],
@@ -9613,6 +9616,82 @@ export default {
1
]
},
"UpdateViewFieldInputUpdates": {
"isVisible": [
6
],
"size": [
11
],
"position": [
11
],
"aggregateOperation": [
51
],
"viewFieldGroupId": [
3
],
"__typename": [
1
]
},
"CreateViewFieldInput": {
"id": [
3
],
"fieldMetadataId": [
3
],
"viewId": [
3
],
"isVisible": [
6
],
"size": [
11
],
"position": [
11
],
"aggregateOperation": [
51
],
"viewFieldGroupId": [
3
],
"__typename": [
1
]
},
"DeleteViewFieldInput": {
"id": [
3
],
"__typename": [
1
]
},
"DestroyViewFieldInput": {
"id": [
3
],
"__typename": [
1
]
},
"UpdateViewFieldGroupInput": {
"id": [
3
],
"update": [
393
],
"__typename": [
1
]
},
"UpdateViewFieldGroupInputUpdates": {
"name": [
1
@@ -9671,10 +9750,10 @@ export default {
3
],
"groups": [
393
398
],
"fields": [
394
399
],
"__typename": [
1
@@ -9694,7 +9773,7 @@ export default {
6
],
"fields": [
394
399
],
"__typename": [
1
@@ -9863,7 +9942,7 @@ export default {
3
],
"tabs": [
407
412
],
"__typename": [
1
@@ -9886,7 +9965,7 @@ export default {
79
],
"widgets": [
408
413
],
"__typename": [
1
@@ -9909,7 +9988,7 @@ export default {
3
],
"gridPosition": [
409
414
],
"position": [
15
@@ -9955,7 +10034,7 @@ export default {
3
],
"gridPosition": [
409
414
],
"position": [
15
@@ -9978,7 +10057,7 @@ export default {
3
],
"gridPosition": [
409
414
],
"position": [
15
@@ -10047,7 +10126,7 @@ export default {
3
],
"update": [
415
420
],
"__typename": [
1
@@ -10198,7 +10277,7 @@ export default {
3
],
"update": [
420
425
],
"__typename": [
1
@@ -10217,7 +10296,7 @@ export default {
},
"CreateOneObjectInput": {
"object": [
422
427
],
"__typename": [
1
@@ -10277,7 +10356,7 @@ export default {
},
"UpdateOneObjectInput": {
"update": [
425
430
],
"id": [
3
@@ -10330,82 +10409,6 @@ export default {
1
]
},
"UpdateViewFieldInput": {
"id": [
3
],
"update": [
427
],
"__typename": [
1
]
},
"UpdateViewFieldInputUpdates": {
"isVisible": [
6
],
"size": [
11
],
"position": [
11
],
"aggregateOperation": [
51
],
"viewFieldGroupId": [
3
],
"__typename": [
1
]
},
"CreateViewFieldInput": {
"id": [
3
],
"fieldMetadataId": [
3
],
"viewId": [
3
],
"isVisible": [
6
],
"size": [
11
],
"position": [
11
],
"aggregateOperation": [
51
],
"viewFieldGroupId": [
3
],
"__typename": [
1
]
},
"DeleteViewFieldInput": {
"id": [
3
],
"__typename": [
1
]
},
"DestroyViewFieldInput": {
"id": [
3
],
"__typename": [
1
]
},
"CreateAgentInput": {
"name": [
1
@@ -18,13 +18,13 @@ Ambos os caminhos começam na mesma etapa de **build**.
## Compilando seu app
Run the build command to compile your app and generate a distribution-ready `manifest.json`:
Execute o comando build para compilar seu app e gerar um `manifest.json` pronto para distribuição:
```bash filename="Terminal"
yarn twenty build
```
This compiles TypeScript sources, transpiles logic functions and front components, and writes everything to `.twenty/output/`. Add `--tarball` to also produce a `.tgz` package for manual distribution or the deploy command.
Isso compila seu código-fonte em TypeScript, transpila funções de lógica e componentes de front-end e grava tudo em `.twenty/output/`. Adicione `--tarball` para também gerar um pacote `.tgz` para distribuição manual ou para o comando de deploy.
## Implantando em um servidor (tarball)
@@ -61,7 +61,7 @@ Aplicativos em tarball não são listados no marketplace público, então outros
O link de compartilhamento usa a URL base do servidor (sem qualquer subdomínio de espaço de trabalho), para funcionar em qualquer espaço de trabalho no servidor.
<Warning>
Sharing private apps is an Enterprise feature. Go to [Settings > Admin Panel > Enterprise](/settings/admin-panel#enterprise) to enable it.
Compartilhar apps privados é um recurso do plano Enterprise. Vá para [Configurações > Painel de Administração > Enterprise](/settings/admin-panel#enterprise) para ativá-lo.
</Warning>
### Gerenciamento de versões
@@ -69,7 +69,7 @@ Sharing private apps is an Enterprise feature. Go to [Settings > Admin Panel > E
Para lançar uma atualização:
1. Atualize o campo `version` no seu `package.json`
2. Run `yarn twenty deploy` (or `yarn twenty deploy --remote production`)
2. Execute `yarn twenty deploy` (ou `yarn twenty deploy --remote production`)
3. Os espaços de trabalho que têm o aplicativo instalado verão a atualização disponível em suas configurações
{/* TODO: add screenshot of the Upgrade button */}
@@ -81,7 +81,7 @@ Publicar no npm torna seu aplicativo descobrível no Marketplace da Twenty. Qual
### Requisitos
* Uma conta no [npm](https://www.npmjs.com)
* The `twenty-app` keyword in your `package.json` `keywords` array (already included when you scaffold with `create-twenty-app`)
* A palavra-chave `twenty-app` no array `keywords` do seu `package.json` (já incluída quando você cria o projeto com `create-twenty-app`)
```json filename="package.json"
{
@@ -93,7 +93,7 @@ Publicar no npm torna seu aplicativo descobrível no Marketplace da Twenty. Qual
### Metadados do Marketplace
The `defineApplication()` config supports optional fields that control how your app appears in the marketplace. Use `logoUrl` and `screenshots` to reference images from the `public/` folder:
A configuração `defineApplication()` oferece suporte a campos opcionais que controlam como seu app aparece no marketplace. Use `logoUrl` e `screenshots` para referenciar imagens da pasta `public/`:
```ts src/application-config.ts
export default defineApplication({
@@ -109,9 +109,9 @@ export default defineApplication({
});
```
See the [defineApplication accordion](/l/pt/developers/extend/apps/building#defineentity-functions) in the Building Apps page for the full list of marketplace fields (`author`, `category`, `aboutDescription`, `websiteUrl`, `termsUrl`, etc.).
Veja o [acordeão de defineApplication](/l/pt/developers/extend/apps/building#defineentity-functions) na página Building Apps para a lista completa de campos do marketplace (`author`, `category`, `aboutDescription`, `websiteUrl`, `termsUrl`, etc.).
### Publish
### Publicar
```bash filename="Terminal"
yarn twenty publish
@@ -127,7 +127,7 @@ yarn twenty publish --tag beta
O servidor Twenty sincroniza seu catálogo do marketplace a partir do registro do npm **a cada hora**.
You can trigger the sync immediately instead of waiting:
Você pode acionar a sincronização imediatamente em vez de esperar:
```bash filename="Terminal"
yarn twenty catalog-sync
@@ -135,7 +135,7 @@ yarn twenty catalog-sync
# yarn twenty catalog-sync --remote production
```
The metadata shown in the marketplace comes from your `defineApplication()` config — fields like `displayName`, `description`, `author`, `category`, `logoUrl`, `screenshots`, `aboutDescription`, `websiteUrl`, and `termsUrl`.
Os metadados exibidos no marketplace vêm da sua configuração `defineApplication()` — campos como `displayName`, `description`, `author`, `category`, `logoUrl`, `screenshots`, `aboutDescription`, `websiteUrl` e `termsUrl`.
<Note>
Se o seu aplicativo não definir um `aboutDescription` em `defineApplication()`, o marketplace usará automaticamente o `README.md` do seu pacote no npm como conteúdo da página Sobre. Isso significa que você pode manter um único README tanto para o npm quanto para o marketplace da Twenty. Se quiser uma descrição diferente no marketplace, defina explicitamente `aboutDescription`.
@@ -143,7 +143,7 @@ Se o seu aplicativo não definir um `aboutDescription` em `defineApplication()`,
### Publicação via CI
Use this GitHub Actions workflow to publish automatically on every release (uses [OIDC](https://docs.npmjs.com/trusted-publishers)):
Use este workflow do GitHub Actions para publicar automaticamente a cada release (usa [OIDC](https://docs.npmjs.com/trusted-publishers)):
```yaml filename=".github/workflows/publish.yml"
name: Publish
@@ -178,13 +178,13 @@ Para outros sistemas de CI (GitLab CI, CircleCI etc.), aplicam-se os mesmos trê
## Instalando aplicativos
Once an app is published (npm) or deployed (tarball), workspaces can install it through the UI.
Depois que um app é publicado (npm) ou implantado (tarball), os espaços de trabalho podem instalá-lo pela interface do usuário.
Go to the **Settings > Applications** page in Twenty, where both marketplace and tarball-deployed apps can be browsed and installed.
Vá para a página **Configurações > Aplicações** no Twenty, onde é possível navegar e instalar tanto apps do marketplace quanto apps implantados por tarball.
{/* TODO: add screenshot of the UI when the app is registered */}
You can also install apps from the command line:
Você também pode instalar apps pela linha de comando:
```bash filename="Terminal"
yarn twenty install
@@ -18,13 +18,13 @@ description: Распространяйте своё приложение Twenty
## Сборка вашего приложения
Run the build command to compile your app and generate a distribution-ready `manifest.json`:
Выполните команду сборки, чтобы скомпилировать приложение и сгенерировать готовый к распространению `manifest.json`:
```bash filename="Terminal"
yarn twenty build
```
This compiles TypeScript sources, transpiles logic functions and front components, and writes everything to `.twenty/output/`. Add `--tarball` to also produce a `.tgz` package for manual distribution or the deploy command.
Это компилирует исходные файлы TypeScript, транспилирует функции логики и фронтенд-компоненты и записывает всё в `.twenty/output/`. Добавьте `--tarball`, чтобы также создать пакет `.tgz` для ручного распространения или для команды deploy.
## Развертывание на сервер (tarball)
@@ -61,7 +61,7 @@ yarn twenty deploy
Ссылка общего доступа использует базовый URL сервера (без какого-либо поддомена рабочего пространства), поэтому она работает для любого рабочего пространства на сервере.
<Warning>
Sharing private apps is an Enterprise feature. Go to [Settings > Admin Panel > Enterprise](/settings/admin-panel#enterprise) to enable it.
Возможность делиться частными приложениями — функция Enterprise. Перейдите в [Настройки > Панель администратора > Enterprise](/settings/admin-panel#enterprise), чтобы включить её.
</Warning>
### Управление версиями
@@ -69,7 +69,7 @@ Sharing private apps is an Enterprise feature. Go to [Settings > Admin Panel > E
Чтобы выпустить обновление:
1. Обновите значение поля `version` в файле `package.json`
2. Run `yarn twenty deploy` (or `yarn twenty deploy --remote production`)
2. Выполните `yarn twenty deploy` (или `yarn twenty deploy --remote production`)
3. Рабочие пространства, в которых установлено приложение, увидят доступное обновление в своих настройках
{/* TODO: add screenshot of the Upgrade button */}
@@ -81,7 +81,7 @@ Sharing private apps is an Enterprise feature. Go to [Settings > Admin Panel > E
### Требования
* Учётная запись [npm](https://www.npmjs.com)
* The `twenty-app` keyword in your `package.json` `keywords` array (already included when you scaffold with `create-twenty-app`)
* Ключевое слово `twenty-app` в массиве `keywords` вашего `package.json` (уже добавлено при создании проекта с помощью `create-twenty-app`)
```json filename="package.json"
{
@@ -93,7 +93,7 @@ Sharing private apps is an Enterprise feature. Go to [Settings > Admin Panel > E
### Метаданные маркетплейса
The `defineApplication()` config supports optional fields that control how your app appears in the marketplace. Use `logoUrl` and `screenshots` to reference images from the `public/` folder:
Конфигурация `defineApplication()` поддерживает необязательные поля, которые определяют, как ваше приложение отображается в маркетплейсе. Используйте `logoUrl` и `screenshots`, чтобы ссылаться на изображения из папки `public/`:
```ts src/application-config.ts
export default defineApplication({
@@ -109,9 +109,9 @@ export default defineApplication({
});
```
See the [defineApplication accordion](/l/ru/developers/extend/apps/building#defineentity-functions) in the Building Apps page for the full list of marketplace fields (`author`, `category`, `aboutDescription`, `websiteUrl`, `termsUrl`, etc.).
См. [аккордеон defineApplication](/l/ru/developers/extend/apps/building#defineentity-functions) на странице «Создание приложений» для полного списка полей маркетплейса (`author`, `category`, `aboutDescription`, `websiteUrl`, `termsUrl` и т. д.).
### Publish
### Публикация
```bash filename="Terminal"
yarn twenty publish
@@ -127,7 +127,7 @@ yarn twenty publish --tag beta
Сервер Twenty синхронизирует каталог маркетплейса из реестра npm **каждый час**.
You can trigger the sync immediately instead of waiting:
Вы можете запустить синхронизацию немедленно, вместо ожидания:
```bash filename="Terminal"
yarn twenty catalog-sync
@@ -135,7 +135,7 @@ yarn twenty catalog-sync
# yarn twenty catalog-sync --remote production
```
The metadata shown in the marketplace comes from your `defineApplication()` config — fields like `displayName`, `description`, `author`, `category`, `logoUrl`, `screenshots`, `aboutDescription`, `websiteUrl`, and `termsUrl`.
Метаданные, отображаемые в маркетплейсе, берутся из конфигурации `defineApplication()` — из таких полей, как `displayName`, `description`, `author`, `category`, `logoUrl`, `screenshots`, `aboutDescription`, `websiteUrl` и `termsUrl`.
<Note>
Если ваше приложение не определяет `aboutDescription` в `defineApplication()`, маркетплейс автоматически использует `README.md` вашего пакета из npm в качестве содержимого страницы «О приложении». Это означает, что вы можете поддерживать единый README как для npm, так и для маркетплейса Twenty. Если вы хотите другое описание в маркетплейсе, явно задайте `aboutDescription`.
@@ -143,7 +143,7 @@ The metadata shown in the marketplace comes from your `defineApplication()` conf
### Публикация через CI
Use this GitHub Actions workflow to publish automatically on every release (uses [OIDC](https://docs.npmjs.com/trusted-publishers)):
Используйте этот workflow GitHub Actions, чтобы публиковать автоматически при каждом релизе (использует [OIDC](https://docs.npmjs.com/trusted-publishers)):
```yaml filename=".github/workflows/publish.yml"
name: Publish
@@ -178,13 +178,13 @@ jobs:
## Установка приложений
Once an app is published (npm) or deployed (tarball), workspaces can install it through the UI.
После публикации приложения (npm) или его развертывания (tarball) рабочие пространства могут установить его через интерфейс.
Go to the **Settings > Applications** page in Twenty, where both marketplace and tarball-deployed apps can be browsed and installed.
Перейдите на страницу **Настройки > Приложения** в Twenty, где можно просматривать и устанавливать как приложения из маркетплейса, так и развернутые через tarball.
{/* TODO: add screenshot of the UI when the app is registered */}
You can also install apps from the command line:
Вы также можете устанавливать приложения из командной строки:
```bash filename="Terminal"
yarn twenty install
@@ -18,13 +18,13 @@ Her iki yol da aynı **build** adımından başlar.
## Uygulamanızı derleme
Run the build command to compile your app and generate a distribution-ready `manifest.json`:
Uygulamanızı derlemek ve dağıtıma hazır bir `manifest.json` oluşturmak için build komutunu çalıştırın:
```bash filename="Terminal"
yarn twenty build
```
This compiles TypeScript sources, transpiles logic functions and front components, and writes everything to `.twenty/output/`. Add `--tarball` to also produce a `.tgz` package for manual distribution or the deploy command.
Bu işlem TypeScript kaynaklarını derler, mantık işlevlerini ve ön uç bileşenlerini transpile eder ve her şeyi `.twenty/output/` konumuna yazar. El ile dağıtım veya deploy komutu için bir `.tgz` paketini de üretmek amacıyla `--tarball` ekleyin.
## Sunucuya dağıtım (tarball)
@@ -61,7 +61,7 @@ Tarball uygulamaları genel pazar yerinde listelenmez; bu nedenle aynı sunucuda
Paylaşım bağlantısı, sunucunun temel URLsini (herhangi bir çalışma alanı alt alan adı olmadan) kullanır; böylece sunucudaki herhangi bir çalışma alanı için çalışır.
<Warning>
Sharing private apps is an Enterprise feature. Go to [Settings > Admin Panel > Enterprise](/settings/admin-panel#enterprise) to enable it.
Özel uygulamaları paylaşma bir Kurumsal özelliktir. [Ayarlar > Yönetim Paneli > Kurumsal](/settings/admin-panel#enterprise) bölümüne giderek etkinleştirin.
</Warning>
### Sürüm yönetimi
@@ -69,7 +69,7 @@ Sharing private apps is an Enterprise feature. Go to [Settings > Admin Panel > E
Bir güncelleme yayımlamak için:
1. `package.json` içindeki `version` alanını artırın
2. Run `yarn twenty deploy` (or `yarn twenty deploy --remote production`)
2. `yarn twenty deploy` (veya `yarn twenty deploy --remote production`) komutunu çalıştırın
3. Uygulamayı kurmuş olan çalışma alanları, ayarlarında mevcut güncellemeyi görecektir
{/* TODO: add screenshot of the Upgrade button */}
@@ -81,7 +81,7 @@ npmye yayımlamak, uygulamanızın Twenty pazaryerinde keşfedilebilir olmas
### Gereksinimler
* Bir [npm](https://www.npmjs.com) hesabı
* The `twenty-app` keyword in your `package.json` `keywords` array (already included when you scaffold with `create-twenty-app`)
* `package.json` içindeki `keywords` dizinizdeki `twenty-app` anahtar sözcüğü (`create-twenty-app` ile iskelet oluşturduğunuzda zaten eklenir)
```json filename="package.json"
{
@@ -93,7 +93,7 @@ npmye yayımlamak, uygulamanızın Twenty pazaryerinde keşfedilebilir olmas
### Pazaryeri meta verileri
The `defineApplication()` config supports optional fields that control how your app appears in the marketplace. Use `logoUrl` and `screenshots` to reference images from the `public/` folder:
`defineApplication()` yapılandırması, uygulamanızın pazar yerinde nasıl görüneceğini kontrol eden isteğe bağlı alanları destekler. `public/` klasöründeki görsellere başvurmak için `logoUrl` ve `screenshots` kullanın:
```ts src/application-config.ts
export default defineApplication({
@@ -109,9 +109,9 @@ export default defineApplication({
});
```
See the [defineApplication accordion](/l/tr/developers/extend/apps/building#defineentity-functions) in the Building Apps page for the full list of marketplace fields (`author`, `category`, `aboutDescription`, `websiteUrl`, `termsUrl`, etc.).
Pazar yeri alanlarının tam listesi için Uygulama Oluşturma sayfasındaki [defineApplication akordeonu](/l/tr/developers/extend/apps/building#defineentity-functions)'na bakın (`author`, `category`, `aboutDescription`, `websiteUrl`, `termsUrl`, vb.).
### Publish
### Yayımla
```bash filename="Terminal"
yarn twenty publish
@@ -125,9 +125,9 @@ yarn twenty publish --tag beta
### Pazar yerinde keşif nasıl çalışır
The Twenty server syncs its marketplace catalog from the npm registry **every hour**.
Twenty sunucusu pazar yeri kataloğunu npm kayıt defterinden **her saat** eşitler.
You can trigger the sync immediately instead of waiting:
Beklemek yerine eşitlemeyi hemen tetikleyebilirsiniz:
```bash filename="Terminal"
yarn twenty catalog-sync
@@ -135,7 +135,7 @@ yarn twenty catalog-sync
# yarn twenty catalog-sync --remote production
```
The metadata shown in the marketplace comes from your `defineApplication()` config — fields like `displayName`, `description`, `author`, `category`, `logoUrl`, `screenshots`, `aboutDescription`, `websiteUrl`, and `termsUrl`.
Pazar yerinde gösterilen meta veriler, `defineApplication()` yapılandırmanızdan gelir — `displayName`, `description`, `author`, `category`, `logoUrl`, `screenshots`, `aboutDescription`, `websiteUrl` ve `termsUrl` gibi alanlar.
<Note>
Uygulamanız `defineApplication()` içinde bir `aboutDescription` tanımlamıyorsa, pazaryeri, hakkında sayfasının içeriği olarak paketinizin npm'deki `README.md` dosyasını otomatik olarak kullanır. Bu, hem npm hem de Twenty pazaryeri için tek bir README dosyası kullanabileceğiniz anlamına gelir. Pazaryerinde farklı bir açıklama istiyorsanız, `aboutDescription` değerini açıkça ayarlayın.
@@ -143,7 +143,7 @@ Uygulamanız `defineApplication()` içinde bir `aboutDescription` tanımlamıyor
### CI üzerinden yayımlama
Use this GitHub Actions workflow to publish automatically on every release (uses [OIDC](https://docs.npmjs.com/trusted-publishers)):
Her sürümde otomatik olarak yayımlamak için bu GitHub Actions iş akışını kullanın ([OIDC](https://docs.npmjs.com/trusted-publishers) kullanır):
```yaml filename=".github/workflows/publish.yml"
name: Publish
@@ -178,13 +178,13 @@ Diğer CI sistemleri (GitLab CI, CircleCI, vb.) için de aynı üç komut geçer
## Uygulamaları yükleme
Once an app is published (npm) or deployed (tarball), workspaces can install it through the UI.
Bir uygulama yayımlandığında (npm) veya dağıtıldığında (tarball), çalışma alanları onu kullanıcı arayüzü (UI) üzerinden yükleyebilir.
Go to the **Settings > Applications** page in Twenty, where both marketplace and tarball-deployed apps can be browsed and installed.
Twenty içinde **Ayarlar > Uygulamalar** sayfasına gidin; burada hem pazar yerindeki hem de tarball ile dağıtılmış uygulamalar görüntülenip yüklenebilir.
{/* TODO: add screenshot of the UI when the app is registered */}
You can also install apps from the command line:
Uygulamaları komut satırından da yükleyebilirsiniz:
```bash filename="Terminal"
yarn twenty install
@@ -1,6 +1,5 @@
{
"name": "twenty-front-component-renderer",
"version": "0.8.0-canary.5",
"private": true,
"main": "dist/index.cjs",
"module": "dist/index.mjs",
Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

@@ -5141,6 +5141,7 @@ export type ToolIndexEntry = {
__typename?: 'ToolIndexEntry';
category: Scalars['String'];
description: Scalars['String'];
icon?: Maybe<Scalars['String']>;
inputSchema?: Maybe<Scalars['JSON']>;
name: Scalars['String'];
objectName?: Maybe<Scalars['String']>;
@@ -6404,7 +6405,7 @@ export type GetChatThreadsQuery = { __typename?: 'Query', chatThreads: { __typen
export type GetToolIndexQueryVariables = Exact<{ [key: string]: never; }>;
export type GetToolIndexQuery = { __typename?: 'Query', getToolIndex: Array<{ __typename?: 'ToolIndexEntry', name: string, description: string, category: string, objectName?: string | null }> };
export type GetToolIndexQuery = { __typename?: 'Query', getToolIndex: Array<{ __typename?: 'ToolIndexEntry', name: string, description: string, category: string, objectName?: string | null, icon?: string | null }> };
export type GetToolInputSchemaQueryVariables = Exact<{
toolName: Scalars['String'];
@@ -8261,7 +8262,7 @@ export const FindOneSkillDocument = {"kind":"Document","definitions":[{"kind":"O
export const GetAgentTurnsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetAgentTurns"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"agentId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"agentTurns"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"agentId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"agentId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"threadId"}},{"kind":"Field","name":{"kind":"Name","value":"agentId"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"evaluations"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"score"}},{"kind":"Field","name":{"kind":"Name","value":"comment"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}},{"kind":"Field","name":{"kind":"Name","value":"messages"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"role"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"parts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"textContent"}},{"kind":"Field","name":{"kind":"Name","value":"reasoningContent"}},{"kind":"Field","name":{"kind":"Name","value":"toolName"}},{"kind":"Field","name":{"kind":"Name","value":"toolCallId"}},{"kind":"Field","name":{"kind":"Name","value":"toolInput"}},{"kind":"Field","name":{"kind":"Name","value":"toolOutput"}},{"kind":"Field","name":{"kind":"Name","value":"errorMessage"}},{"kind":"Field","name":{"kind":"Name","value":"state"}},{"kind":"Field","name":{"kind":"Name","value":"errorDetails"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlSourceId"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlUrl"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlTitle"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentSourceId"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentMediaType"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentTitle"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentFilename"}},{"kind":"Field","name":{"kind":"Name","value":"fileMediaType"}},{"kind":"Field","name":{"kind":"Name","value":"fileFilename"}},{"kind":"Field","name":{"kind":"Name","value":"fileUrl"}},{"kind":"Field","name":{"kind":"Name","value":"providerMetadata"}}]}}]}}]}}]}}]} as unknown as DocumentNode<GetAgentTurnsQuery, GetAgentTurnsQueryVariables>;
export const GetChatMessagesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetChatMessages"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"threadId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"chatMessages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"threadId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"threadId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"threadId"}},{"kind":"Field","name":{"kind":"Name","value":"turnId"}},{"kind":"Field","name":{"kind":"Name","value":"role"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"parts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"messageId"}},{"kind":"Field","name":{"kind":"Name","value":"orderIndex"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"textContent"}},{"kind":"Field","name":{"kind":"Name","value":"reasoningContent"}},{"kind":"Field","name":{"kind":"Name","value":"toolName"}},{"kind":"Field","name":{"kind":"Name","value":"toolCallId"}},{"kind":"Field","name":{"kind":"Name","value":"toolInput"}},{"kind":"Field","name":{"kind":"Name","value":"toolOutput"}},{"kind":"Field","name":{"kind":"Name","value":"state"}},{"kind":"Field","name":{"kind":"Name","value":"errorMessage"}},{"kind":"Field","name":{"kind":"Name","value":"errorDetails"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlSourceId"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlUrl"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlTitle"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentSourceId"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentMediaType"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentTitle"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentFilename"}},{"kind":"Field","name":{"kind":"Name","value":"fileMediaType"}},{"kind":"Field","name":{"kind":"Name","value":"fileFilename"}},{"kind":"Field","name":{"kind":"Name","value":"fileUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fileId"}},{"kind":"Field","name":{"kind":"Name","value":"providerMetadata"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"chatStreamCatchupChunks"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"threadId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"threadId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"chunks"}},{"kind":"Field","name":{"kind":"Name","value":"maxSeq"}}]}}]}}]} as unknown as DocumentNode<GetChatMessagesQuery, GetChatMessagesQueryVariables>;
export const GetChatThreadsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetChatThreads"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"paging"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CursorPaging"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"chatThreads"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"paging"},"value":{"kind":"Variable","name":{"kind":"Name","value":"paging"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"edges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"totalInputTokens"}},{"kind":"Field","name":{"kind":"Name","value":"totalOutputTokens"}},{"kind":"Field","name":{"kind":"Name","value":"contextWindowTokens"}},{"kind":"Field","name":{"kind":"Name","value":"conversationSize"}},{"kind":"Field","name":{"kind":"Name","value":"totalInputCredits"}},{"kind":"Field","name":{"kind":"Name","value":"totalOutputCredits"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"Field","name":{"kind":"Name","value":"cursor"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pageInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"endCursor"}},{"kind":"Field","name":{"kind":"Name","value":"hasNextPage"}}]}}]}}]}}]} as unknown as DocumentNode<GetChatThreadsQuery, GetChatThreadsQueryVariables>;
export const GetToolIndexDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetToolIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getToolIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"category"}},{"kind":"Field","name":{"kind":"Name","value":"objectName"}}]}}]}}]} as unknown as DocumentNode<GetToolIndexQuery, GetToolIndexQueryVariables>;
export const GetToolIndexDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetToolIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getToolIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"category"}},{"kind":"Field","name":{"kind":"Name","value":"objectName"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}}]}}]} as unknown as DocumentNode<GetToolIndexQuery, GetToolIndexQueryVariables>;
export const GetToolInputSchemaDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetToolInputSchema"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"toolName"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getToolInputSchema"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"toolName"},"value":{"kind":"Variable","name":{"kind":"Name","value":"toolName"}}}]}]}}]} as unknown as DocumentNode<GetToolInputSchemaQuery, GetToolInputSchemaQueryVariables>;
export const OnAgentChatEventDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnAgentChatEvent"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"threadId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onAgentChatEvent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"threadId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"threadId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"threadId"}},{"kind":"Field","name":{"kind":"Name","value":"event"}}]}}]}}]} as unknown as DocumentNode<OnAgentChatEventSubscription, OnAgentChatEventSubscriptionVariables>;
export const TrackAnalyticsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"TrackAnalytics"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"type"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AnalyticsType"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"event"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"name"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"properties"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trackAnalytics"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"Variable","name":{"kind":"Name","value":"type"}}},{"kind":"Argument","name":{"kind":"Name","value":"event"},"value":{"kind":"Variable","name":{"kind":"Name","value":"event"}}},{"kind":"Argument","name":{"kind":"Name","value":"name"},"value":{"kind":"Variable","name":{"kind":"Name","value":"name"}}},{"kind":"Argument","name":{"kind":"Name","value":"properties"},"value":{"kind":"Variable","name":{"kind":"Name","value":"properties"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"success"}}]}}]}}]} as unknown as DocumentNode<TrackAnalyticsMutation, TrackAnalyticsMutationVariables>;
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(gekies: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2008,6 +2009,11 @@ msgstr "Is jy seker jy wil hierdie verwante {relationObjectMetadataNameSingular}
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Is jy seker jy wil hierdie vaardigheid verwyder? Hierdie aksie kan nie ongedaan gemaak word nie."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Bou 'n instrumentpaneel wat die volgende wys: (1) totale pyplynwaarde pe
msgid "Build many-to-many relations"
msgstr "Bou veel-tot-veel-verhoudings"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Ingebou"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Maak toe"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Sluit banier"
@@ -3111,7 +3113,6 @@ msgstr "Kodeer jou funksie"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Huidige werksruimtelid nie gevind nie."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Pasgemaakte verskaffer"
msgid "Custom Providers"
msgstr "Pasgemaakte Verskaffers"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Pasgemaakte hulpmiddels wat in jou werkruimte geskep is"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Daaglikse gebruik"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Definieer die naam en instruksies vir hierdie vaardigheid"
msgid "Define user roles and access levels"
msgstr "Definieer gebruikersrolle en toegangsvlakke"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "verwyder"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Verwyder hierdie integrasie"
msgid "Delete this role and assign a new role to its members"
msgstr "Verwyder hierdie rol en ken 'n nuwe rol aan vir sy lede"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Verwyder hierdie webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Beskryf wat jy wil hê die KI moet doen..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Leeg"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Verlaat Instellings"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Kon nie verskaffer byvoeg nie"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Kon nie hulpmiddel skep nie"
@@ -6318,6 +6332,11 @@ msgstr "Kon nie werke uitvee nie. Probeer asseblief later weer."
msgid "Failed to delete skill"
msgstr "Kon nie vaardigheid verwyder nie"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Kon nie prent oplaai nie"
msgid "Failure Rate"
msgstr "Mislukkingskoers"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "Invoer moet in kameelgeval wees en kan nie met 'n nommer begin nie"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Invoerskema"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Meer laai..."
msgid "Loading retention configuration..."
msgstr "Laai retensie-konfigurasie..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Laai skema..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Bestuur jou toepassing"
msgid "Manage your internet accounts."
msgstr "Bestuur jou internetrekeninge."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Nuwe Wagwoord"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Nuwe vaardigheid"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Nuwe taak"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Nuwe hulpmiddel"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Geen uitvoer beskikbaar"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Geen parameters"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Paragraaf"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Versoek het misluk"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Verpligtend"
@@ -12133,16 +12162,6 @@ msgstr "Soek 1 {fieldTypeLabelLowercase}-veld"
msgid "Search 1 field"
msgstr "Soek 1 veld"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Soek 'n ingeboude hulpmiddel..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Soek 'n pasgemaakte hulpmiddel..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Soek 'n stelselobjek..."
msgid "Search a team member..."
msgstr "Soek 'n spanlid..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Sien Velde"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Fases"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Standaard"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Standaard hulpmiddels beskikbaar vir KI-agente"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "Gereedskap-oproepe gemaak"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Hulpmiddel geskep"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "Gereedskapgenerering"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Gereedskap"
@@ -14519,8 +14551,7 @@ msgstr "Twee-faktor magtiging-setup suksesvol voltooi!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "Gebruik slegs die beste modelle"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "Werksvloeie"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "Wikkel op rekordblaaie"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "ja"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(المحدد: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "التطبيق"
@@ -2008,6 +2009,11 @@ msgstr "هل أنت متأكد أنك تريد حذف هذا {relationObjectMeta
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "هل أنت متأكد أنك تريد حذف هذه المهارة؟ لا يمكن التراجع عن هذا الإجراء."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "أنشئ لوحة تحكم تعرض: (1) إجمالي قيمة خط ال
msgid "Build many-to-many relations"
msgstr "إنشاء علاقات متعدد-إلى-متعدد"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "مضمّنة"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "إغلاق"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "إغلاق اللافتة"
@@ -3111,7 +3113,6 @@ msgstr "برمج الوظيفة الخاصة بك"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "لم يتم العثور على عضو مساحة العمل الحال
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "مزود مخصص"
msgid "Custom Providers"
msgstr "مزودون مخصصون"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "الأدوات المخصصة التي تم إنشاؤها في مساحة العمل الخاصة بك"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "الاستخدام اليومي"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "حدد الاسم والإرشادات لهذه المهارة."
msgid "Define user roles and access levels"
msgstr "تحديد أدوار المستخدم ومستويات الوصول"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "حذف"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "حذف هذا التكامل"
msgid "Delete this role and assign a new role to its members"
msgstr "حذف هذا الدور وتعيين دور جديد لأعضائه"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "حذف هذا Webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "صف ما تريد أن يقوم به الذكاء الاصطناعي...
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "فارغ"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "خروج من الإعدادات"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "فشل في إضافة المزود"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "فشل إنشاء الأداة"
@@ -6318,6 +6332,11 @@ msgstr "فشل حذف الوظائف. يُرجى المحاولة مرة أخر
msgid "Failed to delete skill"
msgstr "فشل في حذف المهارة"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "فشل في تحميل الصورة"
msgid "Failure Rate"
msgstr "معدل الفشل"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "يجب أن تكون الإدخالات بصيغة الحروف الصغيرة والكبيرة ولا يمكن أن تبدأ برقم"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "مخطط الإدخال"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "جاري تحميل المزيد..."
msgid "Loading retention configuration..."
msgstr "جارٍ تحميل تكوين الاحتفاظ..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "جارٍ تحميل المخطط..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "إدارة تطبيقك"
msgid "Manage your internet accounts."
msgstr "إدارة حساباتك على الإنترنت."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "كلمة سر جديدة"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "مهارة جديدة"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "مهمة جديدة"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "أداة جديدة"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "لا يوجد مخرج متاح"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "لا معلمات"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "فقرة"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "فشل الطلب"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "مطلوب"
@@ -12133,16 +12162,6 @@ msgstr "ابحث عن حقل {fieldTypeLabelLowercase} واحد"
msgid "Search 1 field"
msgstr "ابحث عن حقل واحد"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "ابحث عن أداة مضمّنة..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "ابحث عن أداة مخصصة..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "ابحث عن كائن نظام..."
msgid "Search a team member..."
msgstr "ابحث عن عضو..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "عرض الحقول"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "مراحل"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "قياسي"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "أدوات قياسية متاحة لوكلاء الذكاء الاصطناعي"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "عمليات استدعاء الأدوات المنفذة"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "تم إنشاء الأداة"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "توليد الأداة"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "أدوات"
@@ -14519,8 +14551,7 @@ msgstr "تم إكمال إعداد المصادقة الثنائية بنجاح!
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "استخدام أفضل النماذج فقط"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15706,6 +15738,7 @@ msgstr "سير العمل"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15801,6 +15834,7 @@ msgid "Wrap on record pages"
msgstr "لف في صفحات السجل"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15879,6 +15913,7 @@ msgid "yes"
msgstr "نعم"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(seleccionada: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2008,6 +2009,11 @@ msgstr "Segur que vols suprimir aquest {relationObjectMetadataNameSingular} rela
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Segur que vols suprimir aquesta habilitat? Aquesta acció no es pot desfer."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Crea un tauler que mostri: (1) el valor total del pipeline per etapa del
msgid "Build many-to-many relations"
msgstr "Crea relacions de molts a molts"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Integrades"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Tanca"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Tanca el bàner"
@@ -3111,7 +3113,6 @@ msgstr "Programar la teva funció"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Membre de l'espai de treball actual no trobat."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Proveïdor personalitzat"
msgid "Custom Providers"
msgstr "Proveïdors personalitzats"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Eines personalitzades creades al vostre espai de treball"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Ús diari"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Defineix el nom i les instruccions d'aquesta habilitat"
msgid "Define user roles and access levels"
msgstr "Definir rols d'usuari i nivells d'accés"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "elimina"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Esborrar aquesta integració"
msgid "Delete this role and assign a new role to its members"
msgstr "Elimina aquest rol i assigna un nou rol als seus membres"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Esborra aquest webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Descriviu què voleu que faci la IA..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Buit"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Sortir de la configuració"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "No s'ha pogut afegir el proveïdor"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "No s'ha pogut crear l'eina"
@@ -6318,6 +6332,11 @@ msgstr "Error al suprimir feines. Torneu-ho a provar més tard."
msgid "Failed to delete skill"
msgstr "No s'ha pogut suprimir l'habilitat"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "No s'ha pogut carregar la imatge"
msgid "Failure Rate"
msgstr "Taxa de fallades"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "L'entrada ha de ser en camel case i no pot començar amb un número"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Esquema d'entrada"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Carregant més..."
msgid "Loading retention configuration..."
msgstr "Carregant configuració de retenció..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Carregant l'esquema..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Gestiona la teva aplicació"
msgid "Manage your internet accounts."
msgstr "Gestiona els teus comptes d'Internet."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Nova contrasenya"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Nova habilitat"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Nova tasca"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Nova eina"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "No hi ha resultat disponible"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Sense paràmetres"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Paràgraf"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "La sol·licitud ha fallat"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Obligatori"
@@ -12133,16 +12162,6 @@ msgstr "Cerca 1 camp {fieldTypeLabelLowercase}"
msgid "Search 1 field"
msgstr "Cerca 1 camp"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Cerca una eina integrada..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Cerca una eina personalitzada..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Cerca un objecte del sistema..."
msgid "Search a team member..."
msgstr "Buscar un membre de l'equip..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Veure camps"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Etapes"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Estàndard"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Eines estàndard disponibles per als agents d'IA"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "Crides a eines efectuades"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Eina creada"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "Generació d'eines"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Eines"
@@ -14519,8 +14551,7 @@ msgstr "Configuració de l'autenticació de dos factors completada amb èxit!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "Utilitzar només els millors models"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "Fluxos de treball"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "Embolcalla a les pàgines de registre"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "sí"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(vybráno: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Aplikace"
@@ -2008,6 +2009,11 @@ msgstr "Opravdu chcete smazat tento související objekt {relationObjectMetadata
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Opravdu chcete smazat tuto dovednost? Tuto akci nelze vrátit zpět."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Vytvořte řídicí panel, který zobrazí: (1) celkovou hodnotu pipelin
msgid "Build many-to-many relations"
msgstr "Vytváření vztahů mnoho-na-mnoho"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Vestavěné"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Zavřít"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Zavřít banner"
@@ -3111,7 +3113,6 @@ msgstr "Naprogramujte svou funkci"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Současný člen pracovního prostoru nebyl nalezen."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Vlastní poskytovatel"
msgid "Custom Providers"
msgstr "Vlastní poskytovatelé"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Vlastní nástroje vytvořené ve vašem pracovním prostoru"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Denní využití"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Definujte název a pokyny pro tuto dovednost"
msgid "Define user roles and access levels"
msgstr "Definovat role uživatelů a úrovně přístupu"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "smazat"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Smazat tuto integraci"
msgid "Delete this role and assign a new role to its members"
msgstr "Smazat tuto roli a přidělit jejím členům novou roli"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Smazat tento webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Popište, co chcete, aby AI dělalo..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Prázdné"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Opustit nastavení"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Nepodařilo se přidat poskytovatele"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Nepodařilo se vytvořit nástroj"
@@ -6318,6 +6332,11 @@ msgstr "Nelze smazat úlohy. Prosím, zkuste to znovu později."
msgid "Failed to delete skill"
msgstr "Nepodařilo se smazat dovednost"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Nepodařilo se nahrát obrázek"
msgid "Failure Rate"
msgstr "Míra selhání"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "Vstup musí být zapsán v camel case a nesmí začínat číslem"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Vstupní schéma"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Načítám více..."
msgid "Loading retention configuration..."
msgstr "Načítám konfiguraci uložení..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Načítání schématu..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Spravujte svou aplikaci"
msgid "Manage your internet accounts."
msgstr "Spravujte své internetové účty."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Nové heslo"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Nová dovednost"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Nový úkol"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Nový nástroj"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Žádný výstup není k dispozici"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Žádné parametry"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Odstavec"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Požadavek selhal"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Povinné"
@@ -12133,16 +12162,6 @@ msgstr "Vyhledat 1 pole typu {fieldTypeLabelLowercase}"
msgid "Search 1 field"
msgstr "Vyhledat 1 pole"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Vyhledat vestavěný nástroj..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Vyhledat vlastní nástroj..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Hledat systémový objekt..."
msgid "Search a team member..."
msgstr "Vyhledávejte člena týmu..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Vidět pole"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Etapy"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Standardní"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Standardní nástroje dostupné pro agenty AI"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "Provedená volání nástrojů"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Nástroj byl vytvořen"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "Generování nástrojů"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Nástroje"
@@ -14519,8 +14551,7 @@ msgstr "Nastavení dvoufaktorového ověřování bylo úspěšně dokončeno!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "Používat pouze nejlepší modely"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "Pracovní postupy"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "Zalomit na stránkách záznamů"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "ano"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(valgt: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2008,6 +2009,11 @@ msgstr "Er du sikker på, at du vil slette denne relaterede {relationObjectMetad
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Er du sikker på, at du vil slette denne færdighed? Denne handling kan ikke fortrydes."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Opret et dashboard, der viser: (1) samlet pipeline-værdi pr. fase for d
msgid "Build many-to-many relations"
msgstr "Opret mange-til-mange-relationer"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Indbygget"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Luk"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Luk banner"
@@ -3111,7 +3113,6 @@ msgstr "Kodedin funktion"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Nuværende arbejdsområde medlem ikke fundet."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Brugerdefineret udbyder"
msgid "Custom Providers"
msgstr "Brugerdefinerede udbydere"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Brugerdefinerede værktøjer oprettet i dit arbejdsområde"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Dagligt forbrug"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Definer navnet og instruktionerne for denne færdighed"
msgid "Define user roles and access levels"
msgstr "Definer brugerroller og adgangsniveauer"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "slet"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Slet denne integration"
msgid "Delete this role and assign a new role to its members"
msgstr "Slet denne rolle og tildel en ny rolle til dens medlemmer"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Slet denne webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Beskriv, hvad du vil have AI'en til at gøre..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Tom"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Forlad indstillinger"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Kunne ikke tilføje udbyder"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Kunne ikke oprette værktøj"
@@ -6318,6 +6332,11 @@ msgstr "Kunne ikke slette jobs. Prøv venligst igen senere."
msgid "Failed to delete skill"
msgstr "Kunne ikke slette færdighed"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Kunne ikke uploade billede"
msgid "Failure Rate"
msgstr "Fejlrate"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "Input skal være i camelCase og må ikke starte med et tal"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Inputskema"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Indlæser mere..."
msgid "Loading retention configuration..."
msgstr "Indlæser tilbageholdelseskonfiguration..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Indlæser skema..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Administrer din app"
msgid "Manage your internet accounts."
msgstr "Administrer dine internetkonti."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Nyt Password"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Ny færdighed"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Ny opgave"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Nyt værktøj"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Ingen output tilgængelig"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Ingen parametre"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Afsnit"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Anmodning mislykkedes"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Påkrævet"
@@ -12133,16 +12162,6 @@ msgstr "Søg i 1 {fieldTypeLabelLowercase}-felt"
msgid "Search 1 field"
msgstr "Søg i 1 felt"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Søg efter et indbygget værktøj..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Søg efter et brugerdefineret værktøj..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Søg efter et systemobjekt..."
msgid "Search a team member..."
msgstr "Søg efter et team medlem..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Se Felter"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Faser"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Standard"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Standardværktøjer tilgængelige for AI-agenter"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14282,10 +14308,15 @@ msgid "Tool calls made"
msgstr "Værktøjskald foretaget"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Værktøj oprettet"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14298,6 +14329,7 @@ msgstr "Værktøjsgenerering"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Værktøjer"
@@ -14521,8 +14553,7 @@ msgstr "Opsætning af to-faktor godkendelse blev gennemført med succes!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14991,6 +15022,7 @@ msgid "Use best models only"
msgstr "Brug kun de bedste modeller"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15710,6 +15742,7 @@ msgstr "Arbejdsgange"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15805,6 +15838,7 @@ msgid "Wrap on record pages"
msgstr "Pak ind på post sider"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15883,6 +15917,7 @@ msgid "yes"
msgstr "ja"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(ausgewählt: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr "Diagramm zusammenfassen"
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2008,6 +2009,11 @@ msgstr "Sind Sie sicher, dass Sie dieses zugehörige {relationObjectMetadataName
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Sind Sie sicher, dass Sie diesen Skill löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Erstellen Sie ein Dashboard, das Folgendes zeigt: (1) den gesamten Pipel
msgid "Build many-to-many relations"
msgstr "Viele-zu-Viele-Beziehungen erstellen"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Integriert"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Schließen"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Banner schließen"
@@ -3111,7 +3113,6 @@ msgstr "Funktion programmieren"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Aktuelles Arbeitsbereichsmitglied nicht gefunden."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Benutzerdefinierter Anbieter"
msgid "Custom Providers"
msgstr "Benutzerdefinierte Anbieter"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Benutzerdefinierte Tools, die in Ihrem Arbeitsbereich erstellt wurden"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Täglicher Verbrauch"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Definieren Sie den Namen und die Anweisungen für diesen Skill"
msgid "Define user roles and access levels"
msgstr "Benutzerrollen und Zugriffsebenen definieren"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "löschen"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Diese Integration löschen"
msgid "Delete this role and assign a new role to its members"
msgstr "Diese Rolle löschen und den Mitgliedern eine neue Rolle zuweisen"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Diesen Webhook löschen"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Beschreiben Sie, was die KI tun soll..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Leer"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Einstellungen verlassen"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Fehler beim Hinzufügen des Anbieters"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Erstellen des Tools fehlgeschlagen"
@@ -6318,6 +6332,11 @@ msgstr "Aufgaben konnten nicht gelöscht werden. Bitte versuchen Sie es später
msgid "Failed to delete skill"
msgstr "Skill konnte nicht gelöscht werden"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Bild konnte nicht hochgeladen werden"
msgid "Failure Rate"
msgstr "Fehlerquote"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "Die Eingabe muss im CamelCase-Format sein und darf nicht mit einer Zahl beginnen"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Eingabeschema"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Mehr laden..."
msgid "Loading retention configuration..."
msgstr "Ladevorgang für Aufbewahrungskonfiguration..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Schema wird geladen..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Ihre App verwalten"
msgid "Manage your internet accounts."
msgstr "Verwalten Sie Ihre Internetkonten."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Neues Passwort"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Neuer Skill"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Neue Aufgabe"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Neues Tool"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Keine Ausgabe verfügbar"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Keine Parameter"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Absatz"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Anfrage fehlgeschlagen"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Erforderlich"
@@ -12133,16 +12162,6 @@ msgstr "1 {fieldTypeLabelLowercase}-Feld suchen"
msgid "Search 1 field"
msgstr "1 Feld suchen"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Nach einem integrierten Tool suchen..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Nach einem benutzerdefinierten Tool suchen..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Systemobjekt suchen..."
msgid "Search a team member..."
msgstr "Ein Teammitglied suchen..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Felder sehen"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Phasen"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Standard"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Standardtools, die KI-Agenten zur Verfügung stehen"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "Getätigte Tool-Aufrufe"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Tool erstellt"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "Tool-Generierung"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Werkzeuge"
@@ -14519,8 +14551,7 @@ msgstr "Einrichtung der Zwei-Faktor-Authentifizierung erfolgreich abgeschlossen!
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "Nur die besten Modelle verwenden"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "Workflows"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "Auf Rekordseiten umwickeln"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "ja"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(επιλεγμένο: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Εφαρμογή"
@@ -2008,6 +2009,11 @@ msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτή τη δεξιότητα; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Δημιουργήστε έναν πίνακα ελέγχου που ν
msgid "Build many-to-many relations"
msgstr "Δημιουργήστε σχέσεις πολλά-προς-πολλά"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Ενσωματωμένα"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Κλείσιμο"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Κλείσιμο banner"
@@ -3111,7 +3113,6 @@ msgstr "Κωδικοποιήστε τη λειτουργία σας"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Το τρέχον μέλος του χώρου εργασίας δεν
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Προσαρμοσμένος πάροχος"
msgid "Custom Providers"
msgstr "Προσαρμοσμένοι πάροχοι"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Προσαρμοσμένα εργαλεία που δημιουργήθηκαν στον χώρο εργασίας σας"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Ημερήσια χρήση"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Ορίστε το όνομα και τις οδηγίες για αυτ
msgid "Define user roles and access levels"
msgstr "Ορίστε ρόλους χρηστών και επίπεδα πρόσβασης"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "διαγραφή"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Διαγραφή αυτής της ενσωμάτωσης"
msgid "Delete this role and assign a new role to its members"
msgstr "Διαγράψτε αυτόν το ρόλο και αναθέστε έναν νέο ρόλο στα μέλη του"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Διαγραφή αυτού του webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Περιγράψτε τι θέλετε να κάνει το AI..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Κενό"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Έξοδος από Ρυθμίσεις"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Αποτυχία προσθήκης παρόχου"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Αποτυχία δημιουργίας εργαλείου"
@@ -6318,6 +6332,11 @@ msgstr "Αποτυχία διαγραφής εργασιών. Παρακαλώ
msgid "Failed to delete skill"
msgstr "Αποτυχία διαγραφής δεξιότητας"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Αποτυχία μεταφόρτωσης εικόνας"
msgid "Failure Rate"
msgstr "Ποσοστό αποτυχίας"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "Η εισαγωγή πρέπει να είναι σε μορφή camel case και δεν μπορεί να ξεκινά με έναν αριθμό"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Σχήμα εισόδου"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Φόρτωση περισσότερα..."
msgid "Loading retention configuration..."
msgstr "Φόρτωση ρύθμισης συγκράτησης..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Φόρτωση σχήματος..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Διαχειριστείτε την εφαρμογή σας"
msgid "Manage your internet accounts."
msgstr "Διαχειριστείτε τους λογαριασμούς σας στο διαδίκτυο."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Νέος Κωδικός"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Νέα δεξιότητα"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Νέα εργασία"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Νέο εργαλείο"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Δεν υπάρχει διαθέσιμη έξοδος"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Χωρίς παραμέτρους"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Παράγραφος"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Απέτυχε το αίτημα"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Απαιτείται"
@@ -12133,16 +12162,6 @@ msgstr "Αναζήτηση 1 πεδίου {fieldTypeLabelLowercase}"
msgid "Search 1 field"
msgstr "Αναζήτηση 1 πεδίου"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Αναζήτηση ενσωματωμένου εργαλείου..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Αναζήτηση προσαρμοσμένου εργαλείου..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Αναζήτηση αντικειμένου συστήματος..."
msgid "Search a team member..."
msgstr "Αναζήτηση ενός μέλους..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Δείτε Πεδία"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13231,15 +13260,12 @@ msgid "Stages"
msgstr "Στάδια"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Τυπικό"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Τυπικά εργαλεία διαθέσιμα στους πράκτορες AI"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14284,10 +14310,15 @@ msgid "Tool calls made"
msgstr "Κλήσεις εργαλείων που έγιναν"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Το εργαλείο δημιουργήθηκε"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14300,6 +14331,7 @@ msgstr "Δημιουργία εργαλείου"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Εργαλεία"
@@ -14523,8 +14555,7 @@ msgstr "Η εγκατάσταση δύο παραγοντικής ταυτοπο
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14993,6 +15024,7 @@ msgid "Use best models only"
msgstr "Χρήση μόνο των καλύτερων μοντέλων"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15712,6 +15744,7 @@ msgstr "Ροές Εργασίας"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15807,6 +15840,7 @@ msgid "Wrap on record pages"
msgstr "Ενσωμάτωση στις σελίδες εγγραφής"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15885,6 +15919,7 @@ msgid "yes"
msgstr "ναι"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -92,7 +92,6 @@ msgstr "(selected: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1311,6 +1310,7 @@ msgstr "Aggregate Chart"
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1878,6 +1878,7 @@ msgstr "Apostrophe and dot"
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2003,6 +2004,11 @@ msgstr "Are you sure you want to delete this related {relationObjectMetadataName
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Are you sure you want to delete this skill? This action cannot be undone."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr "Are you sure you want to delete this tool? This action cannot be undone."
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2533,11 +2539,6 @@ msgstr "Build a dashboard that shows: (1) total pipeline value by stage for the
msgid "Build many-to-many relations"
msgstr "Build many-to-many relations"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Built-in"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3074,6 +3075,7 @@ msgstr "Close"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Close banner"
@@ -3106,7 +3108,6 @@ msgstr "Code your function"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4053,6 +4054,7 @@ msgstr "Current workspace member not found."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4093,11 +4095,6 @@ msgstr "Custom provider"
msgid "Custom Providers"
msgstr "Custom Providers"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Custom tools created in your workspace"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4182,6 +4179,7 @@ msgstr "Daily Usage"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4508,6 +4506,11 @@ msgstr "Define the name and instructions for this skill"
msgid "Define user roles and access levels"
msgstr "Define user roles and access levels"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr "Define what this tool does"
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4537,6 +4540,8 @@ msgstr "delete"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4697,11 +4702,21 @@ msgstr "Delete this integration"
msgid "Delete this role and assign a new role to its members"
msgstr "Delete this role and assign a new role to its members"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr "Delete this tool"
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Delete this webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr "Delete Tool"
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4776,6 +4791,7 @@ msgstr "Describe what you want the AI to do..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5423,7 +5439,6 @@ msgstr "Empty"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6144,7 +6159,6 @@ msgstr "Exit Settings"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6299,7 +6313,7 @@ msgid "Failed to add provider"
msgstr "Failed to add provider"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Failed to create tool"
@@ -6313,6 +6327,11 @@ msgstr "Failed to delete jobs. Please try again later."
msgid "Failed to delete skill"
msgstr "Failed to delete skill"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr "Failed to delete tool"
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6501,6 +6520,11 @@ msgstr "Failed to upload picture"
msgid "Failure Rate"
msgstr "Failure Rate"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr "Fallback"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7646,10 +7670,10 @@ msgstr "Input (Prompt)"
msgid "Input must be in camel case and cannot start with a number"
msgstr "Input must be in camel case and cannot start with a number"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Input Schema"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr "Input parameters accepted by this tool"
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8536,11 +8560,6 @@ msgstr "Loading more..."
msgid "Loading retention configuration..."
msgstr "Loading retention configuration..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Loading schema..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8739,6 +8758,11 @@ msgstr "Manage your app"
msgid "Manage your internet accounts."
msgstr "Manage your internet accounts."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr "Managed"
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9202,7 +9226,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9430,7 +9454,7 @@ msgstr "New Password"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "New Skill"
@@ -9450,7 +9474,7 @@ msgid "New task"
msgstr "New task"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "New Tool"
@@ -9859,8 +9883,7 @@ msgid "No output available"
msgstr "No output available"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "No parameters"
@@ -10671,6 +10694,11 @@ msgstr "paragraph"
msgid "Paragraph"
msgstr "Paragraph"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr "Parameters"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11722,6 +11750,7 @@ msgstr "Request Failed"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Required"
@@ -12128,16 +12157,6 @@ msgstr "Search 1 {fieldTypeLabelLowercase} field"
msgid "Search 1 field"
msgstr "Search 1 field"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Search a built-in tool..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Search a custom tool..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12177,6 +12196,11 @@ msgstr "Search a system object..."
msgid "Search a team member..."
msgstr "Search a team member..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr "Search a tool..."
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12443,6 +12467,11 @@ msgstr "See data model settings"
msgid "See Fields"
msgstr "See Fields"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr "See function"
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13224,15 +13253,12 @@ msgid "Stages"
msgstr "Stages"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Standard"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Standard tools available to AI agents"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14277,10 +14303,15 @@ msgid "Tool calls made"
msgstr "Tool calls made"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Tool created"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr "Tool deleted"
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14293,6 +14324,7 @@ msgstr "Tool generation"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Tools"
@@ -14516,8 +14548,7 @@ msgstr "Two-factor authentication setup completed successfully!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14986,6 +15017,7 @@ msgid "Use best models only"
msgstr "Use best models only"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr "Use filter to see existing tools or create your own"
@@ -15705,6 +15737,7 @@ msgstr "Workflows"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15800,6 +15833,7 @@ msgid "Wrap on record pages"
msgstr "Wrap on record pages"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15878,6 +15912,7 @@ msgid "yes"
msgstr "yes"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(seleccionado: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Aplicación"
@@ -2008,6 +2009,11 @@ msgstr "¿Estás seguro de que quieres eliminar este {relationObjectMetadataName
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "¿Está seguro de que desea eliminar esta habilidad? Esta acción no se puede deshacer."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Crea un panel de control que muestre: (1) el valor total del pipeline po
msgid "Build many-to-many relations"
msgstr "Crear relaciones de muchos a muchos"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Integradas"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Cerrar"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Cerrar banner"
@@ -3111,7 +3113,6 @@ msgstr "Codificar su función"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Miembro actual del espacio de trabajo no encontrado."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Proveedor personalizado"
msgid "Custom Providers"
msgstr "Proveedores personalizados"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Herramientas personalizadas creadas en tu espacio de trabajo"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Uso diario"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Defina el nombre y las instrucciones de esta habilidad"
msgid "Define user roles and access levels"
msgstr "Definir roles de usuario y niveles de acceso"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "eliminar"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Eliminar esta integración"
msgid "Delete this role and assign a new role to its members"
msgstr "Eliminar este rol y asignar un nuevo rol a sus miembros"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Eliminar este webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Describa lo que quiere que la IA haga..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Vacío"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Salir de Configuración"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Error al añadir el proveedor"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "No se pudo crear la herramienta"
@@ -6318,6 +6332,11 @@ msgstr "Error al eliminar trabajos. Por favor, inténtelo de nuevo más tarde."
msgid "Failed to delete skill"
msgstr "No se pudo eliminar la habilidad"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Error al subir la imagen"
msgid "Failure Rate"
msgstr "Tasa de fallos"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "La entrada debe estar en camel case y no puede comenzar con un número"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Esquema de entrada"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Cargando más..."
msgid "Loading retention configuration..."
msgstr "Cargando configuración de retención..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Cargando esquema..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Gestiona tu aplicación"
msgid "Manage your internet accounts."
msgstr "Gestione sus cuentas de internet."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Nueva contraseña"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Nueva habilidad"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Nueva tarea"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Nueva herramienta"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "No hay salida disponible"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Sin parámetros"
@@ -10676,6 +10699,11 @@ msgstr "párrafo"
msgid "Paragraph"
msgstr "Párrafo"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Solicitud fallida"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Obligatorio"
@@ -12133,16 +12162,6 @@ msgstr "Buscar 1 campo de {fieldTypeLabelLowercase}"
msgid "Search 1 field"
msgstr "Buscar 1 campo"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Buscar una herramienta integrada..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Buscar una herramienta personalizada..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Buscar un objeto del sistema..."
msgid "Search a team member..."
msgstr "Buscar un miembro del equipo..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Ver Campos"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Fases"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Estándar"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Herramientas estándar disponibles para los agentes de IA"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14282,10 +14308,15 @@ msgid "Tool calls made"
msgstr "Llamadas a herramientas realizadas"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Herramienta creada"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14298,6 +14329,7 @@ msgstr "Generación de herramientas"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Herramientas"
@@ -14521,8 +14553,7 @@ msgstr "¡La configuración de la autenticación de dos factores se completó co
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14991,6 +15022,7 @@ msgid "Use best models only"
msgstr "Usar solo los mejores modelos"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15710,6 +15742,7 @@ msgstr "Workflows"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15805,6 +15838,7 @@ msgid "Wrap on record pages"
msgstr "Envolver en páginas de registro"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15883,6 +15917,7 @@ msgid "yes"
msgstr "sí"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(valittu: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Sovellus"
@@ -2008,6 +2009,11 @@ msgstr "Haluatko varmasti poistaa tämän siihen liittyvän kohteen {relationObj
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Haluatko varmasti poistaa tämän taidon? Tätä toimintoa ei voi perua."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Rakenna koontinäyttö, joka näyttää: (1) myyntiputken kokonaisarvon
msgid "Build many-to-many relations"
msgstr "Luo moni-moneen-suhteita"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Sisäänrakennettu"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Sulje"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Sulje banneri"
@@ -3111,7 +3113,6 @@ msgstr "Koodaa funktiosi"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Nykyistä työtilan jäsentä ei löytynyt."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Mukautettu tarjoaja"
msgid "Custom Providers"
msgstr "Mukautetut tarjoajat"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Työtilaasi luodut mukautetut työkalut"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Päivittäinen käyttö"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Määritä tämän taidon nimi ja ohjeet"
msgid "Define user roles and access levels"
msgstr "Määritä käyttäjäroolit ja käyttöoikeudet"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "poista"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Poista tämä integraatio"
msgid "Delete this role and assign a new role to its members"
msgstr "Poista tämä rooli ja anna sen jäsenille uusi rooli"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Poista tämä webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Kuvaile mitä haluat, että tekoäly tekee..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Tyhjä"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Poistu asetuksista"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Tarjoajan lisääminen epäonnistui"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Työkalun luominen epäonnistui"
@@ -6318,6 +6332,11 @@ msgstr "Epäonnistui töiden poistamisessa. Yritä myöhemmin uudelleen."
msgid "Failed to delete skill"
msgstr "Taidon poistaminen epäonnistui"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Kuvan lähetys epäonnistui"
msgid "Failure Rate"
msgstr "Epäonnistumisprosentti"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "Syötteen on oltava camelCase-muotoa eikä se saa alkaa numerolla"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Syötteen skeema"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Ladataan lisää..."
msgid "Loading retention configuration..."
msgstr "Ladataan säilytyskokoonpanoa..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Ladataan skeemaa..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Hallitse sovellustasi"
msgid "Manage your internet accounts."
msgstr "Hallitse internet-tilejäsi."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Uusi salasana"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Uusi taito"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Uusi tehtävä"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Uusi työkalu"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Ei tulosta saatavilla"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Ei parametreja"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Kappale"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Pyyntö epäonnistui"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Pakollinen"
@@ -12133,16 +12162,6 @@ msgstr "Etsi 1 {fieldTypeLabelLowercase}-kenttä"
msgid "Search 1 field"
msgstr "Etsi 1 kenttä"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Etsi sisäänrakennettua työkalua..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Etsi mukautettua työkalua..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr ""
msgid "Search a team member..."
msgstr "Etsi tiimin jäsentä..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Nähdä kentät"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Vaiheet"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Standardi"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "AI-agenttien käytettävissä olevat vakiotyökalut"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "Työkalukutsuja tehty"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Työkalu luotu"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "Työkalun generointi"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Työkalut"
@@ -14519,8 +14551,7 @@ msgstr "Kaksivaiheisen todennuksen asennus on valmis!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "Käytä vain parhaita malleja"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "Työnkulut"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "Kääri tietuesivuilla"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "kyllä"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(sélectionné : {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Application"
@@ -2008,6 +2009,11 @@ msgstr "Voulez-vous vraiment supprimer ce {relationObjectMetadataNameSingular} a
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Voulez-vous vraiment supprimer cette compétence ? Cette action ne peut pas être annulée."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Créer un tableau de bord qui affiche : (1) la valeur totale du pipeline
msgid "Build many-to-many relations"
msgstr "Créer des relations plusieurs-à-plusieurs"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Intégrés"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Fermer"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Fermer la bannière"
@@ -3111,7 +3113,6 @@ msgstr "Coder votre fonction"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Membre actuel de l'espace de travail introuvable."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Fournisseur personnalisé"
msgid "Custom Providers"
msgstr "Fournisseurs personnalisés"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Outils personnalisés créés dans votre espace de travail"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Utilisation quotidienne"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Définir le nom et les instructions de cette compétence"
msgid "Define user roles and access levels"
msgstr "Définir les rôles utilisateurs et les niveaux d'accès"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "supprimer"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Supprimer cette intégration"
msgid "Delete this role and assign a new role to its members"
msgstr "Supprimer ce rôle et en attribuer un nouveau à ses membres"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Supprimer ce webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Décrivez ce que vous voulez que l'IA fasse..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Vide"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Quitter les paramètres"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Échec de l'ajout du fournisseur"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Échec de la création de l'outil"
@@ -6318,6 +6332,11 @@ msgstr "Échec de la suppression des tâches. Veuillez réessayer plus tard."
msgid "Failed to delete skill"
msgstr "Échec de la suppression de la compétence"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Échec du téléversement de l'image"
msgid "Failure Rate"
msgstr "Taux d'échec"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "L'entrée doit être en camel case et ne peut pas commencer par un chiffre"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Schéma d'entrée"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Chargement supplémentaire..."
msgid "Loading retention configuration..."
msgstr "Chargement de la configuration de rétention..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Chargement du schéma..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Gérez votre application"
msgid "Manage your internet accounts."
msgstr "Gérez vos comptes internet."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Nouveau mot de passe"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Nouvelle compétence"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Nouvelle tâche"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Nouvel outil"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Aucune sortie disponible"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Aucun paramètre"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Paragraphe"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Échec de la requête"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr ""
@@ -12133,16 +12162,6 @@ msgstr "Rechercher 1 champ {fieldTypeLabelLowercase}"
msgid "Search 1 field"
msgstr "Rechercher 1 champ"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Rechercher un outil intégré..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Rechercher un outil personnalisé..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Rechercher un objet système..."
msgid "Search a team member..."
msgstr "Rechercher un membre de l'équipe..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Voir les champs"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Étapes"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Standard"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Outils standard disponibles pour les agents IA"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14282,10 +14308,15 @@ msgid "Tool calls made"
msgstr "Appels d'outils effectués"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Outil créé"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14298,6 +14329,7 @@ msgstr "Génération d'outils"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Outils"
@@ -14521,8 +14553,7 @@ msgstr "Configuration de l'authentification à deux facteurs terminée avec succ
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14991,6 +15022,7 @@ msgid "Use best models only"
msgstr "Utiliser uniquement les meilleurs modèles"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15710,6 +15742,7 @@ msgstr "Workflows"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15805,6 +15838,7 @@ msgid "Wrap on record pages"
msgstr "Envelopper sur les pages d'enregistrement"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15883,6 +15917,7 @@ msgid "yes"
msgstr "oui"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(נבחר: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "אפליקציה"
@@ -2008,6 +2009,11 @@ msgstr "האם אתה בטוח שברצונך למחוק את ה{relationObjectM
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "האם אתה בטוח שברצונך למחוק את המיומנות הזו? פעולה זו אינה ניתנת לביטול."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "בנה לוח מחוונים שמציג: (1) ערך כולל של הפי
msgid "Build many-to-many relations"
msgstr "בנו קשרי רבים-לרבים"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "מובנה"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "סגור"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "סגור באנר"
@@ -3111,7 +3113,6 @@ msgstr "קודד את הפונקציה שלך"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "חבר המרחב הנוכחי לא נמצא."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "ספק מותאם אישית"
msgid "Custom Providers"
msgstr "ספקים מותאמים אישית"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "כלים מותאמים אישית שנוצרו במרחב העבודה שלך"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "שימוש יומי"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "הגדר את השם וההוראות עבור המיומנות הזו"
msgid "Define user roles and access levels"
msgstr "הגדרת תפקידי משתמש ורמות גישה"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "מחק"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "מחק אינטגרציה זו"
msgid "Delete this role and assign a new role to its members"
msgstr "מחק תפקיד זה והקצה תפקיד חדש לחברים שלו"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "מחק את ה-Webhook הזה"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "תאר מה אתה רוצה שהבינה המלאכותית תעשה..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "ריק"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "יציאה מהגדרות"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "הוספת הספק נכשלה"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "יצירת הכלי נכשלה"
@@ -6318,6 +6332,11 @@ msgstr "נכשל במחיקה של עבודות. נא לנסות שוב מאוח
msgid "Failed to delete skill"
msgstr "מחיקת המיומנות נכשלה"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "העלאת התמונה נכשלה"
msgid "Failure Rate"
msgstr "שיעור כשל"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "הקלט חייב להיות בגמל-קייס ולא יכול להתחיל במספר"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "סכימת קלט"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "טוען עוד..."
msgid "Loading retention configuration..."
msgstr "טוען תצורת שמירות..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "טוען סכמה..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "נהל את היישום שלך"
msgid "Manage your internet accounts."
msgstr "נהל את חשבונות האינטרנט שלך."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "סיסמה חדשה"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "מיומנות חדשה"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "משימה חדשה"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "כלי חדש"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "אין פלט זמין"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "ללא פרמטרים"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "פסקה"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "הבקשה נכשלה"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "נדרש"
@@ -12133,16 +12162,6 @@ msgstr "חפש שדה {fieldTypeLabelLowercase} אחד"
msgid "Search 1 field"
msgstr "חפש שדה אחד"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "חפש כלי מובנה..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "חפש כלי מותאם אישית..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "חפש אובייקט מערכת..."
msgid "Search a team member..."
msgstr "חיפוש חבר צוות..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "ראה שדות"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "שלבים"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "סטנדרטי"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "כלים סטנדרטיים הזמינים לסוכני AI"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "קריאות לכלים שבוצעו"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "הכלי נוצר"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "יצירת כלי"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "כלים"
@@ -14519,8 +14551,7 @@ msgstr "הגדרת האימות הדו-שלבי הושלמה בהצלחה!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "השתמש רק במודלים הטובים ביותר"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "זרימות עבודה"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "עטוף בדפי רישום"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "כן"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(kiválasztva: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Alkalmazás"
@@ -2008,6 +2009,11 @@ msgstr "Biztosan törli ezt a kapcsolódó {relationObjectMetadataNameSingular}
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Biztosan törölni szeretné ezt a készséget? Ez a művelet nem vonható vissza."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Készítsen egy vezérlőpultot, amely megjeleníti: (1) az elmúlt 3 h
msgid "Build many-to-many relations"
msgstr "Hozz létre több-a-többhöz kapcsolatokat"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Beépített"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Bezár"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Banner bezárása"
@@ -3111,7 +3113,6 @@ msgstr "Kódold a funkciódat"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Nem található az aktuális munkaterület tagja."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Egyéni szolgáltató"
msgid "Custom Providers"
msgstr "Egyéni szolgáltatók"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "A munkaterületén létrehozott egyéni eszközök"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Napi használat"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Határozza meg ennek a készségnek a nevét és utasításait"
msgid "Define user roles and access levels"
msgstr "Felhasználói szerepkörök és hozzáférési szintek meghatározása"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "törlés"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Az integráció törlése"
msgid "Delete this role and assign a new role to its members"
msgstr "Ennek a szerepnek a törlése és új szerep hozzárendelése a tagjaihoz"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Ennek a webhooknak a törlése"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Írja le, mit szeretne, hogy az AI végrehajtson..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Üres"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Kilépés a beállításokból"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Nem sikerült hozzáadni a szolgáltatót"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Nem sikerült létrehozni az eszközt"
@@ -6318,6 +6332,11 @@ msgstr "Nem sikerült törölni az állásokat. Kérjük, próbálja meg újra k
msgid "Failed to delete skill"
msgstr "Nem sikerült törölni a készséget"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Nem sikerült feltölteni a képet"
msgid "Failure Rate"
msgstr "Hibaarány"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "A bevitelnek camelCase formátumúnak kell lennie és nem kezdődhet számmal"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Bemeneti séma"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Töltés, kérem várjon..."
msgid "Loading retention configuration..."
msgstr "Megtartási konfiguráció betöltése..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Séma betöltése..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Alkalmazás kezelése"
msgid "Manage your internet accounts."
msgstr "Kezeld az internetes fiókjaid."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Új Jelszó"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Új készség"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Új feladat"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Új eszköz"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Nincs elérhető kimenet"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Nincsenek paraméterek"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Bekezdés"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Kérés meghiúsult"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Kötelező"
@@ -12133,16 +12162,6 @@ msgstr "1 {fieldTypeLabelLowercase} mező keresése"
msgid "Search 1 field"
msgstr "1 mező keresése"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Beépített eszköz keresése..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Egyéni eszköz keresése..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Rendszerobjektum keresése..."
msgid "Search a team member..."
msgstr "Csapattag keresése..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Mezők megtekintése"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Szakaszok"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Szabvány"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "MI ügynökök számára elérhető szabványos eszközök"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "Végrehajtott eszközhívások"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Eszköz létrehozva"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "Eszköz generálása"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Eszközök"
@@ -14519,8 +14551,7 @@ msgstr "Kétfaktoros hitelesítési beállítás sikeresen befejezve!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "Csak a legjobb modellek használata"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "Munkafolyamatok"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "Becsomagolás a rekordoldalakon"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "igen"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(selezionato: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2008,6 +2009,11 @@ msgstr "Sei sicuro di voler eliminare questo {relationObjectMetadataNameSingular
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Sei sicuro di voler eliminare questa abilità? Questa azione non può essere annullata."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Crea un cruscotto che mostri: (1) il valore totale della pipeline per fa
msgid "Build many-to-many relations"
msgstr "Crea relazioni molti-a-molti"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Integrato"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Chiudi"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Chiudi banner"
@@ -3111,7 +3113,6 @@ msgstr "Codifica la tua funzione"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Membro corrente dello spazio di lavoro non trovato."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Provider personalizzato"
msgid "Custom Providers"
msgstr "Provider personalizzati"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Strumenti personalizzati creati nel tuo spazio di lavoro"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Utilizzo giornaliero"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Definisci il nome e le istruzioni per questa abilità"
msgid "Define user roles and access levels"
msgstr "Definire ruoli utente e livelli di accesso"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "elimina"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Elimina questa integrazione"
msgid "Delete this role and assign a new role to its members"
msgstr "Elimina questo ruolo e assegnare un nuovo ruolo ai suoi membri"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Elimina questo webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Descrivi cosa vuoi che l'AI faccia..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Vuoto"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Esci dalle impostazioni"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Impossibile aggiungere il provider"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Impossibile creare lo strumento"
@@ -6318,6 +6332,11 @@ msgstr "Impossibile eliminare i lavori. Per favore riprova più tardi."
msgid "Failed to delete skill"
msgstr "Impossibile eliminare l'abilità"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Caricamento dell'immagine non riuscito"
msgid "Failure Rate"
msgstr "Tasso di errore"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "L'input deve essere in camel case e non può iniziare con un numero"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Schema di input"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Caricamento altro..."
msgid "Loading retention configuration..."
msgstr "Caricamento configurazione di retention..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Caricamento dello schema..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Gestisci la tua app"
msgid "Manage your internet accounts."
msgstr "Gestisci i tuoi account Internet."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Nuova password"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Nuova abilità"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr ""
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Nuovo strumento"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Nessun output disponibile"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Nessun parametro"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Paragrafo"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Richiesta non riuscita"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Obbligatorio"
@@ -12133,16 +12162,6 @@ msgstr "Cerca 1 campo {fieldTypeLabelLowercase}"
msgid "Search 1 field"
msgstr "Cerca 1 campo"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Cerca uno strumento integrato..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Cerca uno strumento personalizzato..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Cerca un oggetto di sistema..."
msgid "Search a team member..."
msgstr "Cerca un membro del team..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Vedi Campi"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Fasi"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Standard"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Strumenti standard disponibili per gli agenti IA"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14282,10 +14308,15 @@ msgid "Tool calls made"
msgstr "Chiamate agli strumenti effettuate"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Strumento creato"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14298,6 +14329,7 @@ msgstr "Generazione dello strumento"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Strumenti"
@@ -14521,8 +14553,7 @@ msgstr "Configurazione dell'autenticazione a due fattori completata con successo
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14991,6 +15022,7 @@ msgid "Use best models only"
msgstr "Usa solo i modelli migliori"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15710,6 +15742,7 @@ msgstr "Workflows"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15805,6 +15838,7 @@ msgid "Wrap on record pages"
msgstr "Avvolgi nelle pagine del record"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15883,6 +15917,7 @@ msgid "yes"
msgstr "sì"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(選択済み: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "アプリ"
@@ -2008,6 +2009,11 @@ msgstr "この関連する{relationObjectMetadataNameSingular}を削除しても
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "このスキルを削除してもよろしいですか?この操作は元に戻せません。"
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "次を表示するダッシュボードを作成してください:(
msgid "Build many-to-many relations"
msgstr "多対多リレーションを作成する"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "組み込み"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "閉じる"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "バナーを閉じる"
@@ -3111,7 +3113,6 @@ msgstr "関数をコーディング"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "現在のワークスペースメンバーが見つかりませんでし
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "カスタムプロバイダー"
msgid "Custom Providers"
msgstr "カスタムプロバイダー"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "ワークスペースで作成されたカスタムツール"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "日別の利用状況"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "このスキルの名前と指示を定義します"
msgid "Define user roles and access levels"
msgstr "ユーザーの役割とアクセスレベルを定義する"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "削除"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "この統合を削除"
msgid "Delete this role and assign a new role to its members"
msgstr "この役割を削除し、そのメンバーに新しい役割を割り当てる"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "このWebhookを削除"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "AIにさせたいことを説明してください..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "空"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "設定を終了"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "プロバイダーの追加に失敗しました"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "ツールの作成に失敗しました"
@@ -6318,6 +6332,11 @@ msgstr "ジョブの削除に失敗しました。後でもう一度お試しく
msgid "Failed to delete skill"
msgstr "スキルの削除に失敗しました"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "画像のアップロードに失敗しました"
msgid "Failure Rate"
msgstr "失敗率"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "入力はキャメルケースで、数字で始めることはできません。"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "入力スキーマ"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "さらに読み込み中…"
msgid "Loading retention configuration..."
msgstr "保持設定を読み込み中…"
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "スキーマを読み込み中..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "アプリを管理"
msgid "Manage your internet accounts."
msgstr "インターネットアカウントを管理"
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "新しいパスワード"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "新規スキル"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "新しいタスク"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "新しいツール"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "利用可能な出力がありません"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "パラメーターなし"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "段落"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "リクエスト失敗"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "必須"
@@ -12133,16 +12162,6 @@ msgstr "1 つの {fieldTypeLabelLowercase} フィールドを検索"
msgid "Search 1 field"
msgstr "1 つのフィールドを検索"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "組み込みツールを検索..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "カスタムツールを検索..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "システムオブジェクトを検索..."
msgid "Search a team member..."
msgstr "メンバーを検索…"
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "フィールドを見る"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "ステージ"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "標準"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "AIエージェントが利用できる標準ツール"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "ツール呼び出しの回数"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "ツールが作成されました"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "ツール生成"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "ツール"
@@ -14519,8 +14551,7 @@ msgstr "二要素認証のセットアップが正常に完了しました!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "最良のモデルのみを使用する"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "ワークフロー"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "レコードページに包む"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "はい"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(선택됨: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "앱"
@@ -2008,6 +2009,11 @@ msgstr "이 관련 {relationObjectMetadataNameSingular}을(를) 삭제하시겠
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "이 스킬을 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "다음을 보여주는 대시보드를 만드세요: (1) 지난 3개월
msgid "Build many-to-many relations"
msgstr "다대다 관계 만들기"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "기본 제공"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "닫기"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "배너 닫기"
@@ -3111,7 +3113,6 @@ msgstr "함수 코딩하기"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "현재 워크스페이스 멤버를 찾을 수 없습니다."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "사용자 지정 공급자"
msgid "Custom Providers"
msgstr "사용자 지정 공급자"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "워크스페이스에서 생성한 사용자 지정 도구"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "일별 사용량"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "이 스킬의 이름과 지침을 정의하세요"
msgid "Define user roles and access levels"
msgstr "사용자 역할 및 접근 수준 정의"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "삭제"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "이 통합 삭제"
msgid "Delete this role and assign a new role to its members"
msgstr "이 역할을 삭제하고 그 구성원들에게 새 역할을 할당하십시오."
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "이 Webhook을 삭제하십시오"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "AI에 원하는 작업을 설명하세요..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "비어 있음"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "설정 종료"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "공급자를 추가하지 못했습니다"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "도구 생성 실패"
@@ -6318,6 +6332,11 @@ msgstr "작업 삭제에 실패했습니다. 나중에 다시 시도하세요."
msgid "Failed to delete skill"
msgstr "스킬 삭제에 실패했습니다"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "사진 업로드 실패"
msgid "Failure Rate"
msgstr "실패율"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "입력은 카멜 케이스여야 하며 숫자로 시작할 수 없습니다"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "입력 스키마"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "더 로딩 중..."
msgid "Loading retention configuration..."
msgstr "보존 설정 로드 중..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "스키마 로드 중..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "앱 관리"
msgid "Manage your internet accounts."
msgstr "인터넷 계정을 관리하세요."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "새 비밀번호"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "새 스킬"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "새 작업"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "새 도구"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "사용 가능한 출력이 없습니다"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "매개변수 없음"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "문단"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "요청 실패"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "필수"
@@ -12133,16 +12162,6 @@ msgstr "{fieldTypeLabelLowercase} 필드 1개 검색"
msgid "Search 1 field"
msgstr "필드 1개 검색"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "기본 제공 도구 검색..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "사용자 지정 도구 검색..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "시스템 개체 검색..."
msgid "Search a team member..."
msgstr "팀원 검색..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "필드 보기"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "단계"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "표준"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "AI 에이전트가 사용할 수 있는 표준 도구"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "실행된 도구 호출"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "도구 생성됨"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "도구 생성"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "도구"
@@ -14519,8 +14551,7 @@ msgstr "이중 인증 설정이 성공적으로 완료되었습니다!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "최고의 모델만 사용"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "Workflows"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "레코드 페이지에 래핑"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "예"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(geselecteerd: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2008,6 +2009,11 @@ msgstr "Weet je zeker dat je deze gerelateerde {relationObjectMetadataNameSingul
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Weet je zeker dat je deze vaardigheid wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Maak een dashboard dat toont: (1) totale pijplijnwaarde per fase voor de
msgid "Build many-to-many relations"
msgstr "Maak veel-op-veel-relaties"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Ingebouwd"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Sluiten"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Banner sluiten"
@@ -3111,7 +3113,6 @@ msgstr "Codeer je functie"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Huidige werkruimte lid niet gevonden."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Aangepaste aanbieder"
msgid "Custom Providers"
msgstr "Aangepaste aanbieders"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Aangepaste tools die in je werkruimte zijn gemaakt"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Dagelijks gebruik"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Definieer de naam en instructies voor deze vaardigheid"
msgid "Define user roles and access levels"
msgstr "Bepaal gebruikersrollen en toegangsniveaus"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "verwijderen"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Verwijder deze integratie"
msgid "Delete this role and assign a new role to its members"
msgstr "Deze rol verwijderen en een nieuwe rol toewijzen aan de leden"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Verwijder deze webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Beschrijf wat je wilt dat de AI doet..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Leeg"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Verlaat instellingen"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Het toevoegen van de aanbieder is mislukt"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Aanmaken van tool mislukt"
@@ -6318,6 +6332,11 @@ msgstr "Fout bij het verwijderen van taken. Probeer het later opnieuw."
msgid "Failed to delete skill"
msgstr "Verwijderen van vaardigheid mislukt"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Afbeelding uploaden mislukt"
msgid "Failure Rate"
msgstr "Foutpercentage"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "Input moet camelCase zijn en mag niet met een nummer beginnen"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Invoerschema"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Meer laden..."
msgid "Loading retention configuration..."
msgstr "Behoudsconfiguratie laden..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Schema laden..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Beheer je toepassing"
msgid "Manage your internet accounts."
msgstr "Beheer uw internetaccounts."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Nieuw wachtwoord"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Nieuwe vaardigheid"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Nieuwe taak"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Nieuwe tool"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Geen uitvoer beschikbaar"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Geen parameters"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Alinea"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Verzoek mislukt"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Vereist"
@@ -12133,16 +12162,6 @@ msgstr "Zoek 1 {fieldTypeLabelLowercase} veld"
msgid "Search 1 field"
msgstr "Zoek 1 veld"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Zoek een ingebouwde tool..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Zoek een aangepaste tool..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Zoek een systeemobject..."
msgid "Search a team member..."
msgstr "Zoek een teamlid..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Zie Velden"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Stadia"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Standaard"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Standaardtools beschikbaar voor AI-agenten"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14282,10 +14308,15 @@ msgid "Tool calls made"
msgstr "Uitgevoerde toolaanroepen"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Tool aangemaakt"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14298,6 +14329,7 @@ msgstr "Toolgeneratie"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Hulpmiddelen"
@@ -14521,8 +14553,7 @@ msgstr "Two-factor authenticatie setup met succes voltooid!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14991,6 +15022,7 @@ msgid "Use best models only"
msgstr "Alleen de beste modellen gebruiken"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15710,6 +15742,7 @@ msgstr "Workstrooms"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15805,6 +15838,7 @@ msgid "Wrap on record pages"
msgstr "Omwikkelen op recordpagina's"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15883,6 +15917,7 @@ msgid "yes"
msgstr "ja"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(valgt: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2008,6 +2009,11 @@ msgstr "Er du sikker på at du vil slette denne relaterte {relationObjectMetadat
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Er du sikker på at du vil slette denne ferdigheten? Denne handlingen kan ikke angres."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Bygg et dashbord som viser: (1) total pipeline-verdi per fase for de sis
msgid "Build many-to-many relations"
msgstr "Bygg mange-til-mange-relasjoner"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Innebygd"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Lukk"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Lukk banner"
@@ -3111,7 +3113,6 @@ msgstr "Koder din funksjon"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Nåværende arbeidsområdemedlem ikke funnet."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Egendefinert tilbyder"
msgid "Custom Providers"
msgstr "Egendefinerte tilbydere"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Egendefinerte verktøy opprettet i arbeidsområdet ditt"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Daglig bruk"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Definer navn og instruksjoner for denne ferdigheten"
msgid "Define user roles and access levels"
msgstr "Definer brukerroller og tilgangsnivåer"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "slett"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Slett denne integrasjonen"
msgid "Delete this role and assign a new role to its members"
msgstr "Slett denne rollen og tildel en ny rolle til medlemmene"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Slett denne webhooken"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Beskriv hva du vil at AI skal gjøre..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Tom"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Avslutt innstillinger"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Kunne ikke legge til tilbyder"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Kunne ikke opprette verktøy"
@@ -6318,6 +6332,11 @@ msgstr "Mislyktes å slette jobber. Vennligst prøv igjen senere."
msgid "Failed to delete skill"
msgstr "Kunne ikke slette ferdighet"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Kunne ikke laste opp bilde"
msgid "Failure Rate"
msgstr "Feilrate"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "Inndata må være i kamelkasse og kan ikke starte med et tall"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Inndataskjema"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Laster inn mer..."
msgid "Loading retention configuration..."
msgstr "Laster inn beholdningskonfigurasjon..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Laster skjema..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr ""
msgid "Manage your internet accounts."
msgstr "Administrer internett-kontoene dine."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Nytt Passord"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Ny ferdighet"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Ny oppgave"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Nytt verktøy"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Ingen utdata tilgjengelig"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Ingen parametere"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Avsnitt"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Forespørsel mislyktes"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Påkrevd"
@@ -12133,16 +12162,6 @@ msgstr "Søk i 1 {fieldTypeLabelLowercase}-felt"
msgid "Search 1 field"
msgstr "Søk i 1 felt"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Søk etter et innebygd verktøy..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Søk etter et egendefinert verktøy..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Søk etter et systemobjekt..."
msgid "Search a team member..."
msgstr "Søk etter et teammedlem..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Se felter"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Faser"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Standard"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Standardverktøy tilgjengelige for AI-agenter"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "Verktøykall utført"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Verktøy opprettet"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "Verktøygenerering"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Verktøy"
@@ -14519,8 +14551,7 @@ msgstr "Tofaktorautentiseringsoppsett fullført!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "Bruk kun de beste modellene"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "Arbeidsflyter"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "Pakk om opptaksider"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "ja"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(wybrano: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Aplikacja"
@@ -2008,6 +2009,11 @@ msgstr "Czy na pewno chcesz usunąć ten powiązany {relationObjectMetadataNameS
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Czy na pewno chcesz usunąć tę umiejętność? Tej operacji nie można cofnąć."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Zbuduj pulpit nawigacyjny, który pokazuje: (1) łączną wartość lejk
msgid "Build many-to-many relations"
msgstr "Twórz relacje wiele-do-wielu"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Wbudowane"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Zamknij"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Zamknij baner"
@@ -3111,7 +3113,6 @@ msgstr "Koduj swoją funkcję"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Nie znaleziono bieżącego członka przestrzeni roboczej."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Niestandardowy dostawca"
msgid "Custom Providers"
msgstr "Niestandardowi dostawcy"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Niestandardowe narzędzia utworzone w Twojej przestrzeni roboczej"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Dzienne zużycie"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Zdefiniuj nazwę i instrukcje dla tej umiejętności"
msgid "Define user roles and access levels"
msgstr "Określ role użytkowników i poziomy dostępu"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "usuń"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Usuń tę integrację"
msgid "Delete this role and assign a new role to its members"
msgstr "Usuń tę rolę i przypisz nową rolę jej członkom"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Usuń ten webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Opisz, co chcesz, aby AI zrobiło..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Puste"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Wyjdź z ustawień"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Nie udało się dodać dostawcy"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Nie udało się utworzyć narzędzia"
@@ -6318,6 +6332,11 @@ msgstr "Nie udało się usunąć zadań. Proszę spróbować ponownie później.
msgid "Failed to delete skill"
msgstr "Nie udało się usunąć umiejętności"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Nie udało się przesłać zdjęcia"
msgid "Failure Rate"
msgstr "Wskaźnik niepowodzeń"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "Wprowadzane dane muszą być w notacji wielbłądziej i nie mogą zaczynać się od cyfry"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Schemat wejściowy"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Ładowanie więcej..."
msgid "Loading retention configuration..."
msgstr "Ładowanie konfiguracji retencji..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Ładowanie schematu..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Zarządzaj swoją aplikacją"
msgid "Manage your internet accounts."
msgstr "Zarządzaj swoimi internetowymi kontami."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Nowe Hasło"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Nowa umiejętność"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Nowe zadanie"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Nowe narzędzie"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Brak dostępnych wyników"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Brak parametrów"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Akapit"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Żądanie nie powiodło się"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Wymagane"
@@ -12133,16 +12162,6 @@ msgstr "Wyszukaj 1 pole {fieldTypeLabelLowercase}"
msgid "Search 1 field"
msgstr "Wyszukaj 1 pole"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Szukaj wbudowanego narzędzia..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Szukaj niestandardowego narzędzia..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Szukaj obiektu systemowego..."
msgid "Search a team member..."
msgstr "Szukaj członka zespołu..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Pola widoku"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Etapy"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Standardowy"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Standardowe narzędzia dostępne dla agentów AI"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "Wykonane wywołania narzędzi"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Utworzono narzędzie"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "Generowanie narzędzia"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Narzędzia"
@@ -14519,8 +14551,7 @@ msgstr "Konfiguracja uwierzytelniania dwuskładnikowego zakończona pomyślnie!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "Używaj tylko najlepszych modeli"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "Przepływy pracy"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "Zawiń na stronach rekordu"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "tak"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+81 -46
View File
@@ -92,7 +92,6 @@ msgstr ""
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1311,6 +1310,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1878,6 +1878,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr ""
@@ -2003,6 +2004,11 @@ msgstr ""
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr ""
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2533,11 +2539,6 @@ msgstr ""
msgid "Build many-to-many relations"
msgstr ""
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr ""
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3074,6 +3075,7 @@ msgstr ""
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr ""
@@ -3106,7 +3108,6 @@ msgstr ""
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4053,6 +4054,7 @@ msgstr ""
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4093,11 +4095,6 @@ msgstr ""
msgid "Custom Providers"
msgstr ""
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr ""
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4182,6 +4179,7 @@ msgstr ""
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4508,6 +4506,11 @@ msgstr ""
msgid "Define user roles and access levels"
msgstr ""
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4537,6 +4540,8 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4697,11 +4702,21 @@ msgstr ""
msgid "Delete this role and assign a new role to its members"
msgstr ""
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr ""
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4776,6 +4791,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5423,7 +5439,6 @@ msgstr ""
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6144,7 +6159,6 @@ msgstr ""
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6299,7 +6313,7 @@ msgid "Failed to add provider"
msgstr ""
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr ""
@@ -6313,6 +6327,11 @@ msgstr ""
msgid "Failed to delete skill"
msgstr ""
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6501,6 +6520,11 @@ msgstr ""
msgid "Failure Rate"
msgstr ""
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7646,9 +7670,9 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr ""
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
@@ -8536,11 +8560,6 @@ msgstr ""
msgid "Loading retention configuration..."
msgstr ""
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr ""
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8739,6 +8758,11 @@ msgstr ""
msgid "Manage your internet accounts."
msgstr ""
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9202,7 +9226,7 @@ msgstr ""
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9430,7 +9454,7 @@ msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr ""
@@ -9450,7 +9474,7 @@ msgid "New task"
msgstr ""
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr ""
@@ -9859,8 +9883,7 @@ msgid "No output available"
msgstr ""
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr ""
@@ -10671,6 +10694,11 @@ msgstr ""
msgid "Paragraph"
msgstr ""
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11722,6 +11750,7 @@ msgstr ""
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr ""
@@ -12128,16 +12157,6 @@ msgstr ""
msgid "Search 1 field"
msgstr ""
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr ""
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr ""
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12177,6 +12196,11 @@ msgstr ""
msgid "Search a team member..."
msgstr ""
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12443,6 +12467,11 @@ msgstr ""
msgid "See Fields"
msgstr ""
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13224,15 +13253,12 @@ msgid "Stages"
msgstr ""
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr ""
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr ""
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14275,10 +14301,15 @@ msgid "Tool calls made"
msgstr ""
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr ""
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14291,6 +14322,7 @@ msgstr ""
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr ""
@@ -14514,8 +14546,7 @@ msgstr ""
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14984,6 +15015,7 @@ msgid "Use best models only"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15701,6 +15733,7 @@ msgstr ""
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15796,6 +15829,7 @@ msgid "Wrap on record pages"
msgstr ""
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15874,6 +15908,7 @@ msgid "yes"
msgstr ""
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(selecionado: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr "Gráfico agregado"
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Aplicativo"
@@ -2008,6 +2009,11 @@ msgstr "Tem certeza de que deseja excluir este(a) {relationObjectMetadataNameSin
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Tem certeza que deseja excluir esta habilidade? Esta ação não pode ser desfeita."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Crie um painel que mostre: (1) valor total do funil por etapa nos últim
msgid "Build many-to-many relations"
msgstr "Crie relacionamentos muitos-para-muitos"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Integrado"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Fechar"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Fechar banner"
@@ -3111,7 +3113,6 @@ msgstr "Codifique sua função"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Membro atual do espaço de trabalho não encontrado."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Provedor personalizado"
msgid "Custom Providers"
msgstr "Provedores personalizados"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Ferramentas personalizadas criadas no seu espaço de trabalho"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Uso diário"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Defina o nome e as instruções para esta habilidade"
msgid "Define user roles and access levels"
msgstr "Definir papéis de usuário e níveis de acesso"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "excluir"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Excluir esta integração"
msgid "Delete this role and assign a new role to its members"
msgstr "Excluir esta função e atribuir uma nova função aos seus membros"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Excluir este webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Descreva o que você quer que a IA faça..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Vazio"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Sair das Configurações"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Falha ao adicionar o provedor"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Falha ao criar a ferramenta"
@@ -6318,6 +6332,11 @@ msgstr "Falha ao excluir trabalhos. Por favor, tente novamente mais tarde."
msgid "Failed to delete skill"
msgstr "Falha ao excluir a habilidade"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Falha ao carregar imagem"
msgid "Failure Rate"
msgstr "Taxa de falhas"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "A entrada deve estar em camel case e não pode começar com um número"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Esquema de entrada"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Carregando mais..."
msgid "Loading retention configuration..."
msgstr "Carregando configuração de retenção..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr ""
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Gerencie seu aplicativo"
msgid "Manage your internet accounts."
msgstr "Gerencie suas contas de internet."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Nova Senha"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Nova habilidade"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Nova tarefa"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Nova ferramenta"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Nenhuma saída disponível"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Sem parâmetros"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Parágrafo"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Solicitação falhou"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Obrigatório"
@@ -12133,16 +12162,6 @@ msgstr "Pesquisar 1 campo {fieldTypeLabelLowercase}"
msgid "Search 1 field"
msgstr "Pesquisar 1 campo"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Pesquisar uma ferramenta integrada..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Pesquisar uma ferramenta personalizada..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Pesquisar um objeto do sistema..."
msgid "Search a team member..."
msgstr "Pesquisar um membro da equipe..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Ver Campos"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Fases"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Padrão"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Ferramentas padrão disponíveis para agentes de IA"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "Chamadas de ferramentas realizadas"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Ferramenta criada"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "Geração de ferramenta"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Ferramentas"
@@ -14519,8 +14551,7 @@ msgstr "Configuração de autenticação em duas etapas concluída com sucesso!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "Usar apenas os melhores modelos"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "Workflows"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "Envolver nas páginas de registro"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "sim"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(selecionado: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Aplicativo"
@@ -2008,6 +2009,11 @@ msgstr "Tem a certeza de que pretende eliminar este {relationObjectMetadataNameS
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Tem certeza de que deseja excluir esta habilidade? Esta ação não pode ser desfeita."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Criar um dashboard que mostre: (1) o valor total do pipeline por fase no
msgid "Build many-to-many relations"
msgstr "Criar relações muitos-para-muitos"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Integrado"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Fechar"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Fechar banner"
@@ -3111,7 +3113,6 @@ msgstr "Codifique sua função"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Membro atual do espaço de trabalho não encontrado."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Provedor personalizado"
msgid "Custom Providers"
msgstr "Provedores personalizados"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Ferramentas personalizadas criadas no seu espaço de trabalho"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Utilização Diária"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Defina o nome e as instruções para esta habilidade"
msgid "Define user roles and access levels"
msgstr "Definir papéis de usuário e níveis de acesso"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "eliminar"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Eliminar esta integração"
msgid "Delete this role and assign a new role to its members"
msgstr "Eliminar esta função e atribuir uma nova função aos seus membros"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Eliminar este webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Descreva o que você quer que a AI faça..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Vazio"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Sair das Definições"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Falha ao adicionar o provedor"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Falha ao criar ferramenta"
@@ -6318,6 +6332,11 @@ msgstr "Falha ao deletar trabalhos. Por favor, tente novamente mais tarde."
msgid "Failed to delete skill"
msgstr "Falha ao excluir a habilidade"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Falha ao carregar a imagem"
msgid "Failure Rate"
msgstr "Taxa de falhas"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "A entrada deve estar em camel case e não pode começar com um número"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Esquema de entrada"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Carregando mais..."
msgid "Loading retention configuration..."
msgstr "Carregando configuração de retenção..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Carregando esquema..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Gerencie sua aplicação"
msgid "Manage your internet accounts."
msgstr "Gerir as suas contas de internet."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Nova Palavra-passe"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Nova Habilidade"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Nova tarefa"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Nova ferramenta"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Não há saída disponível"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Nenhum parâmetro"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Parágrafo"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Falha no Pedido"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Obrigatório"
@@ -12133,16 +12162,6 @@ msgstr "Pesquisar 1 campo {fieldTypeLabelLowercase}"
msgid "Search 1 field"
msgstr "Pesquisar 1 campo"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Pesquisar uma ferramenta integrada..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Pesquisar uma ferramenta personalizada..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Pesquisar um objeto do sistema..."
msgid "Search a team member..."
msgstr "Pesquisar um membro da equipe..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Ver Campos"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Fases"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Padrão"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Ferramentas padrão disponíveis para agentes de IA"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "Chamadas de ferramentas efetuadas"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Ferramenta criada"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "Geração de ferramenta"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Ferramentas"
@@ -14519,8 +14551,7 @@ msgstr "Configuração da autenticação em duas etapas concluída com sucesso!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "Usar apenas os melhores modelos"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "Workflows"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "Envolver em páginas de registo"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "sim"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(selectată: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr ""
@@ -2008,6 +2009,11 @@ msgstr "Sigur doriți să ștergeți {relationObjectMetadataNameSingular} asocia
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Sigur doriți să ștergeți această abilitate? Această acțiune nu poate fi anulată."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Construiți un tablou de bord care să arate: (1) valoarea totală a pip
msgid "Build many-to-many relations"
msgstr "Creați relații de tip mulți-la-mulți"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Integrat"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Închide"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Închide bannerul"
@@ -3111,7 +3113,6 @@ msgstr "Codificați funcția dumneavoastră"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Membru curent al spațiului de lucru nu a fost găsit."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Furnizor personalizat"
msgid "Custom Providers"
msgstr "Furnizori personalizați"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Instrumente personalizate create în spațiul dvs. de lucru"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Utilizare zilnică"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Definiți numele și instrucțiunile pentru această abilitate"
msgid "Define user roles and access levels"
msgstr "Definirea rolurilor utilizatorilor și a nivelurilor de acces"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "șterge"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Șterge această integrare"
msgid "Delete this role and assign a new role to its members"
msgstr "Șterge acest rol și atribuie un rol nou membrilor săi"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Șterge acest webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Descrie ce dorești ca AI să facă..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Gol"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Ieșire din Setări"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Eroare la adăugarea furnizorului"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Crearea instrumentului a eșuat"
@@ -6318,6 +6332,11 @@ msgstr "Eșuat la ștergerea locurilor de muncă. Încercați din nou mai târzi
msgid "Failed to delete skill"
msgstr "Ștergerea abilității a eșuat"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Nu s-a reușit încărcarea imaginii"
msgid "Failure Rate"
msgstr "Rată de eșec"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "Intrarea trebuie să fie în formă 'camel case' și nu poate începe cu un număr"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Schema de intrare"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Se încarcă mai multe..."
msgid "Loading retention configuration..."
msgstr "Se încarcă configurația de reținere..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Se încarcă schema..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Gestionați aplicația dvs."
msgid "Manage your internet accounts."
msgstr "Gestionează-ți conturile de internet."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Parolă nouă"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Abilitate nouă"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Sarcină nouă"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Instrument nou"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Nu este disponibilă nicio ieșire"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Fără parametri"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Paragraf"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Cererea a eșuat"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Obligatoriu"
@@ -12133,16 +12162,6 @@ msgstr "Caută 1 câmp de tip {fieldTypeLabelLowercase}"
msgid "Search 1 field"
msgstr "Caută 1 câmp"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Căutați un instrument integrat..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Căutați un instrument personalizat..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Căutați un obiect de sistem..."
msgid "Search a team member..."
msgstr "Caută un membru al echipei..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Vezi câmpuri"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Etape"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Standard"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Instrumente standard disponibile pentru agenții AI"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "Apeluri de instrumente efectuate"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Instrument creat"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "Generarea instrumentului"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Instrumente"
@@ -14519,8 +14551,7 @@ msgstr "Configurarea autentificării în doi pași a fost finalizată cu succes!
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "Folosește doar cele mai bune modele"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "Fluxuri de lucru"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "Înfășurare pe paginile de înregistrare"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "da"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
Binary file not shown.
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(изабрано: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Апликација"
@@ -2008,6 +2009,11 @@ msgstr "Да ли сте сигурни да желите да обришете
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Да ли сте сигурни да желите да обришете ову вештину? Ова радња се не може опозвати."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Креирајте контролну таблу која приказу
msgid "Build many-to-many relations"
msgstr "Креирајте релације много-према-много"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Уграђени"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Затвори"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Затвори банер"
@@ -3111,7 +3113,6 @@ msgstr "Напишите вашу функцију"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Тренутни члан радног простора није про
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Прилагођени провајдер"
msgid "Custom Providers"
msgstr "Прилагођени провајдери"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Прилагођени алати креирани у вашем радном простору"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Дневно коришћење"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Дефинишите име и упутства за ову вештин
msgid "Define user roles and access levels"
msgstr "Дефинишите улоге корисника и нивое приступа"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "обриши"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Обриши ову интеграцију"
msgid "Delete this role and assign a new role to its members"
msgstr "Обриши ову улогу и додељи нову улогу њеним члановима"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Обриши овај вебхук"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Опишите шта желите да AI уради..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Празно"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Изађи из подешавања"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Није успело додавање провајдера"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Није успело креирање алата"
@@ -6318,6 +6332,11 @@ msgstr "Није успело брисање послова. Покушајте
msgid "Failed to delete skill"
msgstr "Није успело брисање вештине"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Није успело отпремање слике"
msgid "Failure Rate"
msgstr "Стопа неуспеха"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "Унос мора бити у camel case и не може почети са бројем"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Улазна шема"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Учитавање још..."
msgid "Loading retention configuration..."
msgstr "Учитавање конфигурације задржавања..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Учитавање шеме..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Управљајте својом апликацијом"
msgid "Manage your internet accounts."
msgstr "Управљање вашим интернетским налозима."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Нова лозинка"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Нова вештина"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Нови задатак"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Нови алат"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Нема доступног излаза"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Нема параметара"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Пасус"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Захтев није успео"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Обавезно"
@@ -12133,16 +12162,6 @@ msgstr "Претражите 1 {fieldTypeLabelLowercase} поље"
msgid "Search 1 field"
msgstr "Претражите 1 поље"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Претражите уграђени алат..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Претражите прилагођени алат..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Претражите системски објекат..."
msgid "Search a team member..."
msgstr "Претражите члана тима..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Види Поља"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Фазе"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Стандардно"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Стандардни алати доступни AI агентима"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "Остварени позиви алата"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Алат је креиран"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "Генерисање алата"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Алатке"
@@ -14519,8 +14551,7 @@ msgstr "Подешавање двофакторске аутентификаци
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "Користите само најбоље моделе"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "Токови Рада"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "Омотати на страницама записа"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "да"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(vald: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "App"
@@ -2008,6 +2009,11 @@ msgstr "Är du säker på att du vill ta bort denna relaterade {relationObjectMe
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Är du säker på att du vill ta bort den här färdigheten? Den här åtgärden kan inte ångras."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Bygg en instrumentpanel som visar: (1) totalt pipelinevärde per steg f
msgid "Build many-to-many relations"
msgstr "Skapa många-till-många-relationer"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Inbyggda"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Stäng"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Stäng banner"
@@ -3111,7 +3113,6 @@ msgstr "Koda din funktion"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Nuvarande arbetsytemedlem inte hittad."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Anpassad leverantör"
msgid "Custom Providers"
msgstr "Anpassade leverantörer"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Anpassade verktyg som skapats i din arbetsyta"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Daglig användning"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Definiera namnet och instruktionerna för den här färdigheten"
msgid "Define user roles and access levels"
msgstr "Definiera användarroller och åtkomstnivåer"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "ta bort"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Ta bort denna integration"
msgid "Delete this role and assign a new role to its members"
msgstr "Ta bort den här rollen och tilldela en ny roll till dess medlemmar"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Ta bort denna webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Beskriv vad du vill att AI:n ska göra..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Tom"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Avsluta inställningar"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Det gick inte att lägga till leverantören"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Det gick inte att skapa verktyg"
@@ -6318,6 +6332,11 @@ msgstr "Det gick inte att radera jobben. Försök igen senare."
msgid "Failed to delete skill"
msgstr "Det gick inte att ta bort färdigheten"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Misslyckades med att ladda upp bild"
msgid "Failure Rate"
msgstr "Felfrekvens"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "Inmatningen måste vara i kamelnotering och får inte börja med en siffra"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Indataschema"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Laddar fler..."
msgid "Loading retention configuration..."
msgstr "Laddar kvarhållningskonfiguration..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Laddar schema..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Hantera din app"
msgid "Manage your internet accounts."
msgstr "Hantera dina internetkonton."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9209,7 +9233,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9437,7 +9461,7 @@ msgstr "Nytt Lösenord"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Ny färdighet"
@@ -9457,7 +9481,7 @@ msgid "New task"
msgstr "Ny uppgift"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Nytt verktyg"
@@ -9866,8 +9890,7 @@ msgid "No output available"
msgstr "Ingen utdata tillgänglig"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Inga parametrar"
@@ -10678,6 +10701,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Stycke"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11729,6 +11757,7 @@ msgstr "Begäran misslyckades"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Obligatoriskt"
@@ -12137,16 +12166,6 @@ msgstr "Sök 1 {fieldTypeLabelLowercase} fält"
msgid "Search 1 field"
msgstr "Sök 1 fält"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Sök efter ett inbyggt verktyg..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Sök efter ett anpassat verktyg..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12186,6 +12205,11 @@ msgstr "Sök efter ett systemobjekt..."
msgid "Search a team member..."
msgstr "Sök en teammedlem..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12452,6 +12476,11 @@ msgstr ""
msgid "See Fields"
msgstr "Se fält"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13233,15 +13262,12 @@ msgid "Stages"
msgstr "Stadier"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Standard"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Standardverktyg som är tillgängliga för AI-agenter"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14288,10 +14314,15 @@ msgid "Tool calls made"
msgstr "Verktygsanrop gjorda"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Verktyg skapat"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14304,6 +14335,7 @@ msgstr "Verktygsgenerering"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Verktyg"
@@ -14527,8 +14559,7 @@ msgstr "Tvåfaktorsautentisering uppsättning genomförd lyckades!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14997,6 +15028,7 @@ msgid "Use best models only"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15716,6 +15748,7 @@ msgstr "Arbetsflöden"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15811,6 +15844,7 @@ msgid "Wrap on record pages"
msgstr "Omslag på inspelningssidor"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15889,6 +15923,7 @@ msgid "yes"
msgstr "ja"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(seçili: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Uygulama"
@@ -2008,6 +2009,11 @@ msgstr "Bu ilişkili {relationObjectMetadataNameSingular} öğesini silmek isted
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Bu beceriyi silmek istediğinizden emin misiniz? Bu işlem geri alınamaz."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Şunları gösteren bir kontrol paneli oluşturun: (1) Son 3 ay için a
msgid "Build many-to-many relations"
msgstr "Çoktan-çoka İlişkiler Oluşturun"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Yerleşik"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Kapat"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Afişi kapat"
@@ -3111,7 +3113,6 @@ msgstr "Fonksiyonunu kodla"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Geçerli çalışma alanı üyesi bulunamadı."
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Özel sağlayıcı"
msgid "Custom Providers"
msgstr "Özel Sağlayıcılar"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Çalışma alanınızda oluşturulan özel araçlar"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Günlük Kullanım"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Bu becerinin adını ve talimatlarını tanımlayın"
msgid "Define user roles and access levels"
msgstr "Kullanıcı rolleri ve erişim seviyelerini tanımlayın"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "sil"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Bu entegrasyonu sil"
msgid "Delete this role and assign a new role to its members"
msgstr "Bu rolü sil ve üyelerine yeni bir rol ata"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Bu Webhook'u Sil"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "AI'nın ne yapmasını istediğinizi tarif edin..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Boş"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Ayarları Kapat"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Sağlayıcı eklenemedi"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Araç oluşturulamadı"
@@ -6318,6 +6332,11 @@ msgstr "İş silme başarısız oldu. Lütfen daha sonra tekrar deneyiniz."
msgid "Failed to delete skill"
msgstr "Beceri silinemedi"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Resim yüklenemedi"
msgid "Failure Rate"
msgstr "Başarısızlık Oranı"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "Giriş deve şeklinde olmalı ve bir rakamla başlayamaz"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Girdi Şeması"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Daha fazla yükleniyor..."
msgid "Loading retention configuration..."
msgstr "Yükleme yapılandırması yükleniyor..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Şema yükleniyor..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Uygulamanızı yönetin"
msgid "Manage your internet accounts."
msgstr "İnternet hesaplarınızı yönetin."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Yeni Parola"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Yeni beceri"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Yeni görev"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Yeni Araç"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Çıktı yok"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Parametre yok"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Paragraf"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "İstek Başarısız"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Zorunlu"
@@ -12133,16 +12162,6 @@ msgstr "1 {fieldTypeLabelLowercase} alanı ara"
msgid "Search 1 field"
msgstr "1 alanı ara"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Yerleşik bir araç arayın..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Özel bir araç arayın..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Bir sistem nesnesi ara..."
msgid "Search a team member..."
msgstr "Bir ekip üyesi ara..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Alanları Gör"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Aşamalar"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Standart"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Yapay zekâ ajanlarının kullanabileceği standart araçlar"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "Gerçekleştirilen araç çağrıları"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Araç oluşturuldu"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "Araç oluşturma"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Araçlar"
@@ -14519,8 +14551,7 @@ msgstr "İki faktörlü doğrulama kurulumu başarıyla tamamlandı!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "Yalnızca en iyi modelleri kullan"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "İş Akışları"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "Kayıt sayfalarında daralt"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "evet"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(обрано: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Додаток"
@@ -2008,6 +2009,11 @@ msgstr "Ви впевнені, що хочете видалити пов’яз
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Ви впевнені, що хочете видалити цю навичку? Цю дію не можна скасувати."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Створіть панель, яка показує: (1) загальн
msgid "Build many-to-many relations"
msgstr "Створюйте зв’язки «багато-до-багатьох»"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Вбудовані"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Закрити"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Закрити банер"
@@ -3111,7 +3113,6 @@ msgstr "Закодуйте свою функцію"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Поточний учасник робочого простору не
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Користувацький провайдер"
msgid "Custom Providers"
msgstr "Користувацькі провайдери"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Користувацькі інструменти, створені у вашому робочому просторі"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Щоденне використання"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Визначте назву та інструкції для цієї н
msgid "Define user roles and access levels"
msgstr "Визначити ролі користувачів та рівні доступу"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "видалити"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Видалити цю інтеграцію"
msgid "Delete this role and assign a new role to its members"
msgstr "Видалити цю роль і призначити нову роль її учасникам"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Видалити цей вебхук"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Опишіть, що ви хочете, щоб AI зробив..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Порожньо"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "Вийти з налаштувань"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Не вдалося додати провайдера"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Не вдалося створити інструмент"
@@ -6318,6 +6332,11 @@ msgstr "Не вдалося видалити завдання. Будь ласк
msgid "Failed to delete skill"
msgstr "Не вдалося видалити навичку"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Не вдалося завантажити зображення"
msgid "Failure Rate"
msgstr "Частота збоїв"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "Вхідні дані мають бути у camelCase та не можуть починатися з цифри"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Схема вхідних даних"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Завантаження ще..."
msgid "Loading retention configuration..."
msgstr "Завантаження конфігурації збереження..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Завантаження схеми..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Керуйте своїм застосунком"
msgid "Manage your internet accounts."
msgstr "Управління своїми інтернет-акаунтами."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Новий пароль"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Нова навичка"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Нове завдання"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Новий інструмент"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Немає доступних результатів"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Без параметрів"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Абзац"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Запит не вдався"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Обов'язково"
@@ -12133,16 +12162,6 @@ msgstr "Пошук 1 поля типу {fieldTypeLabelLowercase}"
msgid "Search 1 field"
msgstr "Пошук 1 поля"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Пошук вбудованого інструмента..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Пошук користувацького інструмента..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Пошук системного об’єкта..."
msgid "Search a team member..."
msgstr "Шукати учасника команди..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Перегляд полів"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Стадії"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Стандартний"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Стандартні інструменти, доступні агентам ШІ"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14282,10 +14308,15 @@ msgid "Tool calls made"
msgstr "Здійснено викликів інструментів"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Інструмент створено"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14298,6 +14329,7 @@ msgstr "Генерація інструмента"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Інструменти"
@@ -14521,8 +14553,7 @@ msgstr "Налаштування двофакторної аутентифіка
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14991,6 +15022,7 @@ msgid "Use best models only"
msgstr "Використовувати лише найкращі моделі"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15710,6 +15742,7 @@ msgstr "Робочі процеси"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15805,6 +15838,7 @@ msgid "Wrap on record pages"
msgstr "Обернути на сторінках записів"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15883,6 +15917,7 @@ msgid "yes"
msgstr "так"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(đã chọn: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "Ứng dụng"
@@ -2008,6 +2009,11 @@ msgstr "Bạn có chắc muốn xóa {relationObjectMetadataNameSingular} liên
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "Bạn có chắc chắn muốn xóa kỹ năng này không? Hành động này không thể hoàn tác."
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "Tạo một bảng điều khiển hiển thị: (1) tổng giá trị p
msgid "Build many-to-many relations"
msgstr "Thiết lập quan hệ nhiều-nhiều"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "Tích hợp sẵn"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "Đóng"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "Đóng biểu ngữ"
@@ -3111,7 +3113,6 @@ msgstr "Mã hóa chức năng của bạn"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "Không tìm thấy thành viên hiện tại của không gian làm vi
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "Nhà cung cấp tùy chỉnh"
msgid "Custom Providers"
msgstr "Các nhà cung cấp tùy chỉnh"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "Các công cụ tùy chỉnh được tạo trong không gian làm việc của bạn"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "Mức sử dụng hằng ngày"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "Xác định tên và hướng dẫn cho kỹ năng này"
msgid "Define user roles and access levels"
msgstr "Xác định vai trò người dùng và mức độ truy cập"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "xóa"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "Xóa tích hợp này"
msgid "Delete this role and assign a new role to its members"
msgstr "Xóa vai trò này và chỉ định một vai trò mới cho các thành viên của nó"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "Xóa webhooks này"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "Mô tả điều bạn muốn AI làm gì..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "Trống"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "\"Thoát Cài đặt\""
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "Thêm nhà cung cấp thất bại"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "Tạo công cụ thất bại"
@@ -6318,6 +6332,11 @@ msgstr "Không thể xóa các công việc. Vui lòng thử lại sau."
msgid "Failed to delete skill"
msgstr "Xóa kỹ năng thất bại"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "Không thể tải lên ảnh"
msgid "Failure Rate"
msgstr "Tỉ lệ thất bại"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "Đầu vào phải theo cú pháp lạc đà và không thể bắt đầu bằng chữ số"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "Lược đồ đầu vào"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "Đang tải thêm..."
msgid "Loading retention configuration..."
msgstr "Đang tải cấu hình lưu trữ..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "Đang tải lược đồ..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "Quản lý ứng dụng của bạn"
msgid "Manage your internet accounts."
msgstr "Quản lý các tài khoản internet của bạn."
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "Mật khẩu Mới"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "Kỹ năng mới"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "Nhiệm vụ mới"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "Công cụ mới"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "Không có kết quả hiển thị"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "Không có tham số"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "Đoạn văn"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "Yêu cầu thất bại"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "Bắt buộc"
@@ -12133,16 +12162,6 @@ msgstr "Tìm 1 trường {fieldTypeLabelLowercase}"
msgid "Search 1 field"
msgstr "Tìm 1 trường"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "Tìm một công cụ tích hợp sẵn..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "Tìm một công cụ tùy chỉnh..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "Tìm kiếm một đối tượng hệ thống..."
msgid "Search a team member..."
msgstr "Tìm kiếm một thành viên..."
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "Xem các Trường"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "Giai đoạn"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "Tiêu chuẩn"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "Các công cụ tiêu chuẩn có sẵn cho các tác nhân AI"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "Số lần gọi công cụ"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "Đã tạo công cụ"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "Tạo công cụ"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "Công cụ"
@@ -14519,8 +14551,7 @@ msgstr "Thiết lập xác thực hai yếu tố thành công!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "Chỉ sử dụng các mô hình tốt nhất"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "Quy Trình Làm Việc"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "Quấn trên trang hồ sơ"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "có"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(已选择: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "应用"
@@ -2008,6 +2009,11 @@ msgstr "确定要删除此相关的 {relationObjectMetadataNameSingular} 吗?<
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "确定要删除此技能吗?此操作无法撤销。"
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "构建一个仪表盘,展示:(1) 过去 3 个月按阶段的总管
msgid "Build many-to-many relations"
msgstr "创建多对多关系"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "内置"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "关闭"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "关闭横幅"
@@ -3111,7 +3113,6 @@ msgstr "编写您的功能"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "未找到当前工作区成员。"
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "自定义提供商"
msgid "Custom Providers"
msgstr "自定义提供商"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "在您的工作区中创建的自定义工具"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "每日用量"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr "为此技能定义名称和指令"
msgid "Define user roles and access levels"
msgstr "定义用户角色和访问级别"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "删除"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "删除此集成"
msgid "Delete this role and assign a new role to its members"
msgstr "删除该角色并为其成员分配新的角色"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "删除此 Webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "描述你希望 AI 执行的操作..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "空"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "退出设置"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "添加提供商失败"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "创建工具失败"
@@ -6318,6 +6332,11 @@ msgstr "删除任务失败。请稍后再试。"
msgid "Failed to delete skill"
msgstr "删除技能失败。"
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "上传图片失败"
msgid "Failure Rate"
msgstr "失败率"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "输入内容必须使用驼峰命名法,且不能以数字开头"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "输入模式"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "正在加载更多…"
msgid "Loading retention configuration..."
msgstr "加载保留配置..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "正在加载架构..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "管理您的应用程序"
msgid "Manage your internet accounts."
msgstr "管理您的互联网账户。"
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr "mySkill"
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "新密码"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr "新建技能"
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "新任务"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "新建工具"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "没有可用的输出"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "无参数"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "段落"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "请求失败"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "必填"
@@ -12133,16 +12162,6 @@ msgstr "搜索 1 个 {fieldTypeLabelLowercase} 字段"
msgid "Search 1 field"
msgstr "搜索 1 个字段"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "搜索内置工具..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "搜索自定义工具..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "搜索系统对象..."
msgid "Search a team member..."
msgstr "搜索一个团队成员……"
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "查看字段"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "阶段"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "标准"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "可供 AI 代理使用的标准工具"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "工具调用次数"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "工具已创建"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "工具生成"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "工具"
@@ -14519,8 +14551,7 @@ msgstr "双因素身份验证设置成功完成!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "仅使用最佳模型"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "工作流"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "在记录页面上换行"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "是"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
+82 -47
View File
@@ -97,7 +97,6 @@ msgstr "(已選取: {selectedIconKey})"
#. js-lingui-id: ZBGbuw
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -1316,6 +1315,7 @@ msgstr ""
#. js-lingui-id: jsQZMk
#: src/pages/settings/roles/SettingsRoleAddObjectLevel.tsx
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1883,6 +1883,7 @@ msgstr ""
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
msgid "App"
msgstr "應用程式"
@@ -2008,6 +2009,11 @@ msgstr "您確定要刪除此相關的 {relationObjectMetadataNameSingular} 嗎
msgid "Are you sure you want to delete this skill? This action cannot be undone."
msgstr "您確定要刪除此技能嗎?此操作無法復原。"
#. js-lingui-id: 0Cs5HS
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Are you sure you want to delete this tool? This action cannot be undone."
msgstr ""
#. js-lingui-id: EySr+c
#. placeholder {0}: objectMetadataItem.labelPlural
#: src/modules/command-menu-item/engine-command/record/components/DestroyRecordsCommand.tsx
@@ -2538,11 +2544,6 @@ msgstr "建立一個儀表板,內容包括:(1) 過去 3 個月按階段的
msgid "Build many-to-many relations"
msgstr "建立多對多關聯"
#. js-lingui-id: +7fBMP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Built-in"
msgstr "內建"
#. js-lingui-id: uvoIrk
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Built-in models from this provider. Toggle to enable or disable."
@@ -3079,6 +3080,7 @@ msgstr "關閉"
#. js-lingui-id: uYADQM
#: src/modules/information-banner/components/InformationBanner.tsx
#: src/modules/information-banner/components/InformationBanner.tsx
msgid "Close banner"
msgstr "關閉橫幅"
@@ -3111,7 +3113,6 @@ msgstr "編寫您的功能代碼"
#. js-lingui-id: H86f9p
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -4058,6 +4059,7 @@ msgstr "找不到當前工作區成員。"
#. js-lingui-id: 8Tg/JR
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
msgid "Custom"
@@ -4098,11 +4100,6 @@ msgstr "自訂供應商"
msgid "Custom Providers"
msgstr "自訂供應商"
#. js-lingui-id: jt16uy
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Custom tools created in your workspace"
msgstr "在您的工作區建立的自訂工具"
#. js-lingui-id: BjGDEB
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Custom View"
@@ -4187,6 +4184,7 @@ msgstr "每日用量"
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
@@ -4513,6 +4511,11 @@ msgstr ""
msgid "Define user roles and access levels"
msgstr "定義用戶角色和訪問等級"
#. js-lingui-id: ErLA3E
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Define what this tool does"
msgstr ""
#. js-lingui-id: bQkkFU
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@@ -4542,6 +4545,8 @@ msgstr "刪除"
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
@@ -4702,11 +4707,21 @@ msgstr "刪除此集成"
msgid "Delete this role and assign a new role to its members"
msgstr "刪除此角色並為其成員分配新角色"
#. js-lingui-id: UvEQr6
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete this tool"
msgstr ""
#. js-lingui-id: KSOhjo
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Delete this webhook"
msgstr "刪除此 Webhook"
#. js-lingui-id: rQiOWg
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Delete Tool"
msgstr ""
#. js-lingui-id: jPvFKE
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Delete Two-Factor Authentication Method"
@@ -4781,6 +4796,7 @@ msgstr "描述您希望 AI 實現的功能..."
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
#: src/pages/settings/applications/components/SettingsApplicationNameDescriptionTable.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionNewForm.tsx
@@ -5428,7 +5444,6 @@ msgstr "空"
#. js-lingui-id: OMbipf
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6149,7 +6164,6 @@ msgstr "退出設置"
#. js-lingui-id: 1A3EXy
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
@@ -6304,7 +6318,7 @@ msgid "Failed to add provider"
msgstr "新增供應商失敗"
#. js-lingui-id: WM7GKt
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Failed to create tool"
msgstr "建立工具失敗"
@@ -6318,6 +6332,11 @@ msgstr "無法刪除工作。請稍後重試。"
msgid "Failed to delete skill"
msgstr ""
#. js-lingui-id: AUprM8
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Failed to delete tool"
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
msgid "Failed to duplicate dashboard"
@@ -6506,6 +6525,11 @@ msgstr "上傳圖片失敗"
msgid "Failure Rate"
msgstr "失敗率"
#. js-lingui-id: 8wngZM
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Fallback"
msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/side-panel/pages/page-layout/hooks/useChartSettingsValues.ts
@@ -7651,10 +7675,10 @@ msgstr ""
msgid "Input must be in camel case and cannot start with a number"
msgstr "輸入必須為駝峰式大小寫,且不能以數字開頭"
#. js-lingui-id: ssPbxG
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Input Schema"
msgstr "輸入參數結構"
#. js-lingui-id: VmBcTm
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Input parameters accepted by this tool"
msgstr ""
#. js-lingui-id: /6i28D
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
@@ -8541,11 +8565,6 @@ msgstr "載入更多..."
msgid "Loading retention configuration..."
msgstr "正在加載保留配置..."
#. js-lingui-id: +yoeVU
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
msgid "Loading schema..."
msgstr "正在載入結構描述..."
#. js-lingui-id: dJl485
#: src/modules/ai/utils/getToolDisplayMessage.ts
msgid "Loading skills..."
@@ -8744,6 +8763,11 @@ msgstr "管理您的應用程式"
msgid "Manage your internet accounts."
msgstr "管理您的互聯網帳戶"
#. js-lingui-id: waFx9W
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Managed"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -9207,7 +9231,7 @@ msgstr ""
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/modules/settings/workspace/components/NameField.tsx
@@ -9435,7 +9459,7 @@ msgstr "新密碼"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Skill"
msgstr ""
@@ -9455,7 +9479,7 @@ msgid "New task"
msgstr "新任務"
#. js-lingui-id: IQ+GEj
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "New Tool"
msgstr "新增工具"
@@ -9864,8 +9888,7 @@ msgid "No output available"
msgstr "沒有可用的輸出"
#. js-lingui-id: 20ONq7
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsSystemToolTableRow.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "No parameters"
msgstr "無參數"
@@ -10676,6 +10699,11 @@ msgstr ""
msgid "Paragraph"
msgstr "段落"
#. js-lingui-id: F18WP3
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Parameters"
msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/security/components/SettingsSecurityAuthBypassOptionsList.tsx
@@ -11727,6 +11755,7 @@ msgstr "請求失敗"
#. js-lingui-id: TMLAx2
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "Required"
msgstr "必填"
@@ -12133,16 +12162,6 @@ msgstr "搜尋 1 個 {fieldTypeLabelLowercase} 欄位"
msgid "Search 1 field"
msgstr "搜尋 1 個欄位"
#. js-lingui-id: n9V88v
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a built-in tool..."
msgstr "搜尋內建工具..."
#. js-lingui-id: V8n1cR
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a custom tool..."
msgstr "搜尋自訂工具..."
#. js-lingui-id: l1/uy2
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
@@ -12182,6 +12201,11 @@ msgstr "搜尋系統物件..."
msgid "Search a team member..."
msgstr "搜索團隊成員……"
#. js-lingui-id: VNmPqQ
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Search a tool..."
msgstr ""
#. js-lingui-id: lnDfeK
#: src/modules/settings/data-model/fields/forms/components/SettingsObjectNewFieldSelector.tsx
msgid "Search a type"
@@ -12448,6 +12472,11 @@ msgstr ""
msgid "See Fields"
msgstr "查看字段"
#. js-lingui-id: RpeN29
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
msgid "See function"
msgstr ""
#. js-lingui-id: vn4aKq
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
@@ -13229,15 +13258,12 @@ msgid "Stages"
msgstr "階段"
#. js-lingui-id: TJBHlP
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
msgid "Standard"
msgstr "標準"
#. js-lingui-id: mLu2Pd
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Standard tools available to AI agents"
msgstr "可供 AI 代理使用的標準工具"
#. js-lingui-id: tXkhj/
#: src/pages/onboarding/PaymentSuccess.tsx
msgid "Start"
@@ -14280,10 +14306,15 @@ msgid "Tool calls made"
msgstr "已進行的工具呼叫"
#. js-lingui-id: SrWh42
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/SettingsAI.tsx
msgid "Tool created"
msgstr "工具已建立"
#. js-lingui-id: i5A3/7
#: src/pages/settings/ai/SettingsToolDetail.tsx
msgid "Tool deleted"
msgstr ""
#. js-lingui-id: OvFVjH
#: src/modules/ai/components/ToolStepRenderer.tsx
msgid "Tool execution failed"
@@ -14296,6 +14327,7 @@ msgstr "工具產生"
#. js-lingui-id: xdA/+p
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
msgid "Tools"
msgstr "工具"
@@ -14519,8 +14551,7 @@ msgstr "雙因素身份驗證設定成功完成!"
#: src/pages/settings/applications/components/SettingsApplicationDataTableRow.tsx
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormFieldSettings.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputFieldTypeSelector.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
@@ -14989,6 +15020,7 @@ msgid "Use best models only"
msgstr "僅使用最佳模型"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
@@ -15708,6 +15740,7 @@ msgstr "Workflow"
#: src/pages/settings/applications/SettingsApplications.tsx
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -15803,6 +15836,7 @@ msgid "Wrap on record pages"
msgstr "在記錄頁面上換行"
#. js-lingui-id: Q9pNST
#: src/pages/settings/ai/SettingsToolDetail.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -15881,6 +15915,7 @@ msgid "yes"
msgstr "是"
#. js-lingui-id: l75CjT
#: src/pages/settings/ai/components/SettingsToolParameterTable.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
msgid "Yes"
@@ -1,3 +1,4 @@
import { AIChatCompactionIndicator } from '@/ai/components/AIChatCompactionIndicator';
import { CodeExecutionDisplay } from '@/ai/components/CodeExecutionDisplay';
import { RoutingStatusDisplay } from '@/ai/components/RoutingStatusDisplay';
import { ThinkingStepsDisplay } from '@/ai/components/ThinkingStepsDisplay';
@@ -58,6 +59,8 @@ const MessagePartRenderer = ({
return <LazyMarkdownRenderer text={part.text} />;
case 'data-routing-status':
return <RoutingStatusDisplay data={part.data} />;
case 'data-compaction':
return <AIChatCompactionIndicator />;
case 'data-code-execution':
return (
<CodeExecutionDisplay
@@ -0,0 +1,30 @@
import { styled } from '@linaria/react';
import { useContext } from 'react';
import { IconTransform } from 'twenty-ui/display';
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
const StyledIndicatorContainer = styled.div`
align-items: center;
color: ${themeCssVariables.font.color.tertiary};
display: flex;
gap: ${themeCssVariables.spacing[1]};
`;
const StyledIconTextContainer = styled.div`
align-items: center;
display: flex;
gap: ${themeCssVariables.spacing[1]};
`;
export const AIChatCompactionIndicator = () => {
const { theme } = useContext(ThemeContext);
return (
<StyledIndicatorContainer>
<StyledIconTextContainer>
<IconTransform size={theme.icon.size.sm} />
<div>The conversation has been compacted</div>
</StyledIconTextContainer>
</StyledIndicatorContainer>
);
};
@@ -10,7 +10,13 @@ import {
StyledSkeletonContainer,
StyledTableScrollContainer,
} from '@/ai/components/LazyMarkdownRendererStyledComponents';
import { lazy, Suspense, useContext } from 'react';
import {
cloneElement,
isValidElement,
lazy,
Suspense,
useContext,
} from 'react';
import Skeleton, { SkeletonTheme } from 'react-loading-skeleton';
import { isDefined } from 'twenty-shared/utils';
import { ThemeContext } from 'twenty-ui/theme-constants';
@@ -64,6 +70,16 @@ const processChildrenForRecordLinks = (
));
}
if (isValidElement<{ children?: React.ReactNode }>(children)) {
const childProps = children.props;
if (isDefined(childProps.children)) {
return cloneElement(children, {
children: processChildrenForRecordLinks(childProps.children),
});
}
}
return children;
};
@@ -96,6 +112,12 @@ const MarkdownRenderer = lazy(async () => {
{processChildrenForRecordLinks(children)}
</ParagraphComponent>
),
td: ({ children }) => (
<td>{processChildrenForRecordLinks(children)}</td>
),
th: ({ children }) => (
<th>{processChildrenForRecordLinks(children)}</th>
),
li: ({ children }) => (
<li>{processChildrenForRecordLinks(children)}</li>
),
@@ -7,6 +7,7 @@ export const GET_TOOL_INDEX = gql`
description
category
objectName
icon
}
}
`;
@@ -1,16 +1,7 @@
import { GET_TOOL_INDEX } from '@/ai/graphql/queries/getToolIndex';
import { useQuery } from '@apollo/client/react';
type ToolIndexEntry = {
name: string;
description: string;
category: string;
objectName?: string;
};
type GetToolIndexQuery = {
getToolIndex: ToolIndexEntry[];
};
import { type GetToolIndexQuery } from '~/generated-metadata/graphql';
export const useGetToolIndex = () => {
const { data, loading, error } = useQuery<GetToolIndexQuery>(GET_TOOL_INDEX);
@@ -51,7 +51,7 @@ export const mapDBPartToUIMessagePart = (
};
case 'step-start':
return {
type: 'step-start',
type: part.type,
};
case 'data-routing-status':
return {
@@ -1,5 +1,4 @@
import { gql } from '@apollo/client';
import { CombinedGraphQLErrors } from '@apollo/client/errors';
import { act, renderHook } from '@testing-library/react';
import fetchMock, { enableFetchMocks } from 'jest-fetch-mock';
import { MemoryRouter, useLocation } from 'react-router-dom';
@@ -8,6 +7,13 @@ import { useApolloFactory } from '@/apollo/hooks/useApolloFactory';
enableFetchMocks();
jest.mock('@/apollo/utils/getTokenPair', () => ({
getTokenPair: jest.fn().mockReturnValue({
accessOrWorkspaceAgnosticToken: { token: 'testAccessToken', expiresAt: '' },
refreshToken: { token: 'testRefreshToken', expiresAt: '' },
}),
}));
const mockNavigate = jest.fn();
jest.mock('react-router-dom', () => {
@@ -88,10 +94,7 @@ describe('useApolloFactory', () => {
});
});
} catch (error) {
expect(error).toBeInstanceOf(CombinedGraphQLErrors);
expect((error as CombinedGraphQLErrors).message).toBe(
'Error message not found.',
);
expect(error).toBeDefined();
expect(mockNavigate).toHaveBeenCalled();
expect(mockNavigate).toHaveBeenCalledWith('/welcome');
@@ -28,6 +28,13 @@ jest.mock('@/auth/services/AuthService', () => {
};
});
jest.mock('@/apollo/utils/getTokenPair', () => ({
getTokenPair: jest.fn().mockReturnValue({
accessOrWorkspaceAgnosticToken: { token: 'testAccessToken', expiresAt: '' },
refreshToken: { token: 'testRefreshToken', expiresAt: '' },
}),
}));
const mockOnError = jest.fn();
const mockOnNetworkError = jest.fn();
const mockOnPayloadTooLarge = jest.fn();
@@ -7,7 +7,7 @@ import {
import { setContext } from '@apollo/client/link/context';
import { ErrorLink } from '@apollo/client/link/error';
import { RetryLink } from '@apollo/client/link/retry';
import { from, switchMap } from 'rxjs';
import { EMPTY, from, switchMap } from 'rxjs';
import { RestLink } from 'apollo-link-rest';
import UploadHttpLink from 'apollo-upload-client/UploadHttpLink.mjs';
@@ -41,7 +41,7 @@ const logger = loggerLink(() => 'Twenty');
// Shared across all ApolloFactory instances so concurrent
// UNAUTHENTICATED errors from /graphql and /metadata clients
// deduplicate into a single renewal request.
let renewalPromise: Promise<void> | null = null;
let renewalPromise: Promise<boolean> | null = null;
const TOKEN_RENEWAL_MAX_RETRIES = 3;
const TOKEN_RENEWAL_RETRY_DELAY_MS = 1000;
@@ -181,21 +181,32 @@ export class ApolloFactory implements ApolloManager {
operation: ApolloLink.Operation,
forward: ApolloLink.ForwardFunction,
) => {
if (!getTokenPair()) {
onUnauthenticatedError?.();
return EMPTY;
}
if (!renewalPromise) {
renewalPromise = attemptTokenRenewal()
.then(() => true)
.catch(() => {
// oxlint-disable-next-line no-console
console.log(
'Failed to renew token after retries, triggering unauthenticated error',
);
onUnauthenticatedError?.();
return false;
})
.finally(() => {
renewalPromise = null;
});
}
return from(renewalPromise).pipe(switchMap(() => forward(operation)));
return from(renewalPromise).pipe(
switchMap((succeeded) => (succeeded ? forward(operation) : EMPTY)),
);
};
const sendToSentry = ({
@@ -161,6 +161,12 @@ const SettingsAIUsageUserDetail = lazy(() =>
})),
);
const SettingsToolDetail = lazy(() =>
import('~/pages/settings/ai/SettingsToolDetail').then((module) => ({
default: module.SettingsToolDetail,
})),
);
const SettingsApplications = lazy(() =>
import('~/pages/settings/applications/SettingsApplications').then(
(module) => ({
@@ -546,6 +552,10 @@ export const SettingsRoutes = ({ isAdminPageEnabled }: SettingsRoutesProps) => (
path={SettingsPath.AIUsageUserDetail}
element={<SettingsAIUsageUserDetail />}
/>
<Route
path={SettingsPath.AIToolDetail}
element={<SettingsToolDetail />}
/>
<Route
path={SettingsPath.LogicFunctionDetail}
element={<SettingsLogicFunctionDetail />}
@@ -2,6 +2,7 @@ import { CommandMenuContext } from '@/command-menu-item/contexts/CommandMenuCont
import { PINNED_COMMAND_MENU_ITEMS_GAP } from '@/command-menu-item/server-items/display/constants/PinnedCommandMenuItemsGap';
import { commandMenuPinnedInlineLayoutState } from '@/command-menu-item/server-items/display/states/commandMenuPinnedInlineLayoutState';
import { getVisibleCommandMenuItemCountForContainerWidth } from '@/command-menu-item/server-items/display/utils/getVisibleCommandMenuItemCountForContainerWidth';
import { CommandMenuItemType } from '@/command-menu-item/types/CommandMenuItemType';
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
import { SidePanelGroup } from '@/side-panel/components/SidePanelGroup';
import { SidePanelList } from '@/side-panel/components/SidePanelList';
@@ -14,8 +15,8 @@ import { type SidePanelCommandMenuItemGroupConfig } from '@/side-panel/types/Sid
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { useLingui } from '@lingui/react/macro';
import { useContext } from 'react';
import { isNumber } from '@sniptt/guards';
import { useContext } from 'react';
import { isDefined } from 'twenty-shared/utils';
export const SidePanelCommandMenuItemDisplayPage = () => {
@@ -41,13 +42,21 @@ export const SidePanelCommandMenuItemDisplayPage = () => {
);
const unpinnedCommandMenuItems = commandMenuItems
.filter((commandMenuItem) => commandMenuItem.isPinned !== true)
.filter(
(commandMenuItem) =>
commandMenuItem.isPinned !== true &&
commandMenuItem.type !== CommandMenuItemType.Fallback,
)
.sort(
(firstUnpinnedCommandMenuItem, secondUnpinnedCommandMenuItem) =>
firstUnpinnedCommandMenuItem.position -
secondUnpinnedCommandMenuItem.position,
);
const fallbackCommandMenuItems = commandMenuItems.filter(
(commandMenuItem) => commandMenuItem.type === CommandMenuItemType.Fallback,
);
const pinnedCommandMenuItemKeysInDisplayOrder = pinnedCommandMenuItems.map(
(pinnedCommandMenuItem) => pinnedCommandMenuItem.key,
);
@@ -95,6 +104,10 @@ export const SidePanelCommandMenuItemDisplayPage = () => {
heading: t`Other`,
items: matchingOtherItems,
},
{
heading: t`Fallback`,
items: noResults ? fallbackCommandMenuItems : [],
},
];
const selectableItems = commandGroups.flatMap((group) => group.items ?? []);
@@ -1,5 +1,4 @@
import { AnimatedIconCrossfade } from 'twenty-ui/utilities';
import { commandMenuItemEditSelectionModeState } from '@/command-menu-item/server-items/edit/states/commandMenuItemEditSelectionModeState';
import { isLayoutCustomizationModeEnabledState } from '@/layout-customization/states/isLayoutCustomizationModeEnabledState';
import { useNavigateSidePanel } from '@/side-panel/hooks/useNavigateSidePanel';
import { useSidePanelMenu } from '@/side-panel/hooks/useSidePanelMenu';
@@ -7,14 +6,12 @@ import { isSidePanelOpenedState } from '@/side-panel/states/isSidePanelOpenedSta
import { sidePanelPageState } from '@/side-panel/states/sidePanelPageState';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { useLingui } from '@lingui/react/macro';
import { useStore } from 'jotai';
import { SidePanelPages } from 'twenty-shared/types';
import { IconPencil, IconX } from 'twenty-ui/display';
import { AnimatedButton } from 'twenty-ui/input';
export const CommandMenuItemEditButton = () => {
const { t } = useLingui();
const store = useStore();
const { navigateSidePanel } = useNavigateSidePanel();
const { closeSidePanelMenu } = useSidePanelMenu();
@@ -38,8 +35,6 @@ export const CommandMenuItemEditButton = () => {
return;
}
store.set(commandMenuItemEditSelectionModeState.atom, 'selection');
navigateSidePanel({
page: SidePanelPages.CommandMenuEdit,
pageTitle: t`Edit actions`,
@@ -1,12 +1,14 @@
import { COMMAND_MENU_DROPDOWN_CLICK_OUTSIDE_ID } from '@/command-menu-item/constants/CommandMenuDropdownClickOutsideId';
import { commandMenuItemEditSelectionModeState } from '@/command-menu-item/server-items/edit/states/commandMenuItemEditSelectionModeState';
import { useSelectFirstRecordForEditMode } from '@/command-menu-item/server-items/edit/hooks/useSelectFirstRecordForEditMode';
import { MAIN_CONTEXT_STORE_INSTANCE_ID } from '@/context-store/constants/MainContextStoreInstanceId';
import { mainContextStoreHasSelectedRecordsSelector } from '@/context-store/states/selectors/mainContextStoreHasSelectedRecordsSelector';
import { useResetRecordIndexSelection } from '@/object-record/record-index/hooks/useResetRecordIndexSelection';
import { Dropdown } from '@/ui/layout/dropdown/components/Dropdown';
import { DropdownContent } from '@/ui/layout/dropdown/components/DropdownContent';
import { DropdownMenuItemsContainer } from '@/ui/layout/dropdown/components/DropdownMenuItemsContainer';
import { GenericDropdownContentWidth } from '@/ui/layout/dropdown/constants/GenericDropdownContentWidth';
import { useCloseDropdown } from '@/ui/layout/dropdown/hooks/useCloseDropdown';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { useSetAtomState } from '@/ui/utilities/state/jotai/hooks/useSetAtomState';
import { styled } from '@linaria/react';
import { useLingui } from '@lingui/react/macro';
import {
@@ -19,15 +21,16 @@ import { themeCssVariables } from 'twenty-ui/theme-constants';
const DROPDOWN_ID = 'command-menu-edit-record-selection-dropdown';
const StyledClickableArea = styled.div`
const StyledClickableArea = styled.div<{ disabled?: boolean }>`
align-items: center;
background-color: ${themeCssVariables.background.transparent.lighter};
border: 1px solid ${themeCssVariables.border.color.medium};
border-radius: ${themeCssVariables.border.radius.sm};
cursor: pointer;
cursor: ${({ disabled }) => (disabled ? 'not-allowed' : 'pointer')};
display: flex;
gap: ${themeCssVariables.spacing[1]};
height: 24px;
opacity: ${({ disabled }) => (disabled ? '0.5' : '1')};
padding-left: ${themeCssVariables.spacing[2]};
padding-right: ${themeCssVariables.spacing[1]};
`;
@@ -44,21 +47,34 @@ const StyledDropdownMenuContainer = styled.div`
width: 100%;
`;
export const CommandMenuItemEditRecordSelectionDropdown = () => {
type CommandMenuItemEditRecordSelectionDropdownProps = {
isRecordPage?: boolean;
};
export const CommandMenuItemEditRecordSelectionDropdown = ({
isRecordPage = false,
}: CommandMenuItemEditRecordSelectionDropdownProps) => {
const { t } = useLingui();
const { closeDropdown } = useCloseDropdown();
const commandMenuItemEditSelectionMode = useAtomStateValue(
commandMenuItemEditSelectionModeState,
);
const setCommandMenuItemEditSelectionMode = useSetAtomState(
commandMenuItemEditSelectionModeState,
const mainContextStoreHasSelectedRecords = useAtomStateValue(
mainContextStoreHasSelectedRecordsSelector,
);
const isNoneSelected = commandMenuItemEditSelectionMode === 'none';
const { selectFirstRecordForEditMode } = useSelectFirstRecordForEditMode();
const { resetRecordIndexSelection } = useResetRecordIndexSelection(
MAIN_CONTEXT_STORE_INSTANCE_ID,
);
const isNoneSelected = !mainContextStoreHasSelectedRecords;
const handleSelectMode = (mode: 'none' | 'selection') => {
setCommandMenuItemEditSelectionMode(mode);
if (mode === 'selection' && isNoneSelected) {
selectFirstRecordForEditMode();
} else if (mode === 'none') {
resetRecordIndexSelection();
}
closeDropdown(DROPDOWN_ID);
};
@@ -70,8 +86,10 @@ export const CommandMenuItemEditRecordSelectionDropdown = () => {
return (
<Dropdown
dropdownId={DROPDOWN_ID}
disableClickForClickableComponent={isRecordPage}
clickableComponent={
<StyledClickableArea
disabled={isRecordPage}
data-click-outside-id={COMMAND_MENU_DROPDOWN_CLICK_OUTSIDE_ID}
>
<TriggerIcon size={16} />
@@ -1,14 +1,14 @@
import { CommandMenuButton } from '@/command-menu/components/CommandMenuButton';
import { useCommandMenuContextApi } from '@/command-menu-item/server-items/common/hooks/useCommandMenuContextApi';
import { doesCommandMenuItemMatchObjectMetadataId } from '@/command-menu-item/server-items/common/utils/doesCommandMenuItemMatchObjectMetadataId';
import { PinnedCommandMenuItemsInlineMeasurements } from '@/command-menu-item/server-items/display/components/PinnedCommandMenuItemsInlineMeasurements';
import { PINNED_COMMAND_MENU_ITEMS_GAP } from '@/command-menu-item/server-items/display/constants/PinnedCommandMenuItemsGap';
import { usePinnedCommandMenuItemsInlineLayout } from '@/command-menu-item/server-items/display/hooks/usePinnedCommandMenuItemsInlineLayout';
import { commandMenuItemEditSelectionModeState } from '@/command-menu-item/server-items/edit/states/commandMenuItemEditSelectionModeState';
import { mainContextStoreHasSelectedRecordsSelector } from '@/context-store/states/selectors/mainContextStoreHasSelectedRecordsSelector';
import { commandMenuItemsDraftState } from '@/command-menu-item/server-items/edit/states/commandMenuItemsDraftState';
import { CommandMenuItemScope } from '@/command-menu-item/types/CommandMenuItemScope';
import { type CommandMenuItemConfig } from '@/command-menu-item/types/CommandMenuItemConfig';
import { CommandMenuItemScope } from '@/command-menu-item/types/CommandMenuItemScope';
import { CommandMenuItemType } from '@/command-menu-item/types/CommandMenuItemType';
import { CommandMenuButton } from '@/command-menu/components/CommandMenuButton';
import { NodeDimension } from '@/ui/utilities/dimensions/components/NodeDimension';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { COMMAND_MENU_DEFAULT_ICON } from '@/workflow/workflow-trigger/constants/CommandMenuDefaultIcon';
@@ -18,10 +18,7 @@ import { useContext, useMemo } from 'react';
import { interpolateCommandMenuItemLabel } from 'twenty-shared/utils';
import { useIcons } from 'twenty-ui/display';
import { ThemeContext } from 'twenty-ui/theme-constants';
import {
CommandMenuItemAvailabilityType,
type CommandMenuItemFieldsFragment,
} from '~/generated-metadata/graphql';
import { CommandMenuItemAvailabilityType } from '~/generated-metadata/graphql';
const StyledActionContainer = styled(motion.div)`
align-items: center;
@@ -59,19 +56,20 @@ export const PinnedCommandMenuItemButtonsEditMode = () => {
const commandMenuItemsDraft =
useAtomStateValue(commandMenuItemsDraftState) ?? [];
const commandMenuItemEditSelectionMode = useAtomStateValue(
commandMenuItemEditSelectionModeState,
const mainContextStoreHasSelectedRecords = useAtomStateValue(
mainContextStoreHasSelectedRecordsSelector,
);
const allowedAvailabilityTypes = useMemo(
() =>
new Set<CommandMenuItemAvailabilityType>([
CommandMenuItemAvailabilityType.GLOBAL,
commandMenuItemEditSelectionMode === 'selection'
mainContextStoreHasSelectedRecords
? CommandMenuItemAvailabilityType.RECORD_SELECTION
: CommandMenuItemAvailabilityType.FALLBACK,
]),
[commandMenuItemEditSelectionMode],
[mainContextStoreHasSelectedRecords],
);
const interpolateLabel = (rawLabel: string | null | undefined) =>
@@ -114,7 +112,6 @@ export const PinnedCommandMenuItemButtonsEditMode = () => {
}),
// eslint-disable-next-line react-hooks/exhaustive-deps
[
commandMenuItemsDraft,
currentObjectMetadataItemId,
allowedAvailabilityTypes,
commandMenuContextApi,
@@ -1,13 +1,13 @@
import { useCommandMenuContextApi } from '@/command-menu-item/server-items/common/hooks/useCommandMenuContextApi';
import { commandMenuItemsSelector } from '@/command-menu-item/server-items/common/states/commandMenuItemsSelector';
import { doesCommandMenuItemMatchObjectMetadataId } from '@/command-menu-item/server-items/common/utils/doesCommandMenuItemMatchObjectMetadataId';
import { commandMenuItemsDraftState } from '@/command-menu-item/server-items/edit/states/commandMenuItemsDraftState';
import { CommandMenuItemEditRecordSelectionDropdown } from '@/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown';
import { CommandMenuItemOptionsDropdown } from '@/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown';
import { useReorderCommandMenuItemsInDraft } from '@/command-menu-item/server-items/edit/hooks/useReorderCommandMenuItemsInDraft';
import { useResetCommandMenuItemsDraft } from '@/command-menu-item/server-items/edit/hooks/useResetCommandMenuItemsDraft';
import { commandMenuItemEditSelectionModeState } from '@/command-menu-item/server-items/edit/states/commandMenuItemEditSelectionModeState';
import { useUpdateCommandMenuItemInDraft } from '@/command-menu-item/server-items/edit/hooks/useUpdateCommandMenuItemInDraft';
import { commandMenuItemsDraftState } from '@/command-menu-item/server-items/edit/states/commandMenuItemsDraftState';
import { mainContextStoreHasSelectedRecordsSelector } from '@/context-store/states/selectors/mainContextStoreHasSelectedRecordsSelector';
import { COMMAND_MENU_CLICK_OUTSIDE_ID } from '@/command-menu/constants/CommandMenuClickOutsideId';
import { SidePanelGroup } from '@/side-panel/components/SidePanelGroup';
import { SidePanelList } from '@/side-panel/components/SidePanelList';
@@ -20,6 +20,7 @@ import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomState
import { type DropResult } from '@hello-pangea/dnd';
import { styled } from '@linaria/react';
import { useLingui } from '@lingui/react/macro';
import { CommandMenuContextApiPageType } from 'twenty-shared/types';
import {
interpolateCommandMenuItemLabel,
isDefined,
@@ -80,8 +81,12 @@ export const SidePanelCommandMenuItemEditPage = () => {
const currentObjectMetadataItemId =
commandMenuContextApi.objectMetadataItem.id;
const commandMenuItemEditSelectionMode = useAtomStateValue(
commandMenuItemEditSelectionModeState,
const isRecordPage =
commandMenuContextApi.pageType ===
CommandMenuContextApiPageType.RECORD_PAGE;
const mainContextStoreHasSelectedRecords = useAtomStateValue(
mainContextStoreHasSelectedRecordsSelector,
);
const sidePanelSearch = useAtomStateValue(sidePanelSearchState);
@@ -98,7 +103,7 @@ export const SidePanelCommandMenuItemEditPage = () => {
const allowedAvailabilityTypes = new Set<CommandMenuItemAvailabilityType>([
CommandMenuItemAvailabilityType.GLOBAL,
commandMenuItemEditSelectionMode === 'selection'
mainContextStoreHasSelectedRecords
? CommandMenuItemAvailabilityType.RECORD_SELECTION
: CommandMenuItemAvailabilityType.FALLBACK,
]);
@@ -237,7 +242,9 @@ export const SidePanelCommandMenuItemEditPage = () => {
return (
<StyledContainer data-click-outside-id={COMMAND_MENU_CLICK_OUTSIDE_ID}>
<StyledViewbar>
<CommandMenuItemEditRecordSelectionDropdown />
<CommandMenuItemEditRecordSelectionDropdown
isRecordPage={isRecordPage}
/>
</StyledViewbar>
<StyledContent>
<SidePanelList commandGroups={[]} selectableItemIds={selectableItemIds}>
@@ -0,0 +1,67 @@
import { MAIN_CONTEXT_STORE_INSTANCE_ID } from '@/context-store/constants/MainContextStoreInstanceId';
import { getRecordIndexId } from '@/command-menu-item/server-items/edit/utils/getRecordIndexId';
import { isRecordBoardCardSelectedComponentFamilyState } from '@/object-record/record-board/states/isRecordBoardCardSelectedComponentFamilyState';
import { useResetRecordIndexSelection } from '@/object-record/record-index/hooks/useResetRecordIndexSelection';
import { recordIndexViewTypeState } from '@/object-record/record-index/states/recordIndexViewTypeState';
import { recordIndexAllRecordIdsComponentSelector } from '@/object-record/record-index/states/selectors/recordIndexAllRecordIdsComponentSelector';
import { isRowSelectedComponentFamilyState } from '@/object-record/record-table/record-table-row/states/isRowSelectedComponentFamilyState';
import { ViewType } from '@/views/types/ViewType';
import { useStore } from 'jotai';
import { useCallback } from 'react';
import { isDefined } from 'twenty-shared/utils';
export const useSelectFirstRecordForEditMode = () => {
const store = useStore();
const { resetRecordIndexSelection } = useResetRecordIndexSelection(
MAIN_CONTEXT_STORE_INSTANCE_ID,
);
const selectFirstRecordForEditMode = useCallback(() => {
const recordIndexId = getRecordIndexId(store);
if (!isDefined(recordIndexId)) {
return;
}
resetRecordIndexSelection();
const allRecordIds = store.get(
recordIndexAllRecordIdsComponentSelector.selectorFamily({
instanceId: recordIndexId,
}),
);
const firstRecordId = allRecordIds[0];
if (!isDefined(firstRecordId)) {
return;
}
const viewType = store.get(recordIndexViewTypeState.atom);
switch (viewType) {
case ViewType.TABLE: {
store.set(
isRowSelectedComponentFamilyState.atomFamily({
instanceId: recordIndexId,
familyKey: firstRecordId,
}),
true,
);
break;
}
case ViewType.KANBAN: {
store.set(
isRecordBoardCardSelectedComponentFamilyState.atomFamily({
instanceId: recordIndexId,
familyKey: firstRecordId,
}),
true,
);
break;
}
}
}, [store, resetRecordIndexSelection]);
return { selectFirstRecordForEditMode };
};
@@ -1,9 +0,0 @@
import { createAtomState } from '@/ui/utilities/state/jotai/utils/createAtomState';
export type CommandMenuItemEditSelectionMode = 'none' | 'selection';
export const commandMenuItemEditSelectionModeState =
createAtomState<CommandMenuItemEditSelectionMode>({
key: 'commandMenuItemEditSelectionModeState',
defaultValue: 'selection',
});
@@ -0,0 +1,42 @@
import { MAIN_CONTEXT_STORE_INSTANCE_ID } from '@/context-store/constants/MainContextStoreInstanceId';
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
import { contextStoreCurrentViewIdComponentState } from '@/context-store/states/contextStoreCurrentViewIdComponentState';
import { objectMetadataItemsSelector } from '@/object-metadata/states/objectMetadataItemsSelector';
import { getRecordIndexIdFromObjectNamePluralAndViewId } from '@/object-record/utils/getRecordIndexIdFromObjectNamePluralAndViewId';
import type { useStore } from 'jotai';
import { isDefined } from 'twenty-shared/utils';
export const getRecordIndexId = (
store: ReturnType<typeof useStore>,
): string | null => {
const objectMetadataItemId = store.get(
contextStoreCurrentObjectMetadataItemIdComponentState.atomFamily({
instanceId: MAIN_CONTEXT_STORE_INSTANCE_ID,
}),
);
const viewId = store.get(
contextStoreCurrentViewIdComponentState.atomFamily({
instanceId: MAIN_CONTEXT_STORE_INSTANCE_ID,
}),
);
if (!isDefined(objectMetadataItemId) || !isDefined(viewId)) {
return null;
}
const objectMetadataItems = store.get(objectMetadataItemsSelector.atom);
const objectMetadataItem = objectMetadataItems.find(
(item) => item.id === objectMetadataItemId,
);
if (!isDefined(objectMetadataItem)) {
return null;
}
return getRecordIndexIdFromObjectNamePluralAndViewId(
objectMetadataItem.namePlural,
viewId,
);
};
@@ -0,0 +1,16 @@
import { MAIN_CONTEXT_STORE_INSTANCE_ID } from '@/context-store/constants/MainContextStoreInstanceId';
import { contextStoreNumberOfSelectedRecordsComponentState } from '@/context-store/states/contextStoreNumberOfSelectedRecordsComponentState';
import { createAtomSelector } from '@/ui/utilities/state/jotai/utils/createAtomSelector';
export const mainContextStoreHasSelectedRecordsSelector =
createAtomSelector<boolean>({
key: 'mainContextStoreHasSelectedRecordsSelector',
get: ({ get }) => {
const numberOfSelectedRecords = get(
contextStoreNumberOfSelectedRecordsComponentState,
{ instanceId: MAIN_CONTEXT_STORE_INSTANCE_ID },
);
return numberOfSelectedRecords > 0;
},
});
@@ -22,10 +22,6 @@ const StyledInvertedIconButton = styled(IconButton)`
color: ${themeCssVariables.font.color.inverted} !important;
`;
const StyledSecondaryIconButton = styled(IconButton)`
color: inherit !important;
`;
const StyledContent = styled.div<{ hasCloseButton: boolean }>`
align-items: center;
display: flex;
@@ -62,10 +58,7 @@ export const InformationBanner = ({
);
const isPrimary = variant === 'primary';
const CloseIconButton = isPrimary
? StyledInvertedIconButton
: StyledSecondaryIconButton;
const buttonAccent = color === 'danger' ? 'danger' : 'blue';
return (
<InformationBannerComponentInstanceContext.Provider
@@ -80,6 +73,7 @@ export const InformationBanner = ({
{buttonTitle && buttonOnClick && (
<Button
variant="secondary"
accent={buttonAccent}
title={buttonTitle}
Icon={buttonIcon}
size="small"
@@ -89,15 +83,25 @@ export const InformationBanner = ({
/>
)}
</StyledContent>
{onClose && (
<CloseIconButton
Icon={IconX}
size="small"
variant="tertiary"
onClick={onClose}
ariaLabel={t`Close banner`}
/>
)}
{onClose &&
(isPrimary ? (
<StyledInvertedIconButton
Icon={IconX}
size="small"
variant="tertiary"
onClick={onClose}
ariaLabel={t`Close banner`}
/>
) : (
<IconButton
Icon={IconX}
size="small"
variant="tertiary"
accent={buttonAccent}
onClick={onClose}
ariaLabel={t`Close banner`}
/>
))}
</Banner>
)}
</InformationBannerComponentInstanceContext.Provider>
@@ -4,7 +4,6 @@ import { useCallback } from 'react';
import { SidePanelPages } from 'twenty-shared/types';
import { IconPencil } from 'twenty-ui/display';
import { commandMenuItemEditSelectionModeState } from '@/command-menu-item/server-items/edit/states/commandMenuItemEditSelectionModeState';
import { commandMenuItemsDraftState } from '@/command-menu-item/server-items/edit/states/commandMenuItemsDraftState';
import { commandMenuItemsSelector } from '@/command-menu-item/server-items/common/states/commandMenuItemsSelector';
import { activeCustomizationPageLayoutIdsState } from '@/layout-customization/states/activeCustomizationPageLayoutIdsState';
@@ -51,8 +50,6 @@ export const useEnterLayoutCustomizationMode = () => {
isSidePanelOpened &&
currentSidePanelPage === SidePanelPages.CommandMenuDisplay
) {
store.set(commandMenuItemEditSelectionModeState.atom, 'selection');
navigateSidePanel({
page: SidePanelPages.CommandMenuEdit,
pageTitle: t`Edit actions`,
@@ -1,5 +1,7 @@
import { commandMenuItemsDraftState } from '@/command-menu-item/server-items/edit/states/commandMenuItemsDraftState';
import { MAIN_CONTEXT_STORE_INSTANCE_ID } from '@/context-store/constants/MainContextStoreInstanceId';
import { isLayoutCustomizationModeEnabledState } from '@/layout-customization/states/isLayoutCustomizationModeEnabledState';
import { useResetRecordIndexSelection } from '@/object-record/record-index/hooks/useResetRecordIndexSelection';
import { navigationMenuItemsDraftState } from '@/navigation-menu-item/common/states/navigationMenuItemsDraftState';
import { selectedNavigationMenuItemIdInEditModeState } from '@/navigation-menu-item/common/states/selectedNavigationMenuItemIdInEditModeState';
import { useSidePanelMenu } from '@/side-panel/hooks/useSidePanelMenu';
@@ -11,6 +13,9 @@ export const useExitLayoutCustomizationMode = () => {
const store = useStore();
const { closeSidePanelMenu } = useSidePanelMenu();
const { resetRecordIndexSelection } = useResetRecordIndexSelection(
MAIN_CONTEXT_STORE_INSTANCE_ID,
);
const setNavigationMenuItemsDraft = useSetAtomState(
navigationMenuItemsDraftState,
@@ -23,12 +28,14 @@ export const useExitLayoutCustomizationMode = () => {
);
const exitLayoutCustomizationMode = useCallback(() => {
resetRecordIndexSelection();
setNavigationMenuItemsDraft(null);
setSelectedNavigationMenuItemIdInEditMode(null);
store.set(commandMenuItemsDraftState.atom, null);
setIsLayoutCustomizationModeEnabled(false);
closeSidePanelMenu();
}, [
resetRecordIndexSelection,
setNavigationMenuItemsDraft,
setSelectedNavigationMenuItemIdInEditMode,
setIsLayoutCustomizationModeEnabled,
@@ -6,7 +6,10 @@ import {
type LogicFunctionIdInput,
} from '~/generated-metadata/graphql';
export const useGetOneLogicFunction = ({ id }: LogicFunctionIdInput) => {
export const useGetOneLogicFunction = ({
id,
skip,
}: LogicFunctionIdInput & { skip?: boolean }) => {
const { data, loading } = useQuery<
FindOneLogicFunctionQuery,
FindOneLogicFunctionQueryVariables
@@ -14,6 +17,7 @@ export const useGetOneLogicFunction = ({ id }: LogicFunctionIdInput) => {
variables: {
input: { id },
},
skip,
});
return {
@@ -0,0 +1,12 @@
import { metadataStoreState } from '@/metadata-store/states/metadataStoreState';
import { type LogicFunction } from '@/logic-functions/types/LogicFunction';
import { createAtomSelector } from '@/ui/utilities/state/jotai/utils/createAtomSelector';
export const logicFunctionsSelector = createAtomSelector<LogicFunction[]>({
key: 'logicFunctionsSelector',
get: ({ get }) => {
const storeItem = get(metadataStoreState, 'logicFunctions');
return storeItem.current as LogicFunction[];
},
});

Some files were not shown because too many files have changed in this diff Show More